FRED · Schema

Source

An originating source of FRED economic data.

FinanceGovernmentEconomic DataFederal ReserveTime SeriesOpen DataPublic APIs

Properties

Name Type Description
id integer
realtime_start string
realtime_end string
name string
link string
notes string
View JSON Schema on GitHub

JSON Schema

api-source-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-source-schema.json",
  "title": "Source",
  "description": "An originating source of FRED economic data.",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "example": 1
    },
    "realtime_start": {
      "type": "string",
      "format": "date",
      "example": "2026-05-28"
    },
    "realtime_end": {
      "type": "string",
      "format": "date",
      "example": "2026-05-28"
    },
    "name": {
      "type": "string",
      "example": "Unemployment Rate"
    },
    "link": {
      "type": "string",
      "format": "uri",
      "example": "https://fred.stlouisfed.org/"
    },
    "notes": {
      "type": "string",
      "example": "Editorial notes."
    }
  },
  "required": [
    "id",
    "name"
  ]
}