changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "data": {
+ "description": "Time series data points",
+ "items": {
+ "properties": {
+ "period": {
+ "description": "Period code (e.g., M01 for January)",
+ "type": "string"
+ },
+ "period_name": {
+ "description": "Human-readable period name (e.g., January)",
+ "type": "string"
+ },
+ "value": {
+ "description": "Numeric value for the period",
+ "type": "number"
+ },
+ "year": {
+ "description": "Year of the data point",
+ "type": "string"
+ }
+ },
+ "required": [
+ "year",
+ "period",
+ "period_name",
+ "value"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "end_year": {
+ "description": "End year filter if provided, null otherwise",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "series_id": {
+ "description": "BLS series ID requested",
+ "type": "string"
+ },
+ "start_year": {
+ "description": "Start year filter if provided, null otherwise",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "total": {
+ "description": "Total number of data points returned",
+ "type": "integer"
+ }
+ },
+ "required": [
+ "series_id",
+ "start_year",
+ "end_year",
+ "total",
+ "data"
+ ],
+ "type": "object"
+}