FRED · JSON Structure

Geofred Api Series Group Structure

Metadata describing a regional series group.

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

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

Properties

title region_type series_group season units frequency min_date max_date

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/geofred-api-series-group-structure.json",
  "name": "SeriesGroup",
  "description": "Metadata describing a regional series group.",
  "type": "object",
  "properties": {
    "title": {
      "type": "string",
      "description": "Display title of the series group.",
      "example": "Unemployment Rate"
    },
    "region_type": {
      "type": "string",
      "description": "Geography type the group covers.",
      "example": "example"
    },
    "series_group": {
      "type": "string",
      "description": "Series-group identifier.",
      "example": "example"
    },
    "season": {
      "type": "string",
      "enum": [
        "SA",
        "NSA",
        "SSA",
        "SAAR",
        "NSAAR"
      ],
      "example": "example"
    },
    "units": {
      "type": "string",
      "example": "Percent"
    },
    "frequency": {
      "type": "string",
      "example": "Monthly"
    },
    "min_date": {
      "type": "date",
      "example": "2026-05-28"
    },
    "max_date": {
      "type": "date",
      "example": "2026-05-28"
    }
  },
  "required": [
    "series_group",
    "region_type"
  ]
}