changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "series": {
+ "description": "Series data with metadata",
+ "items": {
+ "properties": {
+ "dataset_code": {
+ "description": "Dataset code",
+ "type": "string"
+ },
+ "frequency": {
+ "description": "Data frequency (A/Q/M/D etc)",
+ "type": "string"
+ },
+ "last_update": {
+ "description": "Last update timestamp",
+ "type": "string"
+ },
+ "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"
+ },
+ "provider_code": {
+ "description": "Provider code",
+ "type": "string"
+ },
+ "series_code": {
+ "description": "Series code",
+ "type": "string"
+ },
+ "unit": {
+ "description": "Unit of measurement",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+}