changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "query": {
+ "description": "Query parameters sent to ENTSO-E API",
+ "type": "object"
+ },
+ "time_series": {
+ "description": "Array of installed capacity time series by type",
+ "items": {
+ "properties": {
+ "business_type": {
+ "description": "Business type classification",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "in_domain": {
+ "description": "Inbound domain EIC code",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "mrid": {
+ "description": "Market Resource ID",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "out_domain": {
+ "description": "Outbound domain EIC code",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "periods": {
+ "description": "Capacity periods (typically year-end)",
+ "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": "Capacity data points",
+ "items": {
+ "properties": {
+ "position": {
+ "description": "Position/index in period",
+ "type": "number"
+ },
+ "value": {
+ "description": "Installed capacity in MW",
+ "type": "number"
+ }
+ },
+ "required": [
+ "position",
+ "value"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "resolution": {
+ "description": "Time resolution",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "psr_type": {
+ "description": "Production type (Solar, Wind, Nuclear, Gas, etc.)",
+ "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"
+}