records
National Embedded Capacity Register (ECR)
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":"ecr_manual_combine_test",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/ecr_manual_combine_test"
}
] - "definitions":{
- "ecr_manual_combine_test":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/ecr_manual_combine_test_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"
}
}
} - "ecr_manual_combine_test_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "export_mpan_msid":,{
- "type":"string",
- "title":"Export MPAN / MSID",
- "description":""
} - "import_mpan_msid":,{
- "type":"string",
- "title":"Import MPAN / MSID",
- "description":""
} - "customer_name":,{
- "type":"string",
- "title":"Customer Name",
- "description":""
} - "customer_site":,{
- "type":"string",
- "title":"Customer Site",
- "description":""
} - "address_line_1":,{
- "type":"string",
- "title":"Address Line 1",
- "description":""
} - "address_line_2":,{
- "type":"string",
- "title":"Address Line 2",
- "description":""
} - "town_city":,{
- "type":"string",
- "title":"Town/ City",
- "description":""
} - "county":,{
- "type":"string",
- "title":"County",
- "description":""
} - "postcode":,{
- "type":"string",
- "title":"Postcode",
- "description":""
} - "country":,{
- "type":"string",
- "title":"Country",
- "description":""
} - "location_x_coordinate_eastings_where_data_is_held":,{
- "type":"string",
- "title":"Location (X-coordinate): Eastings (where data is held)",
- "description":""
} - "location_y_coordinate_northings_where_data_is_held":,{
- "type":"string",
- "title":"Location (y-coordinate): Northings (where data is held)",
- "description":""
} - "grid_supply_point":,{
- "type":"string",
- "title":"Grid Supply Point",
- "description":""
} - "bulk_supply_point":,{
- "type":"string",
- "title":"Bulk Supply Point",
- "description":""
} - "primary":,{
- "type":"string",
- "title":"Primary",
- "description":""
} - "point_of_connection_poc_voltage_kv":,{
- "type":"number",
- "title":"Point of Connection (POC) Voltage (kV)",
- "description":""
} - "licence_area":,{
- "type":"string",
- "title":"Licence Area",
- "description":""
} - "energy_source_1":,{
- "type":"string",
- "title":"Energy Source 1",
- "description":""
} - "energy_conversion_technology_1":,{
- "type":"string",
- "title":"Energy Conversion Technology 1",
- "description":""
} - "chp_cogeneration_yes_no":,{
- "type":"string",
- "title":"CHP Cogeneration (Yes/No)",
- "description":""
} - "storage_capacity_1_mwh":,{
- "type":"string",
- "title":"Storage Capacity 1 (MWh)",
- "description":""
} - "storage_duration_1_hours":,{
- "type":"string",
- "title":"Storage Duration 1 (Hours)",
- "description":""
} - "energy_source_energy_conversion_technology_1_registered_capacity_mw":,{
- "type":"number",
- "title":"Energy Source & Energy Conversion Technology 1 - Registered Capacity (MW)",
- "description":""
} - "energy_source_2":,{
- "type":"string",
- "title":"Energy Source 2",
- "description":""
} - "energy_conversion_technology_2":,{
- "type":"string",
- "title":"Energy Conversion Technology 2",
- "description":""
} - "chp_cogeneration_2_yes_no":,{
- "type":"string",
- "title":"CHP Cogeneration 2 (Yes/No)",
- "description":""
} - "storage_capacity_2_mwh":,{
- "type":"string",
- "title":"Storage Capacity 2 (MWh)",
- "description":""
} - "storage_duration_2_hours":,{
- "type":"string",
- "title":"Storage Duration 2 (Hours)",
- "description":""
} - "energy_source_energy_conversion_technology_2_registered_capacity_mw":,{
- "type":"string",
- "title":"Energy Source & Energy Conversion Technology 2 - Registered Capacity (MW)",
- "description":""
} - "energy_source_3":,{
- "type":"string",
- "title":"Energy Source 3",
- "description":""
} - "energy_conversion_technology_3":,{
- "type":"string",
- "title":"Energy Conversion Technology 3",
- "description":""
} - "chp_cogeneration_3_yes_no":,{
- "type":"string",
- "title":"CHP Cogeneration 3 (Yes/No)",
- "description":""
} - "storage_capacity_3_mwh":,{
- "type":"string",
- "title":"Storage Capacity 3 (MWh)",
- "description":""
} - "storage_duration_3_hours":,{
- "type":"string",
- "title":"Storage Duration 3 (Hours)",
- "description":""
} - "energy_source_energy_conversion_technology_3_registered_capacity_mw":,{
- "type":"string",
- "title":"Energy Source & Energy Conversion Technology 3 - Registered Capacity (MW)",
- "description":""
} - "flexible_connection_yes_no":,{
- "type":"string",
- "title":"Flexible Connection (Yes/No)",
- "description":""
} - "connection_status":,{
- "type":"string",
- "title":"Connection Status",
- "description":""
} - "already_connected_registered_capacity_mw":,{
- "type":"number",
- "title":"Already connected Registered Capacity (MW)",
- "description":""
} - "maximum_export_capacity_mw":,{
- "type":"number",
- "title":"Maximum Export Capacity (MW)",
- "description":""
} - "maximum_export_capacity_mva":,{
- "type":"number",
- "title":"Maximum Export Capacity (MVA)",
- "description":""
} - "maximum_import_capacity_mw":,{
- "type":"number",
- "title":"Maximum Import Capacity (MW)",
- "description":""
} - "maximum_import_capacity_mva":,{
- "type":"number",
- "title":"Maximum Import Capacity (MVA)",
- "description":""
} - "date_connected":,{
- "type":"string",
- "title":"Date Connected",
- "description":""
} - "accepted_to_connect_registered_capacity_mw":,{
- "type":"number",
- "title":"Accepted to Connect Registered Capacity (MW)",
- "description":""
} - "change_to_maximum_export_capacity_mw":,{
- "type":"string",
- "title":"Change to Maximum Export Capacity (MW)",
- "description":""
} - "change_to_maximum_export_capacity_mva":,{
- "type":"string",
- "title":"Change to Maximum Export Capacity (MVA)",
- "description":""
} - "change_to_maximum_import_capacity_mw":,{
- "type":"string",
- "title":"Change to Maximum Import Capacity (MW) ",
- "description":""
} - "change_to_maximum_import_capacity_mva":,{
- "type":"string",
- "title":"Change to Maximum Import Capacity (MVA)",
- "description":""
} - "date_accepted":,{
- "type":"string",
- "title":"Date Accepted",
- "description":""
} - "target_energisation_date":,{
- "type":"string",
- "title":"Target Energisation Date",
- "description":""
} - "distribution_service_provider_y_n":,{
- "type":"string",
- "title":"Distribution Service Provider (Y/N)",
- "description":""
} - "transmission_service_provider_y_n":,{
- "type":"string",
- "title":"Transmission Service Provider (Y/N)",
- "description":""
} - "reference":,{
- "type":"string",
- "title":"Reference",
- "description":""
} - "in_a_connection_queue_y_n":,{
- "type":"string",
- "title":"In a Connection Queue (Y/N)",
- "description":""
} - "distribution_reinforcement_reference":,{
- "type":"string",
- "title":"Distribution Reinforcement Reference",
- "description":""
} - "transmission_reinforcement_reference":,{
- "type":"string",
- "title":"Transmission Reinforcement Reference",
- "description":""
} - "last_updated":,{
- "type":"string",
- "title":"Last Updated",
- "description":""
} - "fixed_es1":,{
- "type":"string",
- "title":"Fixed ES1",
- "description":""
} - "fixed_ect_1":,{
- "type":"string",
- "title":"Fixed ECT 1",
- "description":""
} - "fixed_chp1":,{
- "type":"string",
- "title":"Fixed CHP1",
- "description":""
} - "fixed_es2":,{
- "type":"string",
- "title":"fixed ES2",
- "description":""
} - "fixed_ect2":,{
- "type":"string",
- "title":"Fixed ECT2",
- "description":""
} - "fixed_es3":,{
- "type":"string",
- "title":"Fixed ES3",
- "description":""
} - "fixed_ect3":,{
- "type":"string",
- "title":"Fixed ECT3",
- "description":""
} - "fixed_ect4":,{
- "type":"string",
- "title":"Fixed ECT4",
- "description":""
} - "fixed_ect5":,{
- "type":"string",
- "title":"Fixed ECT5",
- "description":""
} - "geopoints":,{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"Geopoints",
- "description":""
} - "la_name":,{
- "type":"string",
- "title":"Local Authority",
- "description":""
} - "date_accepted_fixed":,{
- "type":"string",
- "format":"date",
- "title":"date_accepted_fixed",
- "description":""
} - "date_connected_fixed":{
- "type":"string",
- "format":"date",
- "title":"date_connected_fixed",
- "description":""
}
} - "export_mpan_msid":
}
} - "fields":
} - "properties":
} - "ecr_manual_combine_test":
}