changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "data": {
+ "description": "Monthly unemployment rate data",
+ "items": {
+ "properties": {
+ "month": {
+ "description": "Month name (e.g., January)",
+ "type": "string"
+ },
+ "period": {
+ "description": "Period code (e.g., M01)",
+ "type": "string"
+ },
+ "rate": {
+ "description": "Unemployment rate as percentage",
+ "type": "number"
+ },
+ "year": {
+ "description": "Year of the observation",
+ "type": "string"
+ }
+ },
+ "required": [
+ "year",
+ "month",
+ "period",
+ "rate"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "description": {
+ "description": "Series description",
+ "type": "string"
+ },
+ "end_year": {
+ "description": "End year filter if provided, null otherwise",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "series_id": {
+ "description": "BLS series ID (LNS14000000)",
+ "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"
+ },
+ "unit": {
+ "description": "Unit of measurement (percent)",
+ "type": "string"
+ }
+ },
+ "required": [
+ "series_id",
+ "description",
+ "unit",
+ "start_year",
+ "end_year",
+ "total",
+ "data"
+ ],
+ "type": "object"
+}