Bls Popular Series Response Structure

Response containing popular BLS series.

Type: object Properties: 4
Federal GovernmentLaborStatisticsEmploymentEconomic Data

PopularSeriesResponse 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-popular-series-response-structure.json",
  "description": "Response containing popular BLS series.",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "Request status.",
      "example": "REQUEST_SUCCEEDED"
    },
    "responseTime": {
      "type": "int32",
      "description": "Response time in milliseconds.",
      "example": 89
    },
    "message": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "Results": {
      "type": "object",
      "description": "Results containing popular series list.",
      "properties": {
        "series": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "seriesID": {
                "type": "string",
                "description": "BLS series identifier.",
                "example": "LNS14000000"
              },
              "catalog": {
                "$ref": "#/components/schemas/SeriesCatalog"
              }
            }
          }
        }
      }
    }
  },
  "name": "PopularSeriesResponse"
}