Bls Series Response Structure

Standard BLS API response containing time series data.

Type: object Properties: 4
Federal GovernmentLaborStatisticsEmploymentEconomic Data

SeriesResponse is a JSON Structure definition published by U.S. Bureau of Labor Statistics, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

status responseTime message Results

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/u-s-bureau-of-labor-statistics/refs/heads/main/json-structure/bls-series-response-structure.json",
  "description": "Standard BLS API response containing time series data.",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "Request status (REQUEST_SUCCEEDED, REQUEST_FAILED, REQUEST_NOT_PROCESSED).",
      "example": "REQUEST_SUCCEEDED"
    },
    "responseTime": {
      "type": "int32",
      "description": "Server response time in milliseconds.",
      "example": 178
    },
    "message": {
      "type": "array",
      "description": "Array of informational or error messages.",
      "items": {
        "type": "string"
      }
    },
    "Results": {
      "$ref": "#/components/schemas/SeriesResults"
    }
  },
  "name": "SeriesResponse"
}