FRED · JSON Structure

Api Release Table Structure

A release table tree node.

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

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

Properties

name element_id release_id elements

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-release-table-structure.json",
  "name": "ReleaseTable",
  "description": "A release table tree node.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "Unemployment Rate"
    },
    "element_id": {
      "type": "int32",
      "example": 1
    },
    "release_id": {
      "type": "int32",
      "example": 9
    },
    "elements": {
      "type": "object",
      "description": "Map of element_id \u2192 child element.",
      "additionalProperties": {
        "type": "object",
        "properties": {
          "element_id": {
            "type": "int32"
          },
          "release_id": {
            "type": "int32"
          },
          "series_id": {
            "type": "string"
          },
          "parent_id": {
            "type": "int32"
          },
          "line": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "level": {
            "type": "string"
          },
          "children": {
            "type": "array",
            "items": {
              "type": "object"
            }
          }
        }
      }
    }
  },
  "required": [
    "release_id",
    "elements"
  ]
}