FRED · Schema

Shape

A single GeoJSON-style shape feature.

FinanceGovernmentEconomic DataFederal ReserveTime SeriesOpen DataPublic APIs

Properties

Name Type Description
name string Display name of the region.
code string Region code (FIPS
centroid string Quantized centroid coordinates.
geometry string Quantized geometry path.
View JSON Schema on GitHub

JSON Schema

geofred-api-shape-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/geofred-api-shape-schema.json",
  "title": "Shape",
  "description": "A single GeoJSON-style shape feature.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Display name of the region.",
      "example": "Unemployment Rate"
    },
    "code": {
      "type": "string",
      "description": "Region code (FIPS",
      "ISO": null,
      "etc.).": null,
      "example": "example"
    },
    "centroid": {
      "type": "string",
      "description": "Quantized centroid coordinates.",
      "example": "example"
    },
    "geometry": {
      "type": "string",
      "description": "Quantized geometry path.",
      "example": "example"
    }
  },
  "required": [
    "name",
    "code"
  ]
}