addedInput schema / examples
Added value: +[
+ {
+ "dataset": "EXR",
+ "dimensions": {
+ "FREQ": "M"
+ },
+ "provider": "ECB"
+ },
+ {
+ "dataset": "UNE_RT_A",
+ "dimensions": {
+ "COUNTRY": "DE",
+ "SEX": "T"
+ },
+ "observations": true,
+ "provider": "EUROSTAT"
+ }
+]
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "limit": {
+ "description": "Limit applied",
+ "type": "number"
+ },
+ "offset": {
+ "description": "Offset applied",
+ "type": "number"
+ },
+ "series": {
+ "description": "Series matching dimension filters",
+ "items": {
+ "properties": {
+ "dimensions": {
+ "additionalProperties": {
+ "type": "string"
+ },
+ "description": "Dimension values for series",
+ "type": "object"
+ },
+ "name": {
+ "description": "Series name",
+ "type": "string"
+ },
+ "observations": {
+ "description": "Time series data points (if requested)",
+ "items": {
+ "properties": {
+ "date": {
+ "description": "Observation date",
+ "type": "string"
+ },
+ "value": {
+ "description": "Observed value or null",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "series_code": {
+ "description": "Series code",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total_count": {
+ "description": "Total series count",
+ "type": "number"
+ }
+ },
+ "type": "object"
+}