Response containing metadata for a specific survey.
{ "$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-survey-metadata-response-schema.json", "title": "SurveyMetadataResponse", "description": "Response containing metadata for a specific survey.", "type": "object", "properties": { "status": { "type": "string", "description": "Request status.", "example": "REQUEST_SUCCEEDED" }, "responseTime": { "type": "integer", "description": "Response time in milliseconds.", "example": 112 }, "message": { "type": "array", "items": { "type": "string" } }, "Results": { "type": "object", "description": "Results containing survey metadata.", "properties": { "survey": { "type": "array", "items": { "$ref": "#/components/schemas/Survey" } } } } } }