SurveysResponse

Response containing all available BLS surveys.

Federal GovernmentLaborStatisticsEmploymentEconomic Data

Properties

Name Type Description
status string Request status.
responseTime integer Response time in milliseconds.
message array
Results object Results containing survey list.
View JSON Schema on GitHub

JSON Schema

bls-surveys-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/u-s-bureau-of-labor-statistics/refs/heads/main/json-schema/bls-surveys-response-schema.json",
  "title": "SurveysResponse",
  "description": "Response containing all available BLS surveys.",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "Request status.",
      "example": "REQUEST_SUCCEEDED"
    },
    "responseTime": {
      "type": "integer",
      "description": "Response time in milliseconds.",
      "example": 132
    },
    "message": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "Results": {
      "type": "object",
      "description": "Results containing survey list.",
      "properties": {
        "survey": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/Survey"
          }
        }
      }
    }
  }
}