FRED · JSON Structure

Api Source Structure

An originating source of FRED economic data.

Type: object Properties: 6 Required: 2
FinanceGovernmentEconomic DataFederal ReserveTime SeriesOpen DataPublic APIs

Source is a JSON Structure definition published by FRED, describing 6 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id realtime_start realtime_end name link notes

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/fred/refs/heads/main/json-structure/api-source-structure.json",
  "name": "Source",
  "description": "An originating source of FRED economic data.",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32",
      "example": 1
    },
    "realtime_start": {
      "type": "date",
      "example": "2026-05-28"
    },
    "realtime_end": {
      "type": "date",
      "example": "2026-05-28"
    },
    "name": {
      "type": "string",
      "example": "Unemployment Rate"
    },
    "link": {
      "type": "uri",
      "example": "https://fred.stlouisfed.org/"
    },
    "notes": {
      "type": "string",
      "example": "Editorial notes."
    }
  },
  "required": [
    "id",
    "name"
  ]
}