Dataset schema
Click to expand Click to collapse
JSON Schema
The following JSON object is a standardized description of your dataset's schema. More about JSON schema.
{
- "title":"ukpn-grid-supply-points-overview@ukpowernetworks",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/ukpn-grid-supply-points-overview@ukpowernetworks"
}
] - "definitions":{
- "ukpn-grid-supply-points-overview@ukpowernetworks":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/ukpn-grid-supply-points-overview@ukpowernetworks_records"
}
}
} - "records":
} - "properties":
- "geoJSON":,{
- "title":"Geo JSON object",
- "description":"Schema for a Geo JSON object",
- "type":"object",
- "required":,[
- "type"
] - "properties":,{
- "crs":,{
- "$ref":"#/definitions/crs"
} - "bbox":{
- "$ref":"#/definitions/bbox"
}
} - "crs":
- "oneOf":[
- ,{
- "$ref":"#/definitions/geometry"
} - ,{
- "$ref":"#/definitions/geometryCollection"
} - ,{
- "$ref":"#/definitions/feature"
} - {
- "$ref":"#/definitions/featureCollection"
}
]
} - "bbox":,{
- "description":"A bounding box as defined by GeoJSON",
- "type":"array",
- "items":{
- "type":"number"
}
} - "crs":,{
- "title":"crs",
- "description":"a Coordinate Reference System object",
- "type":,[
- "object",
- "null"
] - "required":,[
- "type",
- "properties"
] - "properties":,{
- "type":,{
- "type":"string"
} - "properties":{
- "type":"object"
}
} - "type":
- "additionalProperties":false,
- "oneOf":[
- ,{
- "$ref":"#/definitions/namedCrs"
} - {
- "$ref":"#/definitions/linkedCrs"
}
]
} - "namedCrs":,{
- "properties":{
- "type":,{
- "enum":[
- "name"
]
} - "enum":
- "properties":{
- "required":,[
- "name"
] - "additionalProperties":false,
- "properties":{
- "name":{
- "type":"string"
}
} - "name":
} - "required":
} - "type":
} - "properties":
- "linkedObject":,{
- "type":"object",
- "required":,[
- "href"
] - "properties":{
- "href":,{
- "type":"string",
- "format":"uri"
} - "type":{
- "type":"string",
- "description":"Suggested values: proj4, ogjwkt, esriwkt"
}
} - "href":
} - "linkedCrs":,{
- "properties":{
- "type":,{
- "enum":[
- "link"
]
} - "enum":
- "properties":{
- "$ref":"#/definitions/linkedObject"
}
} - "type":
} - "properties":
- "geometryCollection":,{
- "title":"GeometryCollection",
- "description":"A collection of geometry objects",
- "required":,[
- "geometries"
] - "properties":{
- "type":,{
- "enum":[
- "GeometryCollection"
]
} - "enum":
- "geometries":{
- "type":"array",
- "items":{
- "$ref":"http://json-schema.org/geojson/geometry.json#"
}
}
} - "type":
} - "feature":,{
- "title":"Feature",
- "description":"A Geo JSON feature object",
- "required":,[
- "geometry",
- "properties"
] - "properties":{
- "type":,{
- "enum":[
- "Feature"
]
} - "enum":
- "geometry":,{
- "oneOf":[
- ,{
- "type":"null"
} - {
- "$ref":"#/definitions/geometry"
}
]
} - "oneOf":
- "properties":,{
- "type":[
- "object",
- "null"
]
} - "type":
- "id":{}
} - "type":
} - "featureCollection":,{
- "title":"FeatureCollection",
- "description":"A Geo JSON feature collection",
- "required":,[
- "features"
] - "properties":{
- "type":,{
- "enum":[
- "FeatureCollection"
]
} - "enum":
- "features":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/feature"
}
}
} - "type":
} - "geometry":,{
- "title":"geometry",
- "description":"One geometry as defined by GeoJSON",
- "type":"object",
- "required":,[
- "type",
- "coordinates"
] - "oneOf":,[
- ,{
- "title":"Point",
- "properties":{
- "type":,{
- "enum":[
- "Point"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/position"
}
} - "type":
} - ,{
- "title":"MultiPoint",
- "properties":{
- "type":,{
- "enum":[
- "MultiPoint"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/positionArray"
}
} - "type":
} - ,{
- "title":"LineString",
- "properties":{
- "type":,{
- "enum":[
- "LineString"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/lineString"
}
} - "type":
} - ,{
- "title":"MultiLineString",
- "properties":{
- "type":,{
- "enum":[
- "MultiLineString"
]
} - "enum":
- "coordinates":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/lineString"
}
}
} - "type":
} - ,{
- "title":"Polygon",
- "properties":{
- "type":,{
- "enum":[
- "Polygon"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/polygon"
}
} - "type":
} - {
- "title":"MultiPolygon",
- "properties":{
- "type":,{
- "enum":[
- "MultiPolygon"
]
} - "enum":
- "coordinates":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/polygon"
}
}
} - "type":
}
] - "position":,{
- "description":"A single position",
- "type":"array",
- "minItems":2,
- "items":,[
- ,{
- "type":"number"
} - {
- "type":"number"
}
] - "additionalItems":false
} - "positionArray":,{
- "description":"An array of positions",
- "type":"array",
- "items":{
- "$ref":"#/definitions/position"
}
} - "lineString":,{
- "description":"An array of two or more positions",
- "allOf":[
- ,{
- "$ref":"#/definitions/positionArray"
} - {
- "minItems":2
}
]
} - "linearRing":,{
- "description":"An array of four positions where the first equals the last",
- "allOf":[
- ,{
- "$ref":"#/definitions/positionArray"
} - {
- "minItems":4
}
]
} - "polygon":{
- "description":"An array of linear rings",
- "type":"array",
- "items":{
- "$ref":"#/definitions/linearRing"
}
}
} - "ukpn-grid-supply-points-overview@ukpowernetworks_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "dno":,{
- "type":"string",
- "title":"DNO",
- "description":""
} - "floc":,{
- "type":"string",
- "title":"Site Functional Location",
- "description":""
} - "gsp":,{
- "type":"string",
- "title":"Grid Supply Point (GSP)",
- "description":""
} - "minimum_observed_power_flow":,{
- "type":"number",
- "title":"Minimum Observed Power Flow",
- "description":"The Maximum and Minimum Power Flow comes from UK Power Networks' own analysis of the power flow through that GSP in the previous year.",
- "unit":"MW"
} - "maximum_observed_power_flow":,{
- "type":"number",
- "title":"Maximum Observed Power Flow",
- "description":"The Maximum and Minimum Power Flow comes from UK Power Networks' own analysis of the power flow through that GSP in the previous year."
} - "asset_import_limit":,{
- "type":"string",
- "title":"Asset Import Limit",
- "description":"The Asset Import Limit and Asset Export Limit is calculated based on the Supergrid transformer capacities available at the GSP, and are provided for indicative purposes only and may not reflect the actual capacity at the GSP."
} - "asset_export_limit":,{
- "type":"integer",
- "title":"Asset Export Limit",
- "description":"The Asset Import Limit and Asset Export Limit is calculated based on the Supergrid transformer capacities available at the GSP, and are provided for indicative purposes only and may not reflect the actual capacity at the GSP."
} - "technical_limit_import_summer":,{
- "type":"string",
- "title":"Technical Limit Import Summer",
- "description":"This is the agreed limit between UKPN and NGESO for the allowed level of Summer import at this GSP before curtailment, in MW. This is May to August inclusive."
} - "technical_limit_import_winter":,{
- "type":"string",
- "title":"Technical Limit Import Winter",
- "description":"This is the agreed limit between UKPN and NGESO for the allowed level of Winter import at this GSP before curtailment, in MW. This is November to March inclusive."
} - "technical_limit_import_access_period":,{
- "type":"string",
- "title":"Technical Limit Import Access Period",
- "description":"This is the agreed limit between UKPN and NGESO for the allowed level of import during the Access Period (week 13 - week 43) at this GSP before curtailment, in MW."
} - "technical_limit_export":,{
- "type":"string",
- "title":"Technical Limit Export",
- "description":"This is the agreed limit between UKPN and NGESO for the allowed level of export at this GSP before curtailment, in MW."
} - "export_capacity_utilisation":,{
- "type":"number",
- "title":"Export Capacity Utilisation",
- "description":"The Export and Import Capacity Utilisation is calculated as a ratio of the maximum and minimum demand and the capacity at the GSP, which where possible is the technical limits and where not possible, the asset capacity.",
- "unit":"%"
} - "import_capacity_utilisation":,{
- "type":"number",
- "title":"Import Capacity Utilisation",
- "description":"The Export and Import Capacity Utilisation is calculated as a ratio of the maximum and minimum demand and the capacity at the GSP, which where possible is the technical limits and where not possible, the asset capacity.",
- "unit":"%"
} - "technical_limits_available":,{
- "type":"string",
- "title":"Technical Limits Available",
- "description":"The Technical Limits Available field provides a status on whether this site has an agreed limit to manage customers on a curtailable-connection ahead of transmission reinforcements - green means Technical Limits are available, red means unavailable. Where available, the below table shows the limits applied."
} - "geo_point_2d":{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"Geo Point",
- "description":""
}
} - "dno":
}
} - "fields":
} - "properties":
} - "ukpn-grid-supply-points-overview@ukpowernetworks":
}