FRED Economic Data Observation

JSON Schema for a single FRED data observation (data point) in an economic time series.

Reserve RequirementsFederal ReserveBanking RegulationMonetary PolicyRegulation DFinance

Properties

Name Type Description
realtime_start string Realtime start date for this observation.
realtime_end string Realtime end date for this observation.
date string The observation date.
value string The observation value. A period (.) indicates a missing value.
View JSON Schema on GitHub

JSON Schema

fred-observation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/api-evangelist/reserve-requirements/json-schema/fred-observation-schema.json",
  "title": "FRED Economic Data Observation",
  "description": "JSON Schema for a single FRED data observation (data point) in an economic time series.",
  "type": "object",
  "properties": {
    "realtime_start": {
      "type": "string",
      "format": "date",
      "description": "Realtime start date for this observation."
    },
    "realtime_end": {
      "type": "string",
      "format": "date",
      "description": "Realtime end date for this observation."
    },
    "date": {
      "type": "string",
      "format": "date",
      "description": "The observation date.",
      "example": "2024-01-03"
    },
    "value": {
      "type": "string",
      "description": "The observation value. A period (.) indicates a missing value.",
      "example": "3459214"
    }
  },
  "required": ["date", "value"]
}