ENWL Flexibility Tender - Site Requirements

Attachments

Click to expand Click to collapse

Dataset schema

Click to expand Click to collapse
Geo Point
               

No description available for this field.

Name (identifier)
geo_point_2d
Type
geo point
Sample
                       
Geo Shape
               

No description available for this field.

Name (identifier)
geo_shape
Type
geo shape
Sample
                       
Output_NAME
               

No description available for this field.

Name (identifier)
output_name
Type
text
Sample
                       
Substation_Name
               

No description available for this field.

Name (identifier)
substation_name
Type
text
Sample
                       
Post_Codes
               

No description available for this field.

Name (identifier)
post_codes
Type
text
Sample
                       
Voltage_of_connection__kV_
               

No description available for this field.

Name (identifier)
voltage_of_connection_kv
Type
text
Sample
                       
Maximum_requirement__MVA_
               

No description available for this field.

Name (identifier)
maximum_requirement_mva
Type
decimal
Sample
                       
Need_Type
               

No description available for this field.

Name (identifier)
need_type
Type
text
Sample
                       
Delivery_start_date
               

No description available for this field.

Name (identifier)
delivery_start_date
Type
date
Sample
                       
Months_Required
               

No description available for this field.

Name (identifier)
months_required
Type
text
Sample
                       
Times_required
               

No description available for this field.

Name (identifier)
times_required
Type
text
Sample
                       
Days_required
               

No description available for this field.

Name (identifier)
days_required
Type
text
Sample
                       
Ceiling_price__Per_Annum (£)_
               

No description available for this field.

Name (identifier)
ceiling_price_per_annum
Type
text
Unit
£
Sample
                       
Estimated_availability_hours
               

No description available for this field.

Name (identifier)
estimated_availability_hours
Type
decimal
Sample
                       
Estimated_utilisation_hours
               

No description available for this field.

Name (identifier)
estimated_utilisation_hours
Type
decimal
Sample
                       
Easting
               

No description available for this field.

Name (identifier)
easting
Type
integer
Sample
                       
Northing
               

No description available for this field.

Name (identifier)
northing
Type
integer
Sample
                       
Lat
               

No description available for this field.

Name (identifier)
lat
Type
decimal
Sample
                       
Long
               

No description available for this field.

Name (identifier)
long
Type
decimal
Sample
                       
Sub_Number
               

No description available for this field.

Name (identifier)
sub_number
Type
text
Sample
                       
Period
               

No description available for this field.

Name (identifier)
period
Type
text
Sample
                       
Maximum_Utilisation_Price___MWh
               

No description available for this field.

Name (identifier)
maximum_utilisation_price_mwh
Type
decimal
Sample
                       

JSON Schema

The following JSON object is a standardized description of your dataset's schema. More about JSON schema.

{
  • "title":"enwl-flexibility-tender-site-requirements",
  • "type":"object",
  • "oneOf":
    [
    • {
      • "$ref":"#/definitions/enwl-flexibility-tender-site-requirements"
      }
    ]
    ,
  • "definitions":
    {
    • "enwl-flexibility-tender-site-requirements":
      {
      • "properties":
        {
        • "records":
          {
          • "type":"array",
          • "items":
            {
            • "$ref":"#/definitions/enwl-flexibility-tender-site-requirements_records"
            }
          }
        }
      }
      ,
    • "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"
          }
        }
        ,
      • "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"
          }
        }
        ,
      • "additionalProperties":false,
      • "oneOf":
        [
        • {
          • "$ref":"#/definitions/namedCrs"
          }
          ,
        • {
          • "$ref":"#/definitions/linkedCrs"
          }
        ]
      }
      ,
    • "namedCrs":
      {
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "name"
            ]
          }
          ,
        • "properties":
          {
          • "required":
            [
            • "name"
            ]
            ,
          • "additionalProperties":false,
          • "properties":
            {
            • "name":
              {
              • "type":"string"
              }
            }
          }
        }
      }
      ,
    • "linkedObject":
      {
      • "type":"object",
      • "required":
        [
        • "href"
        ]
        ,
      • "properties":
        {
        • "href":
          {
          • "type":"string",
          • "format":"uri"
          }
          ,
        • "type":
          {
          • "type":"string",
          • "description":"Suggested values: proj4, ogjwkt, esriwkt"
          }
        }
      }
      ,
    • "linkedCrs":
      {
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "link"
            ]
          }
          ,
        • "properties":
          {
          • "$ref":"#/definitions/linkedObject"
          }
        }
      }
      ,
    • "geometryCollection":
      {
      • "title":"GeometryCollection",
      • "description":"A collection of geometry objects",
      • "required":
        [
        • "geometries"
        ]
        ,
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "GeometryCollection"
            ]
          }
          ,
        • "geometries":
          {
          • "type":"array",
          • "items":
            {
            • "$ref":"http://json-schema.org/geojson/geometry.json#"
            }
          }
        }
      }
      ,
    • "feature":
      {
      • "title":"Feature",
      • "description":"A Geo JSON feature object",
      • "required":
        [
        • "geometry",
        • "properties"
        ]
        ,
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "Feature"
            ]
          }
          ,
        • "geometry":
          {
          • "oneOf":
            [
            • {
              • "type":"null"
              }
              ,
            • {
              • "$ref":"#/definitions/geometry"
              }
            ]
          }
          ,
        • "properties":
          {
          • "type":
            [
            • "object",
            • "null"
            ]
          }
          ,
        • "id":
          {
            }
          }
        }
        ,
      • "featureCollection":
        {
        • "title":"FeatureCollection",
        • "description":"A Geo JSON feature collection",
        • "required":
          [
          • "features"
          ]
          ,
        • "properties":
          {
          • "type":
            {
            • "enum":
              [
              • "FeatureCollection"
              ]
            }
            ,
          • "features":
            {
            • "type":"array",
            • "items":
              {
              • "$ref":"#/definitions/feature"
              }
            }
          }
        }
        ,
      • "geometry":
        {
        • "title":"geometry",
        • "description":"One geometry as defined by GeoJSON",
        • "type":"object",
        • "required":
          [
          • "type",
          • "coordinates"
          ]
          ,
        • "oneOf":
          [
          • {
            • "title":"Point",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "Point"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/position"
                }
              }
            }
            ,
          • {
            • "title":"MultiPoint",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "MultiPoint"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/positionArray"
                }
              }
            }
            ,
          • {
            • "title":"LineString",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "LineString"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/lineString"
                }
              }
            }
            ,
          • {
            • "title":"MultiLineString",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "MultiLineString"
                  ]
                }
                ,
              • "coordinates":
                {
                • "type":"array",
                • "items":
                  {
                  • "$ref":"#/definitions/lineString"
                  }
                }
              }
            }
            ,
          • {
            • "title":"Polygon",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "Polygon"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/polygon"
                }
              }
            }
            ,
          • {
            • "title":"MultiPolygon",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "MultiPolygon"
                  ]
                }
                ,
              • "coordinates":
                {
                • "type":"array",
                • "items":
                  {
                  • "$ref":"#/definitions/polygon"
                  }
                }
              }
            }
          ]
          ,
        • "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"
            }
          }
        }
        ,
      • "enwl-flexibility-tender-site-requirements_records":
        {
        • "properties":
          {
          • "fields":
            {
            • "type":"object",
            • "properties":
              {
              • "geo_point_2d":
                {
                • "type":"array",
                • "minItems":2,
                • "maxItems":2,
                • "items":
                  {
                  • "type":"number"
                  }
                  ,
                • "title":"Geo Point",
                • "description":""
                }
                ,
              • "geo_shape":
                {
                • "type":"object",
                • "oneOf":
                  [
                  • {
                    • "$ref":"#/definitions/geometry"
                    }
                  ]
                  ,
                • "title":"Geo Shape",
                • "description":""
                }
                ,
              • "output_name":
                {
                • "type":"string",
                • "title":"Output_NAME",
                • "description":""
                }
                ,
              • "substation_name":
                {
                • "type":"string",
                • "title":"Substation_Name",
                • "description":""
                }
                ,
              • "post_codes":
                {
                • "type":"string",
                • "title":"Post_Codes",
                • "description":""
                }
                ,
              • "voltage_of_connection_kv":
                {
                • "type":"string",
                • "title":"Voltage_of_connection__kV_",
                • "description":""
                }
                ,
              • "maximum_requirement_mva":
                {
                • "type":"number",
                • "title":"Maximum_requirement__MVA_",
                • "description":""
                }
                ,
              • "need_type":
                {
                • "type":"string",
                • "title":"Need_Type",
                • "description":""
                }
                ,
              • "delivery_start_date":
                {
                • "type":"string",
                • "format":"date",
                • "title":"Delivery_start_date",
                • "description":""
                }
                ,
              • "months_required":
                {
                • "type":"string",
                • "title":"Months_Required",
                • "description":""
                }
                ,
              • "times_required":
                {
                • "type":"string",
                • "title":"Times_required",
                • "description":""
                }
                ,
              • "days_required":
                {
                • "type":"string",
                • "title":"Days_required",
                • "description":""
                }
                ,
              • "ceiling_price_per_annum":
                {
                • "type":"string",
                • "title":"Ceiling_price__Per_Annum (£)_",
                • "description":"",
                • "unit":"£"
                }
                ,
              • "estimated_availability_hours":
                {
                • "type":"number",
                • "title":"Estimated_availability_hours",
                • "description":""
                }
                ,
              • "estimated_utilisation_hours":
                {
                • "type":"number",
                • "title":"Estimated_utilisation_hours",
                • "description":""
                }
                ,
              • "easting":
                {
                • "type":"integer",
                • "title":"Easting",
                • "description":""
                }
                ,
              • "northing":
                {
                • "type":"integer",
                • "title":"Northing",
                • "description":""
                }
                ,
              • "lat":
                {
                • "type":"number",
                • "title":"Lat",
                • "description":""
                }
                ,
              • "long":
                {
                • "type":"number",
                • "title":"Long",
                • "description":""
                }
                ,
              • "sub_number":
                {
                • "type":"string",
                • "title":"Sub_Number",
                • "description":""
                }
                ,
              • "period":
                {
                • "type":"string",
                • "title":"Period",
                • "description":""
                }
                ,
              • "maximum_utilisation_price_mwh":
                {
                • "type":"number",
                • "title":"Maximum_Utilisation_Price___MWh",
                • "description":""
                }
              }
            }
          }
        }
      }
    }

    Similar datasets