{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/fred/refs/heads/main/json-structure/api-observation-list-structure.json", "name": "ObservationList", "description": "A list of observations for a series.", "type": "object", "properties": { "realtime_start": { "type": "date", "example": "2026-05-28" }, "realtime_end": { "type": "date", "example": "2026-05-28" }, "observation_start": { "type": "date", "example": "2026-05-28" }, "observation_end": { "type": "date", "example": "2026-05-28" }, "units": { "type": "string", "example": "Percent" }, "output_type": { "type": "int32", "example": 1 }, "file_type": { "type": "string", "example": "example" }, "order_by": { "type": "string", "example": "example" }, "sort_order": { "type": "string", "example": "example" }, "count": { "type": "int32", "example": 1 }, "offset": { "type": "int32", "example": 0 }, "limit": { "type": "int32", "example": 1000 }, "observations": { "type": "array", "items": { "$ref": "#/components/schemas/Observation" } } }, "required": [ "observations" ] }