changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "data": {
+ "description": "Employment data by period",
+ "items": {
+ "properties": {
+ "employment_thousands": {
+ "description": "Employment in thousands of persons",
+ "type": "number"
+ },
+ "month": {
+ "description": "Month name (e.g., January)",
+ "type": "string"
+ },
+ "period": {
+ "description": "Period code (e.g., M01)",
+ "type": "string"
+ },
+ "year": {
+ "description": "Year of the observation",
+ "type": "string"
+ }
+ },
+ "required": [
+ "year",
+ "month",
+ "period",
+ "employment_thousands"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "description": {
+ "description": "Series description",
+ "type": "string"
+ },
+ "end_year": {
+ "description": "End year filter if provided, null otherwise",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "industry": {
+ "description": "Industry name requested",
+ "type": "string"
+ },
+ "series_id": {
+ "description": "BLS series ID for the industry",
+ "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 (thousands of persons)",
+ "type": "string"
+ }
+ },
+ "required": [
+ "series_id",
+ "industry",
+ "description",
+ "unit",
+ "start_year",
+ "end_year",
+ "total",
+ "data"
+ ],
+ "type": "object"
+}