eCFR · Schema

Agency

A federal agency with CFR references as returned by the eCFR Admin API.

Federal RegulationsGovernmentLegalComplianceOpen DataUnited States

Properties

Name Type Description
name string Full name of the federal agency.
short_name string Abbreviated acronym for the agency.
display_name string Display-friendly name including parent department context.
sortable_name string Inverted name used for alphabetical sorting (e.g., 'Agriculture, Department of').
slug string URL-safe slug identifier for the agency.
children array Sub-agencies that belong to this parent agency.
cfr_references array CFR title and chapter references associated with this agency.
View JSON Schema on GitHub

JSON Schema

agency.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ecfr/main/json-schema/agency.json",
  "title": "Agency",
  "description": "A federal agency with CFR references as returned by the eCFR Admin API.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Full name of the federal agency."
    },
    "short_name": {
      "type": "string",
      "description": "Abbreviated acronym for the agency."
    },
    "display_name": {
      "type": "string",
      "description": "Display-friendly name including parent department context."
    },
    "sortable_name": {
      "type": "string",
      "description": "Inverted name used for alphabetical sorting (e.g., 'Agriculture, Department of')."
    },
    "slug": {
      "type": "string",
      "description": "URL-safe slug identifier for the agency.",
      "pattern": "^[a-z0-9\\-]+$"
    },
    "children": {
      "type": "array",
      "description": "Sub-agencies that belong to this parent agency.",
      "items": {
        "$ref": "#"
      }
    },
    "cfr_references": {
      "type": "array",
      "description": "CFR title and chapter references associated with this agency.",
      "items": {
        "$ref": "#/definitions/CfrReference"
      }
    }
  },
  "required": ["name", "short_name", "display_name", "sortable_name", "slug", "children", "cfr_references"],
  "definitions": {
    "CfrReference": {
      "type": "object",
      "description": "A reference to a specific CFR title and chapter.",
      "properties": {
        "title": {
          "type": "integer",
          "description": "CFR title number (1-50).",
          "minimum": 1,
          "maximum": 50
        },
        "chapter": {
          "type": "string",
          "description": "CFR chapter identifier (Roman numeral or digit).",
          "example": "III"
        }
      },
      "required": ["title", "chapter"]
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/agency"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.