DFES Entire Network Data
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":"dfes-2023-entire-network-data",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/dfes-2023-entire-network-data"
}
] - "definitions":{
- "dfes-2023-entire-network-data":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/dfes-2023-entire-network-data_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"
}
}
} - "dfes-2023-entire-network-data_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "group":,{
- "type":"string",
- "title":"GROUP",
- "description":""
} - "polygon_centroid_x":,{
- "type":"number",
- "title":"POLYGON CENTROID X",
- "description":""
} - "polygon_centroid_y":,{
- "type":"number",
- "title":"POLYGON CENTROID Y",
- "description":""
} - "year":,{
- "type":"string",
- "title":"YEAR",
- "description":""
} - "scenario":,{
- "type":"string",
- "title":"SCENARIO",
- "description":""
} - "lct_seasonal_demand_domestic_air_conditioning_mw_winter_16_30_december_afternoon":,{
- "type":"number",
- "title":"LCT SEASONAL DEMAND - DOMESTIC AIR CONDITIONING (MW) - WINTER (16:30 - DECEMBER AFTERNOON)",
- "description":""
} - "lct_seasonal_demand_industrial_commercial_air_conditioning_mw_winter_16_30_december_afternoon":,{
- "type":"number",
- "title":"LCT SEASONAL DEMAND - INDUSTRIAL & COMMERCIAL AIR CONDITIONING (MW) - WINTER (16:30 - DECEMBER AFTERNOON)",
- "description":""
} - "lct_seasonal_demand_electric_vehicles_mw_winter_16_30_december_afternoon":,{
- "type":"number",
- "title":"LCT SEASONAL DEMAND - ELECTRIC VEHICLES (MW) - WINTER (16:30 - DECEMBER AFTERNOON) ",
- "description":""
} - "lct_seasonal_demand_domestic_heat_pumps_mw_winter_16_30_december_afternoon":,{
- "type":"number",
- "title":"LCT SEASONAL DEMAND - DOMESTIC HEAT PUMPS (MW) - WINTER (16:30 - DECEMBER AFTERNOON) ",
- "description":""
} - "lct_seasonal_demand_industrial_commercial_heat_pumps_mw_winter_16_30_december_afternoon":,{
- "type":"number",
- "title":"LCT SEASONAL DEMAND - INDUSTRIAL & COMMERCIAL HEAT PUMPS (MW) - WINTER (16:30 - DECEMBER AFTERNOON) ",
- "description":""
} - "lct_seasonal_demand_domestic_air_conditioning_mw_summer_09_00_may_morning":,{
- "type":"number",
- "title":"LCT SEASONAL DEMAND - DOMESTIC AIR CONDITIONING (MW) - SUMMER (09:00 MAY MORNING)",
- "description":""
} - "lct_seasonal_demand_industrial_commercial_air_conditioning_mw_summer_09_00_may_morning":,{
- "type":"number",
- "title":"LCT SEASONAL DEMAND - INDUSTRIAL & COMMERCIAL AIR CONDITIONING (MW) - SUMMER (09:00 MAY MORNING)",
- "description":""
} - "lct_seasonal_demand_electric_vehicles_mw_summer_09_00_may_morning":,{
- "type":"number",
- "title":"LCT SEASONAL DEMAND - ELECTRIC VEHICLES (MW) - SUMMER (09:00 MAY MORNING) ",
- "description":""
} - "lct_seasonal_demand_domestic_heat_pumps_mw_summer_09_00_may_morning":,{
- "type":"number",
- "title":"LCT SEASONAL DEMAND - DOMESTIC HEAT PUMPS (MW) - SUMMER (09:00 MAY MORNING) ",
- "description":""
} - "lct_seasonal_demand_industrial_commercial_heat_pumps_mw_summer_09_00_may_morning":,{
- "type":"number",
- "title":"LCT SEASONAL DEMAND - INDUSTRIAL & COMMERCIAL HEAT PUMPS (MW) - SUMMER (09:00 MAY MORNING) ",
- "description":""
} - "dg_storage_biomass_generation_mw":,{
- "type":"number",
- "title":"DG / STORAGE - BIOMASS GENERATION (MW)",
- "description":""
} - "dg_storage_domestic_micro_chp_mw":,{
- "type":"number",
- "title":"DG / STORAGE - DOMESTIC MICRO CHP (MW)",
- "description":""
} - "dg_storage_domestic_pv_10kw_mw":,{
- "type":"number",
- "title":"DG / STORAGE - DOMESTIC PV (<10kW) (MW)",
- "description":""
} - "dg_storage_domestic_storage_mw":,{
- "type":"number",
- "title":"DG / STORAGE - DOMESTIC STORAGE (MW)",
- "description":""
} - "dg_storage_domestic_wind_farm_15kw_mw":,{
- "type":"number",
- "title":"DG / STORAGE - DOMESTIC WIND FARM (<15kW) (MW)",
- "description":""
} - "dg_storage_flexible_generation_mw":,{
- "type":"number",
- "title":"DG / STORAGE - FLEXIBLE GENERATION (MW)",
- "description":""
} - "dg_storage_industrial_commercial_chp_mw":,{
- "type":"number",
- "title":"DG / STORAGE - INDUSTRIAL & COMMERCIAL CHP (MW)",
- "description":""
} - "dg_storage_large_pv_250kw_mw":,{
- "type":"number",
- "title":"DG / STORAGE - LARGE PV (>250kW) (MW)",
- "description":""
} - "dg_storage_large_storage_mw":,{
- "type":"number",
- "title":"DG / STORAGE - LARGE STORAGE (MW)",
- "description":""
} - "dg_storage_large_wind_farm_100kw_mw":,{
- "type":"number",
- "title":"DG / STORAGE - LARGE WIND FARM (>100kW) (MW)",
- "description":""
} - "dg_storage_other_generation_hydro_waste_bio_gas_etc_mw":,{
- "type":"number",
- "title":"DG / STORAGE - OTHER GENERATION - HYDRO, WASTE, BIO-GAS etc (MW)",
- "description":""
} - "dg_storage_small_industrial_commercial_pv_250kw_mw":,{
- "type":"number",
- "title":"DG / STORAGE - SMALL INDUSTRIAL & COMMERCIAL PV (<250kW) (MW)",
- "description":""
} - "dg_storage_small_industrial_commercial_wind_farm_100kw_mw":,{
- "type":"number",
- "title":"DG / STORAGE - SMALL INDUSTRIAL & COMMERCIAL WIND FARM (<100kW) (MW)",
- "description":""
} - "dg_storage_total_dg_storage_mw":,{
- "type":"number",
- "title":"DG / STORAGE - TOTAL DG & STORAGE (MW)",
- "description":""
} - "demand_domestic_mwh":,{
- "type":"number",
- "title":"DEMAND - DOMESTIC (MWh)",
- "description":""
} - "demand_domestic_air_conditioning_mwh":,{
- "type":"number",
- "title":"DEMAND - DOMESTIC AIR CONDITIONING (MWh)",
- "description":""
} - "demand_domestic_district_heating_mwh":,{
- "type":"number",
- "title":"DEMAND - DOMESTIC DISTRICT HEATING (MWh)",
- "description":""
} - "demand_domestic_heat_pumps_mwh":,{
- "type":"number",
- "title":"DEMAND - DOMESTIC HEAT PUMPS (MWh)",
- "description":""
} - "demand_electric_vehicles_cars_buses_vans_hgvs_mwh":,{
- "type":"number",
- "title":"DEMAND - ELECTRIC VEHICLES - CARS, BUSES, VANS & HGVs (MWh)",
- "description":""
} - "demand_electrification_of_industrial_processess_mwh":,{
- "type":"number",
- "title":"DEMAND - ELECTRIFICATION OF INDUSTRIAL PROCESSESS (MWh)",
- "description":""
} - "demand_industrial_commercial_mwh":,{
- "type":"number",
- "title":"DEMAND - INDUSTRIAL & COMMERCIAL (MWh)",
- "description":""
} - "demand_industrial_comercial_air_conditioning_mwh":,{
- "type":"number",
- "title":"DEMAND - INDUSTRIAL & COMERCIAL AIR CONDITIONING (MWh)",
- "description":""
} - "demand_industrial_commercial_district_heating_mwh":,{
- "type":"number",
- "title":"DEMAND - INDUSTRIAL & COMMERCIAL DISTRICT HEATING (MWh)",
- "description":""
} - "demand_industrial_commercial_heat_pumps_mwh":,{
- "type":"number",
- "title":"DEMAND - INDUSTRIAL & COMMERCIAL HEAT PUMPS (MWh)",
- "description":""
} - "demand_planned_developments_mwh":,{
- "type":"number",
- "title":"DEMAND - PLANNED DEVELOPMENTS (MWh)",
- "description":""
} - "demand_total_annual_energy_mwh":,{
- "type":"number",
- "title":"DEMAND - TOTAL ANNUAL ENERGY (MWh)",
- "description":""
} - "generation_chp_mwh":,{
- "type":"number",
- "title":"GENERATION - CHP (MWh)",
- "description":""
} - "generation_flexible_generation_mwh":,{
- "type":"number",
- "title":"GENERATION - FLEXIBLE GENERATION (MWh)",
- "description":""
} - "generation_other_hydro_waste_bio_gas_etc_mwh":,{
- "type":"number",
- "title":"GENERATION - OTHER - HYDRO, WASTE, BIO-GAS etc (MWh)",
- "description":""
} - "generation_pv_mwh":,{
- "type":"number",
- "title":"GENERATION - PV (MWh)",
- "description":""
} - "generation_wind_farm_mwh":,{
- "type":"number",
- "title":"GENERATION - WIND FARM (MWh)",
- "description":""
} - "generation_total_annual_energy_mwh":,{
- "type":"number",
- "title":"GENERATION - TOTAL ANNUAL ENERGY (MWh)",
- "description":""
} - "storage_discharging_only_domestic_storage_mwh":,{
- "type":"number",
- "title":"STORAGE - DISCHARGING ONLY - DOMESTIC STORAGE (MWh)",
- "description":""
} - "storage_discharging_only_large_storage_mwh":,{
- "type":"number",
- "title":"STORAGE - DISCHARGING ONLY - LARGE STORAGE (MWh)",
- "description":""
} - "storage_discharging_only_total_annual_energy_mwh":,{
- "type":"number",
- "title":"STORAGE - DISCHARGING ONLY - TOTAL ANNUAL ENERGY (MWh)",
- "description":""
} - "total_transport_electric_buses_units":,{
- "type":"number",
- "title":"TOTAL TRANSPORT - ELECTRIC BUSES (UNITS)",
- "description":""
} - "total_transport_electric_cars_units":,{
- "type":"number",
- "title":"TOTAL TRANSPORT - ELECTRIC CARS (UNITS)",
- "description":""
} - "total_transport_electric_hgvs_units":,{
- "type":"number",
- "title":"TOTAL TRANSPORT - ELECTRIC HGVs (UNITS)",
- "description":""
} - "total_transport_electric_plug_in_cars_units":,{
- "type":"number",
- "title":"TOTAL TRANSPORT - ELECTRIC PLUG-IN CARS (UNITS)",
- "description":""
} - "total_transport_electric_plug_in_vans_units":,{
- "type":"number",
- "title":"TOTAL TRANSPORT - ELECTRIC PLUG-IN VANS (UNITS)",
- "description":""
} - "total_transport_electric_vans_units":,{
- "type":"number",
- "title":"TOTAL TRANSPORT - ELECTRIC VANS (UNITS)",
- "description":""
} - "geopoint":{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"geopoint",
- "description":""
}
} - "group":
}
} - "fields":
} - "properties":
} - "dfes-2023-entire-network-data":
}