FRED · Schema

CategoryList

A list of FRED categories.

FinanceGovernmentEconomic DataFederal ReserveTime SeriesOpen DataPublic APIs

Properties

Name Type Description
categories array
View JSON Schema on GitHub

JSON Schema

api-category-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/fred/refs/heads/main/json-schema/api-category-list-schema.json",
  "title": "CategoryList",
  "description": "A list of FRED categories.",
  "type": "object",
  "properties": {
    "categories": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Category"
      }
    }
  },
  "required": [
    "categories"
  ]
}