addedInput schema / examples
Added value: +[
+ {
+ "area_from": "10YDE-VE-------2",
+ "area_to": "10YFR-RTE------C",
+ "period_end": "202401012300",
+ "period_start": "202401010000"
+ },
+ {
+ "area_from": "10YGB-NGET-----L",
+ "area_to": "10YNL----------L",
+ "period_end": "202412312300",
+ "period_start": "202412010000"
+ }
+]
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "query": {
+ "description": "Query parameters sent to ENTSO-E API",
+ "type": "object"
+ },
+ "time_series": {
+ "description": "Array of cross-border flow time series",
+ "items": {
+ "properties": {
+ "business_type": {
+ "description": "Business type classification",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "in_domain": {
+ "description": "Destination area EIC code",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "mrid": {
+ "description": "Market Resource ID",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "out_domain": {
+ "description": "Source area EIC code",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "periods": {
+ "description": "Time periods with flow data",
+ "items": {
+ "properties": {
+ "period_end": {
+ "description": "Period end timestamp (ISO 8601)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "period_start": {
+ "description": "Period start timestamp (ISO 8601)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "points": {
+ "description": "Flow data points",
+ "items": {
+ "properties": {
+ "position": {
+ "description": "Position/index in period",
+ "type": "number"
+ },
+ "value": {
+ "description": "Physical flow in MW",
+ "type": "number"
+ }
+ },
+ "required": [
+ "position",
+ "value"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "resolution": {
+ "description": "Time resolution (e.g., PT60M for hourly)",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "psr_type": {
+ "description": "Production source resource type",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "time_series_count": {
+ "description": "Number of time series returned",
+ "type": "number"
+ }
+ },
+ "required": [
+ "query",
+ "time_series_count",
+ "time_series"
+ ],
+ "type": "object"
+}