records
Flexibility Competitions
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":"flexibility_competitions",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/flexibility_competitions"
}
] - "definitions":{
- "flexibility_competitions":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/flexibility_competitions_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"
}
}
} - "flexibility_competitions_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "area_buffer":,{
- "type":"string",
- "title":"Area Buffer",
- "description":"The furthest distance (in km) that an Asset can be from the border of the Competition in order to prequalify."
} - "id":,{
- "type":"string",
- "title":"Competition ID",
- "description":"Unique Idenification displayed on the Dynamic Purchasing System for procurement of flexibility services."
} - "maximum_connection_voltage":,{
- "type":"number",
- "title":"Maximum Connection Voltage (kV)",
- "description":"Maximum voltage level an Asset can be connected at to provide services, in KV. Set greater than or equal to minimum_connection_voltage. At least minimum_connection_voltage or maximum_connection_voltage must be set."
} - "minimum_connection_voltage":,{
- "type":"number",
- "title":"Minimum Connection Voltage Threshold (kV)",
- "description":"Minimum voltage level an Asset can be connected at to provide services, in KV. Set less than or equal to maximum_connection_voltage. At least minimum_connection_voltage or maximum_connection_voltage must be set."
} - "name":,{
- "type":"string",
- "title":"Name of Tender Competitions",
- "description":"The human-readable name given to this Competition."
} - "need_direction":,{
- "type":"string",
- "title":"DSO Flexibility Product Need Direction",
- "description":"The required form of flexibility, dependant on power_type."
} - "need_type":,{
- "type":"string",
- "title":"DSO Flexibility Product Need Type",
- "description":"The reason for the flexibility requirement."
} - "power_type":,{
- "type":"string",
- "title":"DSO Flexibility Power Type",
- "description":"The type of power service that this competition is for. "Active Power" requires a need_direction of either "excess" or "deficit". "Reactive Power" requires a need_direction of either "import" or "export"."
} - "pricing_type":,{
- "type":"string",
- "title":"Pricing Model Type (Auction or Fixed)",
- "description":"Determines whether the prices paid by Flex Providers are "fixed" or part of the bid ("auction"). Defaults to auction."
} - "product_type":,{
- "type":"string",
- "title":"ENA Flexibility Product Type",
- "description":"The branded names defined by GB DSOs to describe service products being procured."
} - "qualification_closed":,{
- "type":"string",
- "title":"Qualification Closed",
- "description":"Date and time by which an Asset must be registered to be eligible for the Competition."
} - "qualification_open":,{
- "type":"string",
- "title":"Qualification Open",
- "description":"Date and time at which the advert for this Competition went live on Piclo."
} - "reference":,{
- "type":"string",
- "title":"Competition Reference",
- "description":"The System Operator defined unique identifier for this Competition."
} - "service_periods":,{
- "type":"string",
- "title":"Service Period Name",
- "description":"Name used to distinguish individual service periods."
} - "service_period_expand_id":,{
- "type":"string",
- "title":"Service Period ID",
- "description":"Unique Idenification for the Service Period."
} - "service_period_expand_start":,{
- "type":"string",
- "title":"Service Period Start",
- "description":"Date at which the Competition Service Period began."
} - "service_period_expand_end":,{
- "type":"string",
- "title":"Service Period End",
- "description":"Date at which the Competition Service Period closed."
} - "window_expand_id":,{
- "type":"string",
- "title":"Service Window ID",
- "description":"Unique Idenification for the Service Window."
} - "window_expand_name":,{
- "type":"string",
- "title":"Service Period",
- "description":"Specific timeframe during which a Flex Provider is expected to deliver flexibility services as agreed upon in a contract or market opportunity."
} - "window_expand_start":,{
- "type":"string",
- "title":"Start Date of Service Window",
- "description":"Start date of a service period for delivery of flexibility services."
} - "window_expand_end":,{
- "type":"string",
- "title":"End Date of Service Window",
- "description":"End date of a service period for delivery of flexibility services."
} - "window_expand_capacity_required":,{
- "type":"number",
- "title":"Capacity Required (MW)",
- "description":"Amount of flexible power capacity, measured in megawatts (MW) requested from Flex Providers during a specific Service Period."
} - "window_expand_minimum_run_time":,{
- "type":"string",
- "title":"Minimum Run Time",
- "description":"Shortest continuous duration that a Flex Provider's asset must be able to deliver the committed capacity (in MW) during a flexibility event."
} - "window_expand_service_days":,{
- "type":"string",
- "title":"Service Days",
- "description":"Days during which a Flex Provider is expected to deliver flexibility services as agreed upon in a contract or market opportunity."
} - "boundary_exapnd_area_references":,{
- "type":"string",
- "title":"Boundary Area References",
- "description":"Unique identifiers assigned to specific geographical areas (or polygons) that define the competition boundaries for flexibility services."
} - "time_difference_hours":,{
- "type":"string",
- "title":"Time Difference Hours",
- "description":"The continuous time period from the start to the end of the flexibility requirement. "
} - "period_start_ccopy":,{
- "type":"string",
- "title":"Period Start Copy",
- "description":""
} - "competition_start_copy":,{
- "type":"string",
- "format":"date",
- "title":"Competition Open Date Copy",
- "description":""
} - "competition_start_filter":,{
- "type":"string",
- "title":"competition_start_filter",
- "description":""
} - "service_period_start_copy":,{
- "type":"string",
- "format":"date",
- "title":"service_period_start_copy",
- "description":""
} - "service_period_start_copy1":,{
- "type":"string",
- "title":"service_period_start_copy1",
- "description":""
} - "year1":,{
- "type":"string",
- "format":"date",
- "title":"year1",
- "description":""
} - "geo_shape":,{
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/geometry"
}
] - "title":"Geo Shape",
- "description":""
} - "licencearea":,{
- "type":"string",
- "title":"LicenceArea",
- "description":""
} - "year2":,{
- "type":"string",
- "title":"year2",
- "description":""
} - "minimun_run_time_copy":,{
- "type":"string",
- "title":"minimun_run_time_copy",
- "description":""
} - "new":,{
- "type":"string",
- "title":"new",
- "description":""
} - "new1":,{
- "type":"string",
- "title":"hours-new",
- "description":""
} - "service_peroid_hours_copy":,{
- "type":"integer",
- "title":"service_peroid_hours_copy",
- "description":""
} - "service_period_minutes":,{
- "type":"integer",
- "title":"service_period_minutes",
- "description":""
} - "service_perios_seconds":,{
- "type":"integer",
- "title":"service_perios_seconds",
- "description":""
} - "new_1":,{
- "type":"number",
- "title":"new_1",
- "description":""
} - "mwh_new_competition":,{
- "type":"number",
- "title":"MWH",
- "description":"Amount of energy equivalent to one megawatt (MW) of power used or produced continuously for one hour."
} - "competition_start_filter_copy_filter":,{
- "type":"string",
- "format":"date",
- "title":"competition_start_filter_copy_filter",
- "description":""
} - "open_date_filter":,{
- "type":"integer",
- "title":"open_date_filter",
- "description":""
} - "approved":,{
- "type":"string",
- "title":"Approved",
- "description":""
} - "bids_mwh":,{
- "type":"number",
- "title":"Bids MWH",
- "description":""
} - "dispatchmwh":,{
- "type":"number",
- "title":"dispatchDispatch Volume (MWh)",
- "description":""
} - "geo_point_2d":{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"geo_point_2d",
- "description":""
}
} - "area_buffer":
}
} - "fields":
} - "properties":
} - "flexibility_competitions":
}
Submit a reuse
Click to expand Click to collapse
Please login to submit a new reuse.