FRED · Schema
ReleaseList
A list of FRED releases.
FinanceGovernmentEconomic DataFederal ReserveTime SeriesOpen DataPublic APIs
Properties
| Name | Type | Description |
|---|---|---|
| realtime_start | string | |
| realtime_end | string | |
| order_by | string | |
| sort_order | string | |
| count | integer | Total count of releases matched. |
| offset | integer | |
| limit | integer | |
| releases | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/fred/refs/heads/main/json-schema/api-release-list-schema.json",
"title": "ReleaseList",
"description": "A list of FRED releases.",
"type": "object",
"properties": {
"realtime_start": {
"type": "string",
"format": "date",
"example": "2026-05-28"
},
"realtime_end": {
"type": "string",
"format": "date",
"example": "2026-05-28"
},
"order_by": {
"type": "string",
"example": "example"
},
"sort_order": {
"type": "string",
"example": "example"
},
"count": {
"type": "integer",
"description": "Total count of releases matched.",
"example": 1
},
"offset": {
"type": "integer",
"example": 0
},
"limit": {
"type": "integer",
"example": 1000
},
"releases": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Release"
}
}
},
"required": [
"releases"
]
}