Authority axis v1: mint the executive branch + link 27,804 § → office edges

The Code empowers the executive branch, but the mirror only had legislative
Bodies — every authority reference pointed at nothing. Fixed by minting the
executive branch from the Code's OWN enumerations: 15 Cabinet departments
(5 U.S.C. § 101) + 21 Executive-Schedule Level I offices (§ 5312), 42 Body
nodes under us/executive/.

Then the axis: scripts/extract_authority.py matches named office/department
references across all 59,740 sections (guarding against Deputy/Assistant/Under
subordinates) and emits data/section_authority_edges.jsonl — 27,804 edges from
17,031 sections (28.7% of the Code) to the offices they empower. build.py
renders reciprocal 'empowered by' links on each office node; the section files
are never touched. Now: click the Attorney General, see all 2,386 sections that
vest authority in it.

Named references only in v1 (cabinet-level). Deterministic; body.schema
classification enum extended (executive-department/-agency/-office); make check
green at 105,746 records.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Fabio
2026-07-06 11:37:12 -04:00
parent 76b8ec33a7
commit a8594d786c
48 changed files with 30086 additions and 2 deletions
+4 -1
View File
@@ -1,7 +1,7 @@
# Republic OS — repeatable pipeline commands. # Republic OS — repeatable pipeline commands.
# The build is deterministic: `make build` twice yields a byte-identical tree. # The build is deterministic: `make build` twice yields a byte-identical tree.
.PHONY: build validate board legal-us-code check .PHONY: build validate board legal-us-code authority check
build: ## Regenerate the entity tree from raw exports in data/ build: ## Regenerate the entity tree from raw exports in data/
python3 scripts/build.py python3 scripts/build.py
@@ -24,4 +24,7 @@ TITLES ?= 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2
legal-us-code: ## Ingest the pinned U.S. Code titles (override with TITLES="…") legal-us-code: ## Ingest the pinned U.S. Code titles (override with TITLES="…")
@for t in $(TITLES); do python3 scripts/ingest_us_code.py --title $$t; done @for t in $(TITLES); do python3 scripts/ingest_us_code.py --title $$t; done
authority: ## Extract the § -> executive-office authority edges (a committed input)
python3 scripts/extract_authority.py
check: build validate ## Build, then validate — the full gate check: build validate ## Build, then validate — the full gate
+21
View File
@@ -0,0 +1,21 @@
{"slug": "state", "kind": "department", "name": "Department of State", "aliases": ["Department of State"], "head": {"slug": "secretary", "name": "Secretary of State", "aliases": ["Secretary of State"]}, "sources": ["/us/usc/t5/s101", "/us/usc/t5/s5312"], "schedule_level": "I"}
{"slug": "treasury", "kind": "department", "name": "Department of the Treasury", "aliases": ["Department of the Treasury"], "head": {"slug": "secretary", "name": "Secretary of the Treasury", "aliases": ["Secretary of the Treasury"]}, "sources": ["/us/usc/t5/s101", "/us/usc/t5/s5312"], "schedule_level": "I"}
{"slug": "defense", "kind": "department", "name": "Department of Defense", "aliases": ["Department of Defense"], "head": {"slug": "secretary", "name": "Secretary of Defense", "aliases": ["Secretary of Defense"]}, "sources": ["/us/usc/t5/s101", "/us/usc/t5/s5312"], "schedule_level": "I"}
{"slug": "justice", "kind": "department", "name": "Department of Justice", "aliases": ["Department of Justice"], "head": {"slug": "attorney-general", "name": "Attorney General", "aliases": ["Attorney General"]}, "sources": ["/us/usc/t5/s101", "/us/usc/t5/s5312"], "schedule_level": "I"}
{"slug": "interior", "kind": "department", "name": "Department of the Interior", "aliases": ["Department of the Interior"], "head": {"slug": "secretary", "name": "Secretary of the Interior", "aliases": ["Secretary of the Interior"]}, "sources": ["/us/usc/t5/s101", "/us/usc/t5/s5312"], "schedule_level": "I"}
{"slug": "agriculture", "kind": "department", "name": "Department of Agriculture", "aliases": ["Department of Agriculture"], "head": {"slug": "secretary", "name": "Secretary of Agriculture", "aliases": ["Secretary of Agriculture"]}, "sources": ["/us/usc/t5/s101", "/us/usc/t5/s5312"], "schedule_level": "I"}
{"slug": "commerce", "kind": "department", "name": "Department of Commerce", "aliases": ["Department of Commerce"], "head": {"slug": "secretary", "name": "Secretary of Commerce", "aliases": ["Secretary of Commerce"]}, "sources": ["/us/usc/t5/s101", "/us/usc/t5/s5312"], "schedule_level": "I"}
{"slug": "labor", "kind": "department", "name": "Department of Labor", "aliases": ["Department of Labor"], "head": {"slug": "secretary", "name": "Secretary of Labor", "aliases": ["Secretary of Labor"]}, "sources": ["/us/usc/t5/s101", "/us/usc/t5/s5312"], "schedule_level": "I"}
{"slug": "health-and-human-services", "kind": "department", "name": "Department of Health and Human Services", "aliases": ["Department of Health and Human Services"], "head": {"slug": "secretary", "name": "Secretary of Health and Human Services", "aliases": ["Secretary of Health and Human Services"]}, "sources": ["/us/usc/t5/s101", "/us/usc/t5/s5312"], "schedule_level": "I"}
{"slug": "housing-and-urban-development", "kind": "department", "name": "Department of Housing and Urban Development", "aliases": ["Department of Housing and Urban Development"], "head": {"slug": "secretary", "name": "Secretary of Housing and Urban Development", "aliases": ["Secretary of Housing and Urban Development"]}, "sources": ["/us/usc/t5/s101", "/us/usc/t5/s5312"], "schedule_level": "I"}
{"slug": "transportation", "kind": "department", "name": "Department of Transportation", "aliases": ["Department of Transportation"], "head": {"slug": "secretary", "name": "Secretary of Transportation", "aliases": ["Secretary of Transportation"]}, "sources": ["/us/usc/t5/s101", "/us/usc/t5/s5312"], "schedule_level": "I"}
{"slug": "energy", "kind": "department", "name": "Department of Energy", "aliases": ["Department of Energy"], "head": {"slug": "secretary", "name": "Secretary of Energy", "aliases": ["Secretary of Energy"]}, "sources": ["/us/usc/t5/s101", "/us/usc/t5/s5312"], "schedule_level": "I"}
{"slug": "education", "kind": "department", "name": "Department of Education", "aliases": ["Department of Education"], "head": {"slug": "secretary", "name": "Secretary of Education", "aliases": ["Secretary of Education"]}, "sources": ["/us/usc/t5/s101", "/us/usc/t5/s5312"], "schedule_level": "I"}
{"slug": "veterans-affairs", "kind": "department", "name": "Department of Veterans Affairs", "aliases": ["Department of Veterans Affairs"], "head": {"slug": "secretary", "name": "Secretary of Veterans Affairs", "aliases": ["Secretary of Veterans Affairs"]}, "sources": ["/us/usc/t5/s101", "/us/usc/t5/s5312"], "schedule_level": "I"}
{"slug": "homeland-security", "kind": "department", "name": "Department of Homeland Security", "aliases": ["Department of Homeland Security"], "head": {"slug": "secretary", "name": "Secretary of Homeland Security", "aliases": ["Secretary of Homeland Security"]}, "sources": ["/us/usc/t5/s101", "/us/usc/t5/s5312"], "schedule_level": "I"}
{"slug": "us-trade-representative", "kind": "agency", "name": "Office of the United States Trade Representative", "aliases": ["Office of the United States Trade Representative"], "parent": "us/bodies/executive-office-of-the-president-of-the-united-states", "head": {"slug": "united-states-trade-representative", "name": "United States Trade Representative", "aliases": ["United States Trade Representative"]}, "sources": ["/us/usc/t5/s5312"], "schedule_level": "I"}
{"slug": "office-of-management-and-budget", "kind": "agency", "name": "Office of Management and Budget", "aliases": ["Office of Management and Budget"], "parent": "us/bodies/executive-office-of-the-president-of-the-united-states", "head": {"slug": "director", "name": "Director of the Office of Management and Budget", "aliases": ["Director of the Office of Management and Budget"]}, "sources": ["/us/usc/t5/s5312"], "schedule_level": "I"}
{"slug": "national-drug-control-policy", "kind": "agency", "name": "Office of National Drug Control Policy", "aliases": ["Office of National Drug Control Policy"], "parent": "us/bodies/executive-office-of-the-president-of-the-united-states", "head": {"slug": "director", "name": "Director of National Drug Control Policy", "aliases": ["Director of National Drug Control Policy"]}, "sources": ["/us/usc/t5/s5312"], "schedule_level": "I"}
{"slug": "social-security-administration", "kind": "agency", "name": "Social Security Administration", "aliases": ["Social Security Administration"], "head": {"slug": "commissioner", "name": "Commissioner of Social Security", "aliases": ["Commissioner of Social Security"]}, "sources": ["/us/usc/t5/s5312"], "schedule_level": "I"}
{"slug": "federal-reserve", "kind": "agency", "name": "Board of Governors of the Federal Reserve System", "aliases": ["Board of Governors of the Federal Reserve System"], "head": {"slug": "chairman", "name": "Chairman of the Board of Governors of the Federal Reserve System", "aliases": ["Chairman, Board of Governors of the Federal Reserve System"]}, "sources": ["/us/usc/t5/s5312"], "schedule_level": "I"}
{"slug": "director-of-national-intelligence", "kind": "agency", "name": "Office of the Director of National Intelligence", "aliases": ["Office of the Director of National Intelligence"], "head": {"slug": "director", "name": "Director of National Intelligence", "aliases": ["Director of National Intelligence"]}, "sources": ["/us/usc/t5/s5312"], "schedule_level": "I"}
@@ -0,0 +1,49 @@
---
type: Body
title: "Department of Agriculture"
classification: "executive-department"
chamber: "executive"
code: "EXEC-AGRICULTURE"
head: "us/executive/agriculture/secretary"
sources:
- field: definition
source: "5 U.S.C. § 101 (Executive departments)"
confidence: official
tags: [body, executive, executive-department]
timestamp: "2026-07-03"
---
# Department of Agriculture
Executive department, established by 5 U.S.C. § 101. Headed by the [Secretary of Agriculture](/us/executive/agriculture/secretary.md).
## Referenced by the U.S. Code
760 sections of the U.S. Code reference this department. A sample:
- [2 U.S.C. § 1161](/legal/us/code/title-02/chapter-22b/section-1161.md)
- [2 U.S.C. § 901](/legal/us/code/title-02/chapter-20/section-901.md)
- [5 U.S.C. § 101](/legal/us/code/title-05/chapter-1/section-101.md)
- [5 U.S.C. § 401](/legal/us/code/title-05/chapter-4/section-401.md)
- [5 U.S.C. § 422](/legal/us/code/title-05/chapter-4/section-422.md)
- [5 U.S.C. § 5109](/legal/us/code/title-05/chapter-51/section-5109.md)
- [5 U.S.C. § 5315](/legal/us/code/title-05/chapter-53/section-5315.md)
- [5 U.S.C. § 5542](/legal/us/code/title-05/chapter-55/section-5542.md)
- [5 U.S.C. § 5946](/legal/us/code/title-05/chapter-59/section-5946.md)
- [5 U.S.C. § 7103](/legal/us/code/title-05/chapter-71/section-7103.md)
- [5 U.S.C. § 9601](/legal/us/code/title-05/chapter-96/section-9601.md)
- [6 U.S.C. § 190](/legal/us/code/title-06/chapter-1/section-190.md)
- [6 U.S.C. § 195c](/legal/us/code/title-06/chapter-1/section-195c.md)
- [6 U.S.C. § 202](/legal/us/code/title-06/chapter-1/section-202.md)
- [6 U.S.C. § 231](/legal/us/code/title-06/chapter-1/section-231.md)
- [6 U.S.C. § 235](/legal/us/code/title-06/chapter-1/section-235.md)
- [6 U.S.C. § 772](/legal/us/code/title-06/chapter-2/section-772.md)
- [7 U.S.C. § 1032](/legal/us/code/title-07/chapter-33/section-1032.md)
- [7 U.S.C. § 1032a](/legal/us/code/title-07/chapter-33/section-1032a.md)
- [7 U.S.C. § 1291](/legal/us/code/title-07/chapter-35/section-1291.md)
- [7 U.S.C. § 1301](/legal/us/code/title-07/chapter-35/section-1301.md)
- [7 U.S.C. § 13084](/legal/us/code/title-07/chapter-35/section-1308-4.md)
- [7 U.S.C. § 136a](/legal/us/code/title-07/chapter-6/section-136a.md)
- [7 U.S.C. § 136t](/legal/us/code/title-07/chapter-6/section-136t.md)
- [7 U.S.C. § 136w3](/legal/us/code/title-07/chapter-6/section-136w-3.md)
- …and 735 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,50 @@
---
type: Body
title: "Secretary of Agriculture"
classification: "executive-office"
chamber: "executive"
code: "EXEC-AGRICULTURE-SECRETARY"
parent: "us/executive/agriculture"
schedule_level: "I"
sources:
- field: definition
source: "5 U.S.C. § 5312 (Executive Schedule, Level I)"
confidence: official
tags: [body, executive, executive-office]
timestamp: "2026-07-03"
---
# Secretary of Agriculture
Cabinet-rank office (Executive Schedule Level I, 5 U.S.C. § 5312), head of the [Department of Agriculture](/us/executive/agriculture/index.md).
## Empowered by the U.S. Code
1,511 sections of the U.S. Code vest authority in this office. A sample:
- [2 U.S.C. § 1161](/legal/us/code/title-02/chapter-22b/section-1161.md)
- [2 U.S.C. § 906](/legal/us/code/title-02/chapter-20/section-906.md)
- [3 U.S.C. § 19](/legal/us/code/title-03/chapter-1/section-19.md)
- [5 U.S.C. § 2902](/legal/us/code/title-05/chapter-29/section-2902.md)
- [5 U.S.C. § 401](/legal/us/code/title-05/chapter-4/section-401.md)
- [5 U.S.C. § 5312](/legal/us/code/title-05/chapter-53/section-5312.md)
- [5 U.S.C. § 5343](/legal/us/code/title-05/chapter-53/section-5343.md)
- [5 U.S.C. § 5545c](/legal/us/code/title-05/chapter-55/section-5545c.md)
- [5 U.S.C. § 5595](/legal/us/code/title-05/chapter-55/section-5595.md)
- [5 U.S.C. § 8332](/legal/us/code/title-05/chapter-83/section-8332.md)
- [5 U.S.C. § 8347](/legal/us/code/title-05/chapter-83/section-8347.md)
- [5 U.S.C. § 8716](/legal/us/code/title-05/chapter-87/section-8716.md)
- [5 U.S.C. § 8913](/legal/us/code/title-05/chapter-89/section-8913.md)
- [6 U.S.C. § 104](/legal/us/code/title-06/chapter-1/section-104.md)
- [6 U.S.C. § 106](/legal/us/code/title-06/chapter-1/section-106.md)
- [6 U.S.C. § 182](/legal/us/code/title-06/chapter-1/section-182.md)
- [6 U.S.C. § 190](/legal/us/code/title-06/chapter-1/section-190.md)
- [6 U.S.C. § 231](/legal/us/code/title-06/chapter-1/section-231.md)
- [6 U.S.C. § 235](/legal/us/code/title-06/chapter-1/section-235.md)
- [6 U.S.C. § 321q](/legal/us/code/title-06/chapter-1/section-321q.md)
- [6 U.S.C. § 347](/legal/us/code/title-06/chapter-1/section-347.md)
- [6 U.S.C. § 488a](/legal/us/code/title-06/chapter-1/section-488a.md)
- [6 U.S.C. § 488c](/legal/us/code/title-06/chapter-1/section-488c.md)
- [6 U.S.C. § 771](/legal/us/code/title-06/chapter-2/section-771.md)
- [7 U.S.C. § 1006a](/legal/us/code/title-07/chapter-33/section-1006a.md)
- …and 1,486 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,49 @@
---
type: Body
title: "Department of Commerce"
classification: "executive-department"
chamber: "executive"
code: "EXEC-COMMERCE"
head: "us/executive/commerce/secretary"
sources:
- field: definition
source: "5 U.S.C. § 101 (Executive departments)"
confidence: official
tags: [body, executive, executive-department]
timestamp: "2026-07-03"
---
# Department of Commerce
Executive department, established by 5 U.S.C. § 101. Headed by the [Secretary of Commerce](/us/executive/commerce/secretary.md).
## Referenced by the U.S. Code
420 sections of the U.S. Code reference this department. A sample:
- [2 U.S.C. § 4575](/legal/us/code/title-02/chapter-45/section-4575.md)
- [2 U.S.C. § 6317](/legal/us/code/title-02/chapter-63/section-6317.md)
- [2 U.S.C. § 900](/legal/us/code/title-02/chapter-20/section-900.md)
- [2 U.S.C. § 901](/legal/us/code/title-02/chapter-20/section-901.md)
- [2 U.S.C. § 904](/legal/us/code/title-02/chapter-20/section-904.md)
- [5 U.S.C. § 101](/legal/us/code/title-05/chapter-1/section-101.md)
- [5 U.S.C. § 406](/legal/us/code/title-05/chapter-4/section-406.md)
- [5 U.S.C. § 422](/legal/us/code/title-05/chapter-4/section-422.md)
- [5 U.S.C. § 5315](/legal/us/code/title-05/chapter-53/section-5315.md)
- [5 U.S.C. § 5316](/legal/us/code/title-05/chapter-53/section-5316.md)
- [5 U.S.C. § 7103](/legal/us/code/title-05/chapter-71/section-7103.md)
- [5 U.S.C. § 7531](/legal/us/code/title-05/chapter-75/section-7531.md)
- [6 U.S.C. § 112](/legal/us/code/title-06/chapter-1/section-112.md)
- [6 U.S.C. § 121](/legal/us/code/title-06/chapter-1/section-121.md)
- [6 U.S.C. § 1501](/legal/us/code/title-06/chapter-6/section-1501.md)
- [6 U.S.C. § 512](/legal/us/code/title-06/chapter-1/section-512.md)
- [6 U.S.C. § 575](/legal/us/code/title-06/chapter-1/section-575.md)
- [7 U.S.C. § 136a](/legal/us/code/title-07/chapter-6/section-136a.md)
- [7 U.S.C. § 16](/legal/us/code/title-07/chapter-1/section-16.md)
- [7 U.S.C. § 178](/legal/us/code/title-07/chapter-8a/section-178.md)
- [7 U.S.C. § 178b](/legal/us/code/title-07/chapter-8a/section-178b.md)
- [7 U.S.C. § 1926c](/legal/us/code/title-07/chapter-50/section-1926c.md)
- [7 U.S.C. § 2009aa4](/legal/us/code/title-07/chapter-50/section-2009aa-4.md)
- [7 U.S.C. § 2009bb4](/legal/us/code/title-07/chapter-50/section-2009bb-4.md)
- [7 U.S.C. § 2020](/legal/us/code/title-07/chapter-51/section-2020.md)
- …and 395 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,50 @@
---
type: Body
title: "Secretary of Commerce"
classification: "executive-office"
chamber: "executive"
code: "EXEC-COMMERCE-SECRETARY"
parent: "us/executive/commerce"
schedule_level: "I"
sources:
- field: definition
source: "5 U.S.C. § 5312 (Executive Schedule, Level I)"
confidence: official
tags: [body, executive, executive-office]
timestamp: "2026-07-03"
---
# Secretary of Commerce
Cabinet-rank office (Executive Schedule Level I, 5 U.S.C. § 5312), head of the [Department of Commerce](/us/executive/commerce/index.md).
## Empowered by the U.S. Code
843 sections of the U.S. Code vest authority in this office. A sample:
- [3 U.S.C. § 19](/legal/us/code/title-03/chapter-1/section-19.md)
- [5 U.S.C. § 13101](/legal/us/code/title-05/chapter-131/section-13101.md)
- [5 U.S.C. § 2902](/legal/us/code/title-05/chapter-29/section-2902.md)
- [5 U.S.C. § 5312](/legal/us/code/title-05/chapter-53/section-5312.md)
- [5 U.S.C. § 8332](/legal/us/code/title-05/chapter-83/section-8332.md)
- [5 U.S.C. § 8334](/legal/us/code/title-05/chapter-83/section-8334.md)
- [5 U.S.C. § 8422](/legal/us/code/title-05/chapter-84/section-8422.md)
- [5 U.S.C. § 8501](/legal/us/code/title-05/chapter-85/section-8501.md)
- [5 U.S.C. § 9001](/legal/us/code/title-05/chapter-90/section-9001.md)
- [6 U.S.C. § 121](/legal/us/code/title-06/chapter-1/section-121.md)
- [6 U.S.C. § 1532](/legal/us/code/title-06/chapter-6/section-1532.md)
- [6 U.S.C. § 194](/legal/us/code/title-06/chapter-1/section-194.md)
- [6 U.S.C. § 195f](/legal/us/code/title-06/chapter-1/section-195f.md)
- [6 U.S.C. § 322](/legal/us/code/title-06/chapter-1/section-322.md)
- [6 U.S.C. § 573](/legal/us/code/title-06/chapter-1/section-573.md)
- [6 U.S.C. § 576](/legal/us/code/title-06/chapter-1/section-576.md)
- [6 U.S.C. § 580](/legal/us/code/title-06/chapter-1/section-580.md)
- [6 U.S.C. § 771](/legal/us/code/title-06/chapter-2/section-771.md)
- [6 U.S.C. § 822](/legal/us/code/title-06/chapter-2/section-822.md)
- [7 U.S.C. § 1292](/legal/us/code/title-07/chapter-35/section-1292.md)
- [7 U.S.C. § 178a](/legal/us/code/title-07/chapter-8a/section-178a.md)
- [7 U.S.C. § 178b](/legal/us/code/title-07/chapter-8a/section-178b.md)
- [7 U.S.C. § 178d](/legal/us/code/title-07/chapter-8a/section-178d.md)
- [7 U.S.C. § 178h](/legal/us/code/title-07/chapter-8a/section-178h.md)
- [7 U.S.C. § 2009bb12](/legal/us/code/title-07/chapter-50/section-2009bb-12.md)
- …and 818 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,49 @@
---
type: Body
title: "Department of Defense"
classification: "executive-department"
chamber: "executive"
code: "EXEC-DEFENSE"
head: "us/executive/defense/secretary"
sources:
- field: definition
source: "5 U.S.C. § 101 (Executive departments)"
confidence: official
tags: [body, executive, executive-department]
timestamp: "2026-07-03"
---
# Department of Defense
Executive department, established by 5 U.S.C. § 101. Headed by the [Secretary of Defense](/us/executive/defense/secretary.md).
## Referenced by the U.S. Code
1,718 sections of the U.S. Code reference this department. A sample:
- [1 U.S.C. § 112b](/legal/us/code/title-01/chapter-2/section-112b.md)
- [2 U.S.C. § 1970](/legal/us/code/title-02/chapter-29/section-1970.md)
- [2 U.S.C. § 4726](/legal/us/code/title-02/chapter-47/section-4726.md)
- [2 U.S.C. § 900](/legal/us/code/title-02/chapter-20/section-900.md)
- [2 U.S.C. § 905](/legal/us/code/title-02/chapter-20/section-905.md)
- [5 U.S.C. § 101](/legal/us/code/title-05/chapter-1/section-101.md)
- [5 U.S.C. § 2109](/legal/us/code/title-05/chapter-21/section-2109.md)
- [5 U.S.C. § 303](/legal/us/code/title-05/chapter-3/section-303.md)
- [5 U.S.C. § 305](/legal/us/code/title-05/chapter-3/section-305.md)
- [5 U.S.C. § 3115](/legal/us/code/title-05/chapter-31/section-3115.md)
- [5 U.S.C. § 3116](/legal/us/code/title-05/chapter-31/section-3116.md)
- [5 U.S.C. § 3132](/legal/us/code/title-05/chapter-31/section-3132.md)
- [5 U.S.C. § 3133](/legal/us/code/title-05/chapter-31/section-3133.md)
- [5 U.S.C. § 3301](/legal/us/code/title-05/chapter-33/section-3301.md)
- [5 U.S.C. § 3304](/legal/us/code/title-05/chapter-33/section-3304.md)
- [5 U.S.C. § 3307](/legal/us/code/title-05/chapter-33/section-3307.md)
- [5 U.S.C. § 3326](/legal/us/code/title-05/chapter-33/section-3326.md)
- [5 U.S.C. § 3327](/legal/us/code/title-05/chapter-33/section-3327.md)
- [5 U.S.C. § 3329](/legal/us/code/title-05/chapter-33/section-3329.md)
- [5 U.S.C. § 3330d](/legal/us/code/title-05/chapter-33/section-3330d.md)
- [5 U.S.C. § 3330g](/legal/us/code/title-05/chapter-33/section-3330g.md)
- [5 U.S.C. § 3341](/legal/us/code/title-05/chapter-33/section-3341.md)
- [5 U.S.C. § 3361](/legal/us/code/title-05/chapter-33/section-3361.md)
- [5 U.S.C. § 3401](/legal/us/code/title-05/chapter-34/section-3401.md)
- [5 U.S.C. § 3502](/legal/us/code/title-05/chapter-35/section-3502.md)
- …and 1,693 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,50 @@
---
type: Body
title: "Secretary of Defense"
classification: "executive-office"
chamber: "executive"
code: "EXEC-DEFENSE-SECRETARY"
parent: "us/executive/defense"
schedule_level: "I"
sources:
- field: definition
source: "5 U.S.C. § 5312 (Executive Schedule, Level I)"
confidence: official
tags: [body, executive, executive-office]
timestamp: "2026-07-03"
---
# Secretary of Defense
Cabinet-rank office (Executive Schedule Level I, 5 U.S.C. § 5312), head of the [Department of Defense](/us/executive/defense/index.md).
## Empowered by the U.S. Code
2,378 sections of the U.S. Code vest authority in this office. A sample:
- [3 U.S.C. § 19](/legal/us/code/title-03/chapter-1/section-19.md)
- [5 U.S.C. § 13103](/legal/us/code/title-05/chapter-131/section-13103.md)
- [5 U.S.C. § 2109](/legal/us/code/title-05/chapter-21/section-2109.md)
- [5 U.S.C. § 2902](/legal/us/code/title-05/chapter-29/section-2902.md)
- [5 U.S.C. § 3115](/legal/us/code/title-05/chapter-31/section-3115.md)
- [5 U.S.C. § 3116](/legal/us/code/title-05/chapter-31/section-3116.md)
- [5 U.S.C. § 3132](/legal/us/code/title-05/chapter-31/section-3132.md)
- [5 U.S.C. § 3307](/legal/us/code/title-05/chapter-33/section-3307.md)
- [5 U.S.C. § 3329](/legal/us/code/title-05/chapter-33/section-3329.md)
- [5 U.S.C. § 3502](/legal/us/code/title-05/chapter-35/section-3502.md)
- [5 U.S.C. § 408](/legal/us/code/title-05/chapter-4/section-408.md)
- [5 U.S.C. § 4109](/legal/us/code/title-05/chapter-41/section-4109.md)
- [5 U.S.C. § 415](/legal/us/code/title-05/chapter-4/section-415.md)
- [5 U.S.C. § 416](/legal/us/code/title-05/chapter-4/section-416.md)
- [5 U.S.C. § 4502](/legal/us/code/title-05/chapter-45/section-4502.md)
- [5 U.S.C. § 5312](/legal/us/code/title-05/chapter-53/section-5312.md)
- [5 U.S.C. § 5334](/legal/us/code/title-05/chapter-53/section-5334.md)
- [5 U.S.C. § 5347](/legal/us/code/title-05/chapter-53/section-5347.md)
- [5 U.S.C. § 5373](/legal/us/code/title-05/chapter-53/section-5373.md)
- [5 U.S.C. § 5518](/legal/us/code/title-05/chapter-55/section-5518.md)
- [5 U.S.C. § 5520a](/legal/us/code/title-05/chapter-55/section-5520a.md)
- [5 U.S.C. § 5538](/legal/us/code/title-05/chapter-55/section-5538.md)
- [5 U.S.C. § 5543](/legal/us/code/title-05/chapter-55/section-5543.md)
- [5 U.S.C. § 5546a](/legal/us/code/title-05/chapter-55/section-5546a.md)
- [5 U.S.C. § 5595](/legal/us/code/title-05/chapter-55/section-5595.md)
- …and 2,353 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,50 @@
---
type: Body
title: "Director of National Intelligence"
classification: "executive-office"
chamber: "executive"
code: "EXEC-DIRECTOR-OF-NATIONAL-INTELLIGENCE-DIRECTOR"
parent: "us/executive/director-of-national-intelligence"
schedule_level: "I"
sources:
- field: definition
source: "5 U.S.C. § 5312 (Executive Schedule, Level I)"
confidence: official
tags: [body, executive, executive-office]
timestamp: "2026-07-03"
---
# Director of National Intelligence
Cabinet-rank office (Executive Schedule Level I, 5 U.S.C. § 5312), head of the [Office of the Director of National Intelligence](/us/executive/director-of-national-intelligence/index.md).
## Empowered by the U.S. Code
347 sections of the U.S. Code vest authority in this office. A sample:
- [2 U.S.C. § 4111](/legal/us/code/title-02/chapter-41/section-4111.md)
- [5 U.S.C. § 1003](/legal/us/code/title-05/chapter-10/section-1003.md)
- [5 U.S.C. § 11001](/legal/us/code/title-05/chapter-110/section-11001.md)
- [5 U.S.C. § 13107](/legal/us/code/title-05/chapter-131/section-13107.md)
- [5 U.S.C. § 2302](/legal/us/code/title-05/chapter-23/section-2302.md)
- [5 U.S.C. § 3132](/legal/us/code/title-05/chapter-31/section-3132.md)
- [5 U.S.C. § 415](/legal/us/code/title-05/chapter-4/section-415.md)
- [5 U.S.C. § 416](/legal/us/code/title-05/chapter-4/section-416.md)
- [5 U.S.C. § 5102](/legal/us/code/title-05/chapter-51/section-5102.md)
- [5 U.S.C. § 5312](/legal/us/code/title-05/chapter-53/section-5312.md)
- [5 U.S.C. § 5315](/legal/us/code/title-05/chapter-53/section-5315.md)
- [5 U.S.C. § 7323](/legal/us/code/title-05/chapter-73/section-7323.md)
- [5 U.S.C. § 7342](/legal/us/code/title-05/chapter-73/section-7342.md)
- [5 U.S.C. § 9101](/legal/us/code/title-05/chapter-91/section-9101.md)
- [6 U.S.C. § 101](/legal/us/code/title-06/chapter-1/section-101.md)
- [6 U.S.C. § 106](/legal/us/code/title-06/chapter-1/section-106.md)
- [6 U.S.C. § 121](/legal/us/code/title-06/chapter-1/section-121.md)
- [6 U.S.C. § 122](/legal/us/code/title-06/chapter-1/section-122.md)
- [6 U.S.C. § 124c](/legal/us/code/title-06/chapter-1/section-124c.md)
- [6 U.S.C. § 124d](/legal/us/code/title-06/chapter-1/section-124d.md)
- [6 U.S.C. § 124f](/legal/us/code/title-06/chapter-1/section-124f.md)
- [6 U.S.C. § 124k](/legal/us/code/title-06/chapter-1/section-124k.md)
- [6 U.S.C. § 1500](/legal/us/code/title-06/chapter-6/section-1500.md)
- [6 U.S.C. § 1501](/legal/us/code/title-06/chapter-6/section-1501.md)
- [6 U.S.C. § 1502](/legal/us/code/title-06/chapter-6/section-1502.md)
- …and 322 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,49 @@
---
type: Body
title: "Office of the Director of National Intelligence"
classification: "executive-agency"
chamber: "executive"
code: "EXEC-DIRECTOR-OF-NATIONAL-INTELLIGENCE"
head: "us/executive/director-of-national-intelligence/director"
sources:
- field: definition
source: "5 U.S.C. § 5312 (Executive Schedule, Level I)"
confidence: official
tags: [body, executive, executive-agency]
timestamp: "2026-07-03"
---
# Office of the Director of National Intelligence
Executive agency. Its head, the [Director of National Intelligence](/us/executive/director-of-national-intelligence/director.md), is a Level I position in the Executive Schedule (5 U.S.C. § 5312).
## Referenced by the U.S. Code
67 sections of the U.S. Code reference this agency. A sample:
- [5 U.S.C. § 1003](/legal/us/code/title-05/chapter-10/section-1003.md)
- [5 U.S.C. § 13107](/legal/us/code/title-05/chapter-131/section-13107.md)
- [5 U.S.C. § 2302](/legal/us/code/title-05/chapter-23/section-2302.md)
- [5 U.S.C. § 3132](/legal/us/code/title-05/chapter-31/section-3132.md)
- [5 U.S.C. § 5102](/legal/us/code/title-05/chapter-51/section-5102.md)
- [5 U.S.C. § 5315](/legal/us/code/title-05/chapter-53/section-5315.md)
- [5 U.S.C. § 7323](/legal/us/code/title-05/chapter-73/section-7323.md)
- [5 U.S.C. § 9101](/legal/us/code/title-05/chapter-91/section-9101.md)
- [6 U.S.C. § 124k](/legal/us/code/title-06/chapter-1/section-124k.md)
- [6 U.S.C. § 1501](/legal/us/code/title-06/chapter-6/section-1501.md)
- [6 U.S.C. § 592a](/legal/us/code/title-06/chapter-1/section-592a.md)
- [6 U.S.C. § 665b](/legal/us/code/title-06/chapter-1/section-665b.md)
- [10 U.S.C. § 528](/legal/us/code/title-10/chapter-32/section-528.md)
- [15 U.S.C. § 4653](/legal/us/code/title-15/chapter-72a/section-4653.md)
- [15 U.S.C. § 8813](/legal/us/code/title-15/chapter-114/section-8813.md)
- [15 U.S.C. § 8814a](/legal/us/code/title-15/chapter-114/section-8814a.md)
- [22 U.S.C. § 1741b](/legal/us/code/title-22/chapter-23/section-1741b.md)
- [22 U.S.C. § 1741c](/legal/us/code/title-22/chapter-23/section-1741c.md)
- [26 U.S.C. § 121](/legal/us/code/title-26/chapter-1/section-121.md)
- [40 U.S.C. § 113](/legal/us/code/title-40/chapter-1/section-113.md)
- [41 U.S.C. § 1322](/legal/us/code/title-41/chapter-13/section-1322.md)
- [41 U.S.C. § 1323](/legal/us/code/title-41/chapter-13/section-1323.md)
- [42 U.S.C. § 283r](/legal/us/code/title-42/chapter-6a/section-283r.md)
- [47 U.S.C. § 1608](/legal/us/code/title-47/chapter-15/section-1608.md)
- [47 U.S.C. § 906](/legal/us/code/title-47/chapter-8/section-906.md)
- …and 42 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,49 @@
---
type: Body
title: "Department of Education"
classification: "executive-department"
chamber: "executive"
code: "EXEC-EDUCATION"
head: "us/executive/education/secretary"
sources:
- field: definition
source: "5 U.S.C. § 101 (Executive departments)"
confidence: official
tags: [body, executive, executive-department]
timestamp: "2026-07-03"
---
# Department of Education
Executive department, established by 5 U.S.C. § 101. Headed by the [Secretary of Education](/us/executive/education/secretary.md).
## Referenced by the U.S. Code
169 sections of the U.S. Code reference this department. A sample:
- [5 U.S.C. § 101](/legal/us/code/title-05/chapter-1/section-101.md)
- [5 U.S.C. § 406](/legal/us/code/title-05/chapter-4/section-406.md)
- [5 U.S.C. § 422](/legal/us/code/title-05/chapter-4/section-422.md)
- [5 U.S.C. § 5315](/legal/us/code/title-05/chapter-53/section-5315.md)
- [7 U.S.C. § 2204b3](/legal/us/code/title-07/chapter-55/section-2204b-3.md)
- [7 U.S.C. § 3151b](/legal/us/code/title-07/chapter-64/section-3151b.md)
- [10 U.S.C. § 2006a](/legal/us/code/title-10/chapter-101/section-2006a.md)
- [10 U.S.C. § 2031](/legal/us/code/title-10/chapter-102/section-2031.md)
- [10 U.S.C. § 2163](/legal/us/code/title-10/chapter-108/section-2163.md)
- [10 U.S.C. § 7414](/legal/us/code/title-10/chapter-751/section-7414.md)
- [10 U.S.C. § 7421](/legal/us/code/title-10/chapter-751/section-7421.md)
- [10 U.S.C. § 7422](/legal/us/code/title-10/chapter-751/section-7422.md)
- [10 U.S.C. § 8548](/legal/us/code/title-10/chapter-855/section-8548.md)
- [10 U.S.C. § 8591](/legal/us/code/title-10/chapter-859/section-8591.md)
- [10 U.S.C. § 8592](/legal/us/code/title-10/chapter-859/section-8592.md)
- [10 U.S.C. § 8595](/legal/us/code/title-10/chapter-859/section-8595.md)
- [10 U.S.C. § 9414](/legal/us/code/title-10/chapter-951/section-9414.md)
- [10 U.S.C. § 9417](/legal/us/code/title-10/chapter-951/section-9417.md)
- [10 U.S.C. § 983](/legal/us/code/title-10/chapter-49/section-983.md)
- [12 U.S.C. § 1717](/legal/us/code/title-12/chapter-13/section-1717.md)
- [12 U.S.C. § 5535](/legal/us/code/title-12/chapter-53/section-5535.md)
- [15 U.S.C. § 1341](/legal/us/code/title-15/chapter-36/section-1341.md)
- [15 U.S.C. § 1638](/legal/us/code/title-15/chapter-41/section-1638.md)
- [15 U.S.C. § 278s](/legal/us/code/title-15/chapter-7/section-278s.md)
- [15 U.S.C. § 3718](/legal/us/code/title-15/chapter-63/section-3718.md)
- …and 144 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,50 @@
---
type: Body
title: "Secretary of Education"
classification: "executive-office"
chamber: "executive"
code: "EXEC-EDUCATION-SECRETARY"
parent: "us/executive/education"
schedule_level: "I"
sources:
- field: definition
source: "5 U.S.C. § 5312 (Executive Schedule, Level I)"
confidence: official
tags: [body, executive, executive-office]
timestamp: "2026-07-03"
---
# Secretary of Education
Cabinet-rank office (Executive Schedule Level I, 5 U.S.C. § 5312), head of the [Department of Education](/us/executive/education/index.md).
## Empowered by the U.S. Code
289 sections of the U.S. Code vest authority in this office. A sample:
- [3 U.S.C. § 19](/legal/us/code/title-03/chapter-1/section-19.md)
- [5 U.S.C. § 5312](/legal/us/code/title-05/chapter-53/section-5312.md)
- [6 U.S.C. § 665k](/legal/us/code/title-06/chapter-1/section-665k.md)
- [7 U.S.C. § 3152](/legal/us/code/title-07/chapter-64/section-3152.md)
- [7 U.S.C. § 3362](/legal/us/code/title-07/chapter-64/section-3362.md)
- [8 U.S.C. § 1101](/legal/us/code/title-08/chapter-12/section-1101.md)
- [8 U.S.C. § 1182](/legal/us/code/title-08/chapter-12/section-1182.md)
- [8 U.S.C. § 1372](/legal/us/code/title-08/chapter-12/section-1372.md)
- [8 U.S.C. § 1522](/legal/us/code/title-08/chapter-12/section-1522.md)
- [8 U.S.C. § 1762](/legal/us/code/title-08/chapter-15/section-1762.md)
- [10 U.S.C. § 1154](/legal/us/code/title-10/chapter-58/section-1154.md)
- [10 U.S.C. § 1598](/legal/us/code/title-10/chapter-81/section-1598.md)
- [10 U.S.C. § 2036](/legal/us/code/title-10/chapter-102/section-2036.md)
- [10 U.S.C. § 2143](/legal/us/code/title-10/chapter-106a/section-2143.md)
- [10 U.S.C. § 2163](/legal/us/code/title-10/chapter-108/section-2163.md)
- [10 U.S.C. § 2174](/legal/us/code/title-10/chapter-109/section-2174.md)
- [10 U.S.C. § 2192](/legal/us/code/title-10/chapter-111/section-2192.md)
- [10 U.S.C. § 2192b](/legal/us/code/title-10/chapter-111/section-2192b.md)
- [10 U.S.C. § 2193a](/legal/us/code/title-10/chapter-111/section-2193a.md)
- [10 U.S.C. § 4703](/legal/us/code/title-10/chapter-365/section-4703.md)
- [10 U.S.C. § 4843](/legal/us/code/title-10/chapter-384/section-4843.md)
- [10 U.S.C. § 4844](/legal/us/code/title-10/chapter-384/section-4844.md)
- [10 U.S.C. § 503](/legal/us/code/title-10/chapter-31/section-503.md)
- [10 U.S.C. § 7414](/legal/us/code/title-10/chapter-751/section-7414.md)
- [10 U.S.C. § 7421](/legal/us/code/title-10/chapter-751/section-7421.md)
- …and 264 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,49 @@
---
type: Body
title: "Department of Energy"
classification: "executive-department"
chamber: "executive"
code: "EXEC-ENERGY"
head: "us/executive/energy/secretary"
sources:
- field: definition
source: "5 U.S.C. § 101 (Executive departments)"
confidence: official
tags: [body, executive, executive-department]
timestamp: "2026-07-03"
---
# Department of Energy
Executive department, established by 5 U.S.C. § 101. Headed by the [Secretary of Energy](/us/executive/energy/secretary.md).
## Referenced by the U.S. Code
569 sections of the U.S. Code reference this department. A sample:
- [2 U.S.C. § 2162](/legal/us/code/title-02/chapter-30/section-2162.md)
- [5 U.S.C. § 101](/legal/us/code/title-05/chapter-1/section-101.md)
- [5 U.S.C. § 406](/legal/us/code/title-05/chapter-4/section-406.md)
- [5 U.S.C. § 421](/legal/us/code/title-05/chapter-4/section-421.md)
- [5 U.S.C. § 422](/legal/us/code/title-05/chapter-4/section-422.md)
- [5 U.S.C. § 5315](/legal/us/code/title-05/chapter-53/section-5315.md)
- [5 U.S.C. § 5316](/legal/us/code/title-05/chapter-53/section-5316.md)
- [5 U.S.C. § 5595](/legal/us/code/title-05/chapter-55/section-5595.md)
- [5 U.S.C. § 8331](/legal/us/code/title-05/chapter-83/section-8331.md)
- [5 U.S.C. § 8905a](/legal/us/code/title-05/chapter-89/section-8905a.md)
- [6 U.S.C. § 121](/legal/us/code/title-06/chapter-1/section-121.md)
- [6 U.S.C. § 124k](/legal/us/code/title-06/chapter-1/section-124k.md)
- [6 U.S.C. § 1501](/legal/us/code/title-06/chapter-6/section-1501.md)
- [6 U.S.C. § 182](/legal/us/code/title-06/chapter-1/section-182.md)
- [6 U.S.C. § 183](/legal/us/code/title-06/chapter-1/section-183.md)
- [6 U.S.C. § 186](/legal/us/code/title-06/chapter-1/section-186.md)
- [6 U.S.C. § 189](/legal/us/code/title-06/chapter-1/section-189.md)
- [6 U.S.C. § 195c](/legal/us/code/title-06/chapter-1/section-195c.md)
- [6 U.S.C. § 195f](/legal/us/code/title-06/chapter-1/section-195f.md)
- [6 U.S.C. § 312](/legal/us/code/title-06/chapter-1/section-312.md)
- [6 U.S.C. § 314](/legal/us/code/title-06/chapter-1/section-314.md)
- [6 U.S.C. § 592a](/legal/us/code/title-06/chapter-1/section-592a.md)
- [6 U.S.C. § 665n](/legal/us/code/title-06/chapter-1/section-665n.md)
- [6 U.S.C. § 945](/legal/us/code/title-06/chapter-3/section-945.md)
- [6 U.S.C. § 981](/legal/us/code/title-06/chapter-3/section-981.md)
- …and 544 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,50 @@
---
type: Body
title: "Secretary of Energy"
classification: "executive-office"
chamber: "executive"
code: "EXEC-ENERGY-SECRETARY"
parent: "us/executive/energy"
schedule_level: "I"
sources:
- field: definition
source: "5 U.S.C. § 5312 (Executive Schedule, Level I)"
confidence: official
tags: [body, executive, executive-office]
timestamp: "2026-07-03"
---
# Secretary of Energy
Cabinet-rank office (Executive Schedule Level I, 5 U.S.C. § 5312), head of the [Department of Energy](/us/executive/energy/index.md).
## Empowered by the U.S. Code
657 sections of the U.S. Code vest authority in this office. A sample:
- [3 U.S.C. § 19](/legal/us/code/title-03/chapter-1/section-19.md)
- [5 U.S.C. § 3307](/legal/us/code/title-05/chapter-33/section-3307.md)
- [5 U.S.C. § 421](/legal/us/code/title-05/chapter-4/section-421.md)
- [5 U.S.C. § 5312](/legal/us/code/title-05/chapter-53/section-5312.md)
- [5 U.S.C. § 5595](/legal/us/code/title-05/chapter-55/section-5595.md)
- [6 U.S.C. § 121](/legal/us/code/title-06/chapter-1/section-121.md)
- [6 U.S.C. § 183](/legal/us/code/title-06/chapter-1/section-183.md)
- [6 U.S.C. § 189](/legal/us/code/title-06/chapter-1/section-189.md)
- [6 U.S.C. § 195f](/legal/us/code/title-06/chapter-1/section-195f.md)
- [6 U.S.C. § 321f](/legal/us/code/title-06/chapter-1/section-321f.md)
- [6 U.S.C. § 322](/legal/us/code/title-06/chapter-1/section-322.md)
- [6 U.S.C. § 347](/legal/us/code/title-06/chapter-1/section-347.md)
- [6 U.S.C. § 591](/legal/us/code/title-06/chapter-1/section-591.md)
- [6 U.S.C. § 592](/legal/us/code/title-06/chapter-1/section-592.md)
- [6 U.S.C. § 592a](/legal/us/code/title-06/chapter-1/section-592a.md)
- [6 U.S.C. § 596a](/legal/us/code/title-06/chapter-1/section-596a.md)
- [6 U.S.C. § 822](/legal/us/code/title-06/chapter-2/section-822.md)
- [6 U.S.C. § 944](/legal/us/code/title-06/chapter-3/section-944.md)
- [6 U.S.C. § 945](/legal/us/code/title-06/chapter-3/section-945.md)
- [6 U.S.C. § 981](/legal/us/code/title-06/chapter-3/section-981.md)
- [6 U.S.C. § 981a](/legal/us/code/title-06/chapter-3/section-981a.md)
- [6 U.S.C. § 983](/legal/us/code/title-06/chapter-3/section-983.md)
- [7 U.S.C. § 2209k](/legal/us/code/title-07/chapter-55/section-2209k.md)
- [7 U.S.C. § 5843](/legal/us/code/title-07/chapter-88/section-5843.md)
- [7 U.S.C. § 8103](/legal/us/code/title-07/chapter-107/section-8103.md)
- …and 632 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,25 @@
---
type: Body
title: "Chairman of the Board of Governors of the Federal Reserve System"
classification: "executive-office"
chamber: "executive"
code: "EXEC-FEDERAL-RESERVE-CHAIRMAN"
parent: "us/executive/federal-reserve"
schedule_level: "I"
sources:
- field: definition
source: "5 U.S.C. § 5312 (Executive Schedule, Level I)"
confidence: official
tags: [body, executive, executive-office]
timestamp: "2026-07-03"
---
# Chairman of the Board of Governors of the Federal Reserve System
Cabinet-rank office (Executive Schedule Level I, 5 U.S.C. § 5312), head of the [Board of Governors of the Federal Reserve System](/us/executive/federal-reserve/index.md).
## Empowered by the U.S. Code
1 sections of the U.S. Code vest authority in this office.
- [5 U.S.C. § 5312](/legal/us/code/title-05/chapter-53/section-5312.md)
@@ -0,0 +1,49 @@
---
type: Body
title: "Board of Governors of the Federal Reserve System"
classification: "executive-agency"
chamber: "executive"
code: "EXEC-FEDERAL-RESERVE"
head: "us/executive/federal-reserve/chairman"
sources:
- field: definition
source: "5 U.S.C. § 5312 (Executive Schedule, Level I)"
confidence: official
tags: [body, executive, executive-agency]
timestamp: "2026-07-03"
---
# Board of Governors of the Federal Reserve System
Executive agency. Its head, the [Chairman of the Board of Governors of the Federal Reserve System](/us/executive/federal-reserve/chairman.md), is a Level I position in the Executive Schedule (5 U.S.C. § 5312).
## Referenced by the U.S. Code
304 sections of the U.S. Code reference this agency. A sample:
- [5 U.S.C. § 415](/legal/us/code/title-05/chapter-4/section-415.md)
- [5 U.S.C. § 5312](/legal/us/code/title-05/chapter-53/section-5312.md)
- [5 U.S.C. § 5313](/legal/us/code/title-05/chapter-53/section-5313.md)
- [5 U.S.C. § 807](/legal/us/code/title-05/chapter-8/section-807.md)
- [5 U.S.C. § 8402](/legal/us/code/title-05/chapter-84/section-8402.md)
- [5 U.S.C. § 8411](/legal/us/code/title-05/chapter-84/section-8411.md)
- [7 U.S.C. § 1a](/legal/us/code/title-07/chapter-1/section-1a.md)
- [7 U.S.C. § 2](/legal/us/code/title-07/chapter-1/section-2.md)
- [7 U.S.C. § 2016](/legal/us/code/title-07/chapter-51/section-2016.md)
- [7 U.S.C. § 27d](/legal/us/code/title-07/chapter-1/section-27d.md)
- [10 U.S.C. § 987](/legal/us/code/title-10/chapter-49/section-987.md)
- [11 U.S.C. § 109](/legal/us/code/title-11/chapter-1/section-109.md)
- [11 U.S.C. § 781](/legal/us/code/title-11/chapter-7/section-781.md)
- [12 U.S.C. § 122a](/legal/us/code/title-12/chapter-2/section-122a.md)
- [12 U.S.C. § 144](/legal/us/code/title-12/chapter-2/section-144.md)
- [12 U.S.C. § 1462](/legal/us/code/title-12/chapter-12/section-1462.md)
- [12 U.S.C. § 1701p1](/legal/us/code/title-12/chapter-13/section-1701p-1.md)
- [12 U.S.C. § 1708](/legal/us/code/title-12/chapter-13/section-1708.md)
- [12 U.S.C. § 1715z20](/legal/us/code/title-12/chapter-13/section-1715z-20.md)
- [12 U.S.C. § 1715z23](/legal/us/code/title-12/chapter-13/section-1715z-23.md)
- [12 U.S.C. § 1783](/legal/us/code/title-12/chapter-14/section-1783.md)
- [12 U.S.C. § 1795j](/legal/us/code/title-12/chapter-14/section-1795j.md)
- [12 U.S.C. § 1813](/legal/us/code/title-12/chapter-16/section-1813.md)
- [12 U.S.C. § 1817](/legal/us/code/title-12/chapter-16/section-1817.md)
- [12 U.S.C. § 1818](/legal/us/code/title-12/chapter-16/section-1818.md)
- …and 279 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,49 @@
---
type: Body
title: "Department of Health and Human Services"
classification: "executive-department"
chamber: "executive"
code: "EXEC-HEALTH-AND-HUMAN-SERVICES"
head: "us/executive/health-and-human-services/secretary"
sources:
- field: definition
source: "5 U.S.C. § 101 (Executive departments)"
confidence: official
tags: [body, executive, executive-department]
timestamp: "2026-07-03"
---
# Department of Health and Human Services
Executive department, established by 5 U.S.C. § 101. Headed by the [Secretary of Health and Human Services](/us/executive/health-and-human-services/secretary.md).
## Referenced by the U.S. Code
531 sections of the U.S. Code reference this department. A sample:
- [2 U.S.C. § 901](/legal/us/code/title-02/chapter-20/section-901.md)
- [5 U.S.C. § 101](/legal/us/code/title-05/chapter-1/section-101.md)
- [5 U.S.C. § 406](/legal/us/code/title-05/chapter-4/section-406.md)
- [5 U.S.C. § 422](/legal/us/code/title-05/chapter-4/section-422.md)
- [5 U.S.C. § 5315](/legal/us/code/title-05/chapter-53/section-5315.md)
- [5 U.S.C. § 5316](/legal/us/code/title-05/chapter-53/section-5316.md)
- [5 U.S.C. § 552a](/legal/us/code/title-05/chapter-5/section-552a.md)
- [5 U.S.C. § 8903c](/legal/us/code/title-05/chapter-89/section-8903c.md)
- [5 U.S.C. § 8910](/legal/us/code/title-05/chapter-89/section-8910.md)
- [6 U.S.C. § 1533](/legal/us/code/title-06/chapter-6/section-1533.md)
- [6 U.S.C. § 184](/legal/us/code/title-06/chapter-1/section-184.md)
- [6 U.S.C. § 195c](/legal/us/code/title-06/chapter-1/section-195c.md)
- [6 U.S.C. § 223](/legal/us/code/title-06/chapter-1/section-223.md)
- [6 U.S.C. § 235](/legal/us/code/title-06/chapter-1/section-235.md)
- [6 U.S.C. § 238](/legal/us/code/title-06/chapter-1/section-238.md)
- [6 U.S.C. § 279](/legal/us/code/title-06/chapter-1/section-279.md)
- [6 U.S.C. § 321g](/legal/us/code/title-06/chapter-1/section-321g.md)
- [6 U.S.C. § 321r](/legal/us/code/title-06/chapter-1/section-321r.md)
- [6 U.S.C. § 350](/legal/us/code/title-06/chapter-1/section-350.md)
- [6 U.S.C. § 467](/legal/us/code/title-06/chapter-1/section-467.md)
- [6 U.S.C. § 597](/legal/us/code/title-06/chapter-1/section-597.md)
- [6 U.S.C. § 772](/legal/us/code/title-06/chapter-2/section-772.md)
- [6 U.S.C. § 775](/legal/us/code/title-06/chapter-2/section-775.md)
- [7 U.S.C. § 136](/legal/us/code/title-07/chapter-6/section-136.md)
- [7 U.S.C. § 1983b](/legal/us/code/title-07/chapter-50/section-1983b.md)
- …and 506 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,50 @@
---
type: Body
title: "Secretary of Health and Human Services"
classification: "executive-office"
chamber: "executive"
code: "EXEC-HEALTH-AND-HUMAN-SERVICES-SECRETARY"
parent: "us/executive/health-and-human-services"
schedule_level: "I"
sources:
- field: definition
source: "5 U.S.C. § 5312 (Executive Schedule, Level I)"
confidence: official
tags: [body, executive, executive-office]
timestamp: "2026-07-03"
---
# Secretary of Health and Human Services
Cabinet-rank office (Executive Schedule Level I, 5 U.S.C. § 5312), head of the [Department of Health and Human Services](/us/executive/health-and-human-services/index.md).
## Empowered by the U.S. Code
808 sections of the U.S. Code vest authority in this office. A sample:
- [2 U.S.C. § 906](/legal/us/code/title-02/chapter-20/section-906.md)
- [3 U.S.C. § 19](/legal/us/code/title-03/chapter-1/section-19.md)
- [5 U.S.C. § 13101](/legal/us/code/title-05/chapter-131/section-13101.md)
- [5 U.S.C. § 5312](/legal/us/code/title-05/chapter-53/section-5312.md)
- [5 U.S.C. § 552a](/legal/us/code/title-05/chapter-5/section-552a.md)
- [5 U.S.C. § 7361](/legal/us/code/title-05/chapter-73/section-7361.md)
- [5 U.S.C. § 7362](/legal/us/code/title-05/chapter-73/section-7362.md)
- [5 U.S.C. § 7904](/legal/us/code/title-05/chapter-79/section-7904.md)
- [5 U.S.C. § 8334](/legal/us/code/title-05/chapter-83/section-8334.md)
- [5 U.S.C. § 8422](/legal/us/code/title-05/chapter-84/section-8422.md)
- [5 U.S.C. § 8903c](/legal/us/code/title-05/chapter-89/section-8903c.md)
- [5 U.S.C. § 8904](/legal/us/code/title-05/chapter-89/section-8904.md)
- [5 U.S.C. § 9001](/legal/us/code/title-05/chapter-90/section-9001.md)
- [6 U.S.C. § 104](/legal/us/code/title-06/chapter-1/section-104.md)
- [6 U.S.C. § 105](/legal/us/code/title-06/chapter-1/section-105.md)
- [6 U.S.C. § 106](/legal/us/code/title-06/chapter-1/section-106.md)
- [6 U.S.C. § 1533](/legal/us/code/title-06/chapter-6/section-1533.md)
- [6 U.S.C. § 182](/legal/us/code/title-06/chapter-1/section-182.md)
- [6 U.S.C. § 184](/legal/us/code/title-06/chapter-1/section-184.md)
- [6 U.S.C. § 225](/legal/us/code/title-06/chapter-1/section-225.md)
- [6 U.S.C. § 235](/legal/us/code/title-06/chapter-1/section-235.md)
- [6 U.S.C. § 318](/legal/us/code/title-06/chapter-1/section-318.md)
- [6 U.S.C. § 320](/legal/us/code/title-06/chapter-1/section-320.md)
- [6 U.S.C. § 321g](/legal/us/code/title-06/chapter-1/section-321g.md)
- [6 U.S.C. § 321q](/legal/us/code/title-06/chapter-1/section-321q.md)
- …and 783 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,49 @@
---
type: Body
title: "Department of Homeland Security"
classification: "executive-department"
chamber: "executive"
code: "EXEC-HOMELAND-SECURITY"
head: "us/executive/homeland-security/secretary"
sources:
- field: definition
source: "5 U.S.C. § 101 (Executive departments)"
confidence: official
tags: [body, executive, executive-department]
timestamp: "2026-07-03"
---
# Department of Homeland Security
Executive department, established by 5 U.S.C. § 101. Headed by the [Secretary of Homeland Security](/us/executive/homeland-security/secretary.md).
## Referenced by the U.S. Code
314 sections of the U.S. Code reference this department. A sample:
- [2 U.S.C. § 900](/legal/us/code/title-02/chapter-20/section-900.md)
- [5 U.S.C. § 101](/legal/us/code/title-05/chapter-1/section-101.md)
- [5 U.S.C. § 10101](/legal/us/code/title-05/chapter-101/section-10101.md)
- [5 U.S.C. § 10201](/legal/us/code/title-05/chapter-102/section-10201.md)
- [5 U.S.C. § 406](/legal/us/code/title-05/chapter-4/section-406.md)
- [5 U.S.C. § 417](/legal/us/code/title-05/chapter-4/section-417.md)
- [5 U.S.C. § 5314](/legal/us/code/title-05/chapter-53/section-5314.md)
- [5 U.S.C. § 5315](/legal/us/code/title-05/chapter-53/section-5315.md)
- [5 U.S.C. § 6504](/legal/us/code/title-05/chapter-65/section-6504.md)
- [5 U.S.C. § 8331](/legal/us/code/title-05/chapter-83/section-8331.md)
- [5 U.S.C. § 8401](/legal/us/code/title-05/chapter-84/section-8401.md)
- [5 U.S.C. § 9101](/legal/us/code/title-05/chapter-91/section-9101.md)
- [5 U.S.C. § 9701](/legal/us/code/title-05/chapter-97/section-9701.md)
- [6 U.S.C. § 101](/legal/us/code/title-06/chapter-1/section-101.md)
- [6 U.S.C. § 103a](/legal/us/code/title-06/chapter-1/section-103a.md)
- [6 U.S.C. § 1101](/legal/us/code/title-06/chapter-4/section-1101.md)
- [6 U.S.C. § 1104](/legal/us/code/title-06/chapter-4/section-1104.md)
- [6 U.S.C. § 111](/legal/us/code/title-06/chapter-1/section-111.md)
- [6 U.S.C. § 1111](/legal/us/code/title-06/chapter-4/section-1111.md)
- [6 U.S.C. § 1113](/legal/us/code/title-06/chapter-4/section-1113.md)
- [6 U.S.C. § 1117](/legal/us/code/title-06/chapter-4/section-1117.md)
- [6 U.S.C. § 112](/legal/us/code/title-06/chapter-1/section-112.md)
- [6 U.S.C. § 1131](/legal/us/code/title-06/chapter-4/section-1131.md)
- [6 U.S.C. § 1135](/legal/us/code/title-06/chapter-4/section-1135.md)
- [6 U.S.C. § 1142](/legal/us/code/title-06/chapter-4/section-1142.md)
- …and 289 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,50 @@
---
type: Body
title: "Secretary of Homeland Security"
classification: "executive-office"
chamber: "executive"
code: "EXEC-HOMELAND-SECURITY-SECRETARY"
parent: "us/executive/homeland-security"
schedule_level: "I"
sources:
- field: definition
source: "5 U.S.C. § 5312 (Executive Schedule, Level I)"
confidence: official
tags: [body, executive, executive-office]
timestamp: "2026-07-03"
---
# Secretary of Homeland Security
Cabinet-rank office (Executive Schedule Level I, 5 U.S.C. § 5312), head of the [Department of Homeland Security](/us/executive/homeland-security/index.md).
## Empowered by the U.S. Code
597 sections of the U.S. Code vest authority in this office. A sample:
- [2 U.S.C. § 4111](/legal/us/code/title-02/chapter-41/section-4111.md)
- [3 U.S.C. § 19](/legal/us/code/title-03/chapter-1/section-19.md)
- [5 U.S.C. § 2902](/legal/us/code/title-05/chapter-29/section-2902.md)
- [5 U.S.C. § 3132](/legal/us/code/title-05/chapter-31/section-3132.md)
- [5 U.S.C. § 3307](/legal/us/code/title-05/chapter-33/section-3307.md)
- [5 U.S.C. § 417](/legal/us/code/title-05/chapter-4/section-417.md)
- [5 U.S.C. § 5312](/legal/us/code/title-05/chapter-53/section-5312.md)
- [5 U.S.C. § 5520a](/legal/us/code/title-05/chapter-55/section-5520a.md)
- [5 U.S.C. § 5595](/legal/us/code/title-05/chapter-55/section-5595.md)
- [5 U.S.C. § 6308](/legal/us/code/title-05/chapter-63/section-6308.md)
- [5 U.S.C. § 6324](/legal/us/code/title-05/chapter-63/section-6324.md)
- [5 U.S.C. § 9001](/legal/us/code/title-05/chapter-90/section-9001.md)
- [5 U.S.C. § 9701](/legal/us/code/title-05/chapter-97/section-9701.md)
- [6 U.S.C. § 101](/legal/us/code/title-06/chapter-1/section-101.md)
- [6 U.S.C. § 104](/legal/us/code/title-06/chapter-1/section-104.md)
- [6 U.S.C. § 106](/legal/us/code/title-06/chapter-1/section-106.md)
- [6 U.S.C. § 1101](/legal/us/code/title-06/chapter-4/section-1101.md)
- [6 U.S.C. § 1111](/legal/us/code/title-06/chapter-4/section-1111.md)
- [6 U.S.C. § 1116](/legal/us/code/title-06/chapter-4/section-1116.md)
- [6 U.S.C. § 1117](/legal/us/code/title-06/chapter-4/section-1117.md)
- [6 U.S.C. § 1119](/legal/us/code/title-06/chapter-4/section-1119.md)
- [6 U.S.C. § 112](/legal/us/code/title-06/chapter-1/section-112.md)
- [6 U.S.C. § 1131](/legal/us/code/title-06/chapter-4/section-1131.md)
- [6 U.S.C. § 1137a](/legal/us/code/title-06/chapter-4/section-1137a.md)
- [6 U.S.C. § 114](/legal/us/code/title-06/chapter-1/section-114.md)
- …and 572 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,49 @@
---
type: Body
title: "Department of Housing and Urban Development"
classification: "executive-department"
chamber: "executive"
code: "EXEC-HOUSING-AND-URBAN-DEVELOPMENT"
head: "us/executive/housing-and-urban-development/secretary"
sources:
- field: definition
source: "5 U.S.C. § 101 (Executive departments)"
confidence: official
tags: [body, executive, executive-department]
timestamp: "2026-07-03"
---
# Department of Housing and Urban Development
Executive department, established by 5 U.S.C. § 101. Headed by the [Secretary of Housing and Urban Development](/us/executive/housing-and-urban-development/secretary.md).
## Referenced by the U.S. Code
177 sections of the U.S. Code reference this department. A sample:
- [5 U.S.C. § 101](/legal/us/code/title-05/chapter-1/section-101.md)
- [5 U.S.C. § 406](/legal/us/code/title-05/chapter-4/section-406.md)
- [5 U.S.C. § 422](/legal/us/code/title-05/chapter-4/section-422.md)
- [5 U.S.C. § 5315](/legal/us/code/title-05/chapter-53/section-5315.md)
- [6 U.S.C. § 772](/legal/us/code/title-06/chapter-2/section-772.md)
- [7 U.S.C. § 1932](/legal/us/code/title-07/chapter-50/section-1932.md)
- [7 U.S.C. § 2204b3](/legal/us/code/title-07/chapter-55/section-2204b-3.md)
- [10 U.S.C. § 2824](/legal/us/code/title-10/chapter-169/section-2824.md)
- [12 U.S.C. § 1701d4](/legal/us/code/title-12/chapter-13/section-1701d-4.md)
- [12 U.S.C. § 1701g5](/legal/us/code/title-12/chapter-13/section-1701g-5.md)
- [12 U.S.C. § 1701g5b](/legal/us/code/title-12/chapter-13/section-1701g-5b.md)
- [12 U.S.C. § 1701n](/legal/us/code/title-12/chapter-13/section-1701n.md)
- [12 U.S.C. § 1701o](/legal/us/code/title-12/chapter-13/section-1701o.md)
- [12 U.S.C. § 1701p](/legal/us/code/title-12/chapter-13/section-1701p.md)
- [12 U.S.C. § 1701q](/legal/us/code/title-12/chapter-13/section-1701q.md)
- [12 U.S.C. § 1701r](/legal/us/code/title-12/chapter-13/section-1701r.md)
- [12 U.S.C. § 1701s](/legal/us/code/title-12/chapter-13/section-1701s.md)
- [12 U.S.C. § 1701v](/legal/us/code/title-12/chapter-13/section-1701v.md)
- [12 U.S.C. § 1701x](/legal/us/code/title-12/chapter-13/section-1701x.md)
- [12 U.S.C. § 1701x1](/legal/us/code/title-12/chapter-13/section-1701x-1.md)
- [12 U.S.C. § 1701y](/legal/us/code/title-12/chapter-13/section-1701y.md)
- [12 U.S.C. § 1701z15](/legal/us/code/title-12/chapter-13/section-1701z-15.md)
- [12 U.S.C. § 1701z2](/legal/us/code/title-12/chapter-13/section-1701z-2.md)
- [12 U.S.C. § 1702](/legal/us/code/title-12/chapter-13/section-1702.md)
- [12 U.S.C. § 1708](/legal/us/code/title-12/chapter-13/section-1708.md)
- …and 152 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,50 @@
---
type: Body
title: "Secretary of Housing and Urban Development"
classification: "executive-office"
chamber: "executive"
code: "EXEC-HOUSING-AND-URBAN-DEVELOPMENT-SECRETARY"
parent: "us/executive/housing-and-urban-development"
schedule_level: "I"
sources:
- field: definition
source: "5 U.S.C. § 5312 (Executive Schedule, Level I)"
confidence: official
tags: [body, executive, executive-office]
timestamp: "2026-07-03"
---
# Secretary of Housing and Urban Development
Cabinet-rank office (Executive Schedule Level I, 5 U.S.C. § 5312), head of the [Department of Housing and Urban Development](/us/executive/housing-and-urban-development/index.md).
## Empowered by the U.S. Code
378 sections of the U.S. Code vest authority in this office. A sample:
- [3 U.S.C. § 19](/legal/us/code/title-03/chapter-1/section-19.md)
- [5 U.S.C. § 5312](/legal/us/code/title-05/chapter-53/section-5312.md)
- [6 U.S.C. § 771](/legal/us/code/title-06/chapter-2/section-771.md)
- [7 U.S.C. § 1933](/legal/us/code/title-07/chapter-50/section-1933.md)
- [7 U.S.C. § 1981](/legal/us/code/title-07/chapter-50/section-1981.md)
- [8 U.S.C. § 1611](/legal/us/code/title-08/chapter-14/section-1611.md)
- [11 U.S.C. § 362](/legal/us/code/title-11/chapter-3/section-362.md)
- [12 U.S.C. § 1430](/legal/us/code/title-12/chapter-11/section-1430.md)
- [12 U.S.C. § 1441b](/legal/us/code/title-12/chapter-11/section-1441b.md)
- [12 U.S.C. § 1454](/legal/us/code/title-12/chapter-11a/section-1454.md)
- [12 U.S.C. § 1701c](/legal/us/code/title-12/chapter-13/section-1701c.md)
- [12 U.S.C. § 1701d4](/legal/us/code/title-12/chapter-13/section-1701d-4.md)
- [12 U.S.C. § 1701g5](/legal/us/code/title-12/chapter-13/section-1701g-5.md)
- [12 U.S.C. § 1701g5b](/legal/us/code/title-12/chapter-13/section-1701g-5b.md)
- [12 U.S.C. § 1701h](/legal/us/code/title-12/chapter-13/section-1701h.md)
- [12 U.S.C. § 1701h1](/legal/us/code/title-12/chapter-13/section-1701h-1.md)
- [12 U.S.C. § 1701j1](/legal/us/code/title-12/chapter-13/section-1701j-1.md)
- [12 U.S.C. § 1701j2](/legal/us/code/title-12/chapter-13/section-1701j-2.md)
- [12 U.S.C. § 1701l](/legal/us/code/title-12/chapter-13/section-1701l.md)
- [12 U.S.C. § 1701l1](/legal/us/code/title-12/chapter-13/section-1701l-1.md)
- [12 U.S.C. § 1701o](/legal/us/code/title-12/chapter-13/section-1701o.md)
- [12 U.S.C. § 1701p](/legal/us/code/title-12/chapter-13/section-1701p.md)
- [12 U.S.C. § 1701p1](/legal/us/code/title-12/chapter-13/section-1701p-1.md)
- [12 U.S.C. § 1701p2](/legal/us/code/title-12/chapter-13/section-1701p-2.md)
- [12 U.S.C. § 1701q](/legal/us/code/title-12/chapter-13/section-1701q.md)
- …and 353 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,49 @@
---
type: Body
title: "Department of the Interior"
classification: "executive-department"
chamber: "executive"
code: "EXEC-INTERIOR"
head: "us/executive/interior/secretary"
sources:
- field: definition
source: "5 U.S.C. § 101 (Executive departments)"
confidence: official
tags: [body, executive, executive-department]
timestamp: "2026-07-03"
---
# Department of the Interior
Executive department, established by 5 U.S.C. § 101. Headed by the [Secretary of the Interior](/us/executive/interior/secretary.md).
## Referenced by the U.S. Code
590 sections of the U.S. Code reference this department. A sample:
- [2 U.S.C. § 901](/legal/us/code/title-02/chapter-20/section-901.md)
- [2 U.S.C. § 905](/legal/us/code/title-02/chapter-20/section-905.md)
- [5 U.S.C. § 101](/legal/us/code/title-05/chapter-1/section-101.md)
- [5 U.S.C. § 406](/legal/us/code/title-05/chapter-4/section-406.md)
- [5 U.S.C. § 422](/legal/us/code/title-05/chapter-4/section-422.md)
- [5 U.S.C. § 5315](/legal/us/code/title-05/chapter-53/section-5315.md)
- [5 U.S.C. § 5316](/legal/us/code/title-05/chapter-53/section-5316.md)
- [5 U.S.C. § 5332a](/legal/us/code/title-05/chapter-53/section-5332a.md)
- [5 U.S.C. § 5541](/legal/us/code/title-05/chapter-55/section-5541.md)
- [5 U.S.C. § 5542](/legal/us/code/title-05/chapter-55/section-5542.md)
- [5 U.S.C. § 5544](/legal/us/code/title-05/chapter-55/section-5544.md)
- [5 U.S.C. § 5545c](/legal/us/code/title-05/chapter-55/section-5545c.md)
- [5 U.S.C. § 8336](/legal/us/code/title-05/chapter-83/section-8336.md)
- [5 U.S.C. § 8401](/legal/us/code/title-05/chapter-84/section-8401.md)
- [5 U.S.C. § 9601](/legal/us/code/title-05/chapter-96/section-9601.md)
- [6 U.S.C. § 771](/legal/us/code/title-06/chapter-2/section-771.md)
- [7 U.S.C. § 1035](/legal/us/code/title-07/chapter-33/section-1035.md)
- [7 U.S.C. § 1334](/legal/us/code/title-07/chapter-35/section-1334.md)
- [7 U.S.C. § 136a](/legal/us/code/title-07/chapter-6/section-136a.md)
- [7 U.S.C. § 178b](/legal/us/code/title-07/chapter-8a/section-178b.md)
- [7 U.S.C. § 178i](/legal/us/code/title-07/chapter-8a/section-178i.md)
- [7 U.S.C. § 1926d](/legal/us/code/title-07/chapter-50/section-1926d.md)
- [7 U.S.C. § 2204b3](/legal/us/code/title-07/chapter-55/section-2204b-3.md)
- [7 U.S.C. § 6921](/legal/us/code/title-07/chapter-98/section-6921.md)
- [7 U.S.C. § 8108](/legal/us/code/title-07/chapter-107/section-8108.md)
- …and 565 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,50 @@
---
type: Body
title: "Secretary of the Interior"
classification: "executive-office"
chamber: "executive"
code: "EXEC-INTERIOR-SECRETARY"
parent: "us/executive/interior"
schedule_level: "I"
sources:
- field: definition
source: "5 U.S.C. § 5312 (Executive Schedule, Level I)"
confidence: official
tags: [body, executive, executive-office]
timestamp: "2026-07-03"
---
# Secretary of the Interior
Cabinet-rank office (Executive Schedule Level I, 5 U.S.C. § 5312), head of the [Department of the Interior](/us/executive/interior/index.md).
## Empowered by the U.S. Code
2,646 sections of the U.S. Code vest authority in this office. A sample:
- [2 U.S.C. § 1942](/legal/us/code/title-02/chapter-29/section-1942.md)
- [3 U.S.C. § 19](/legal/us/code/title-03/chapter-1/section-19.md)
- [5 U.S.C. § 2902](/legal/us/code/title-05/chapter-29/section-2902.md)
- [5 U.S.C. § 3307](/legal/us/code/title-05/chapter-33/section-3307.md)
- [5 U.S.C. § 5312](/legal/us/code/title-05/chapter-53/section-5312.md)
- [5 U.S.C. § 5316](/legal/us/code/title-05/chapter-53/section-5316.md)
- [5 U.S.C. § 5343](/legal/us/code/title-05/chapter-53/section-5343.md)
- [5 U.S.C. § 5545c](/legal/us/code/title-05/chapter-55/section-5545c.md)
- [5 U.S.C. § 6324](/legal/us/code/title-05/chapter-63/section-6324.md)
- [5 U.S.C. § 8401](/legal/us/code/title-05/chapter-84/section-8401.md)
- [6 U.S.C. § 665g](/legal/us/code/title-06/chapter-1/section-665g.md)
- [6 U.S.C. § 822](/legal/us/code/title-06/chapter-2/section-822.md)
- [7 U.S.C. § 1006b](/legal/us/code/title-07/chapter-33/section-1006b.md)
- [7 U.S.C. § 1035](/legal/us/code/title-07/chapter-33/section-1035.md)
- [7 U.S.C. § 1359dd](/legal/us/code/title-07/chapter-35/section-1359dd.md)
- [7 U.S.C. § 1860](/legal/us/code/title-07/chapter-46/section-1860.md)
- [7 U.S.C. § 1985](/legal/us/code/title-07/chapter-50/section-1985.md)
- [7 U.S.C. § 2814](/legal/us/code/title-07/chapter-61/section-2814.md)
- [7 U.S.C. § 302](/legal/us/code/title-07/chapter-13/section-302.md)
- [7 U.S.C. § 305](/legal/us/code/title-07/chapter-13/section-305.md)
- [7 U.S.C. § 389](/legal/us/code/title-07/chapter-14/section-389.md)
- [7 U.S.C. § 389a](/legal/us/code/title-07/chapter-14/section-389a.md)
- [7 U.S.C. § 5402](/legal/us/code/title-07/chapter-85/section-5402.md)
- [7 U.S.C. § 5608](/legal/us/code/title-07/chapter-87/section-5608.md)
- [7 U.S.C. § 5925](/legal/us/code/title-07/chapter-88/section-5925.md)
- …and 2,621 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,50 @@
---
type: Body
title: "Attorney General"
classification: "executive-office"
chamber: "executive"
code: "EXEC-JUSTICE-ATTORNEY-GENERAL"
parent: "us/executive/justice"
schedule_level: "I"
sources:
- field: definition
source: "5 U.S.C. § 5312 (Executive Schedule, Level I)"
confidence: official
tags: [body, executive, executive-office]
timestamp: "2026-07-03"
---
# Attorney General
Cabinet-rank office (Executive Schedule Level I, 5 U.S.C. § 5312), head of the [Department of Justice](/us/executive/justice/index.md).
## Empowered by the U.S. Code
2,386 sections of the U.S. Code vest authority in this office. A sample:
- [2 U.S.C. § 1331](/legal/us/code/title-02/chapter-24/section-1331.md)
- [2 U.S.C. § 1407](/legal/us/code/title-02/chapter-24/section-1407.md)
- [2 U.S.C. § 1605](/legal/us/code/title-02/chapter-26/section-1605.md)
- [2 U.S.C. § 190m](/legal/us/code/title-02/chapter-6/section-190m.md)
- [2 U.S.C. § 1977](/legal/us/code/title-02/chapter-29/section-1977.md)
- [2 U.S.C. § 288k](/legal/us/code/title-02/chapter-9d/section-288k.md)
- [2 U.S.C. § 5503](/legal/us/code/title-02/chapter-55/section-5503.md)
- [2 U.S.C. § 5571](/legal/us/code/title-02/chapter-55/section-5571.md)
- [3 U.S.C. § 19](/legal/us/code/title-03/chapter-1/section-19.md)
- [5 U.S.C. § 1212](/legal/us/code/title-05/chapter-12/section-1212.md)
- [5 U.S.C. § 1213](/legal/us/code/title-05/chapter-12/section-1213.md)
- [5 U.S.C. § 1214](/legal/us/code/title-05/chapter-12/section-1214.md)
- [5 U.S.C. § 13104](/legal/us/code/title-05/chapter-131/section-13104.md)
- [5 U.S.C. § 13106](/legal/us/code/title-05/chapter-131/section-13106.md)
- [5 U.S.C. § 13107](/legal/us/code/title-05/chapter-131/section-13107.md)
- [5 U.S.C. § 13122](/legal/us/code/title-05/chapter-131/section-13122.md)
- [5 U.S.C. § 13145](/legal/us/code/title-05/chapter-131/section-13145.md)
- [5 U.S.C. § 2303](/legal/us/code/title-05/chapter-23/section-2303.md)
- [5 U.S.C. § 2902](/legal/us/code/title-05/chapter-29/section-2902.md)
- [5 U.S.C. § 3151](/legal/us/code/title-05/chapter-31/section-3151.md)
- [5 U.S.C. § 3330a](/legal/us/code/title-05/chapter-33/section-3330a.md)
- [5 U.S.C. § 401](/legal/us/code/title-05/chapter-4/section-401.md)
- [5 U.S.C. § 404](/legal/us/code/title-05/chapter-4/section-404.md)
- [5 U.S.C. § 406](/legal/us/code/title-05/chapter-4/section-406.md)
- [5 U.S.C. § 408](/legal/us/code/title-05/chapter-4/section-408.md)
- …and 2,361 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,49 @@
---
type: Body
title: "Department of Justice"
classification: "executive-department"
chamber: "executive"
code: "EXEC-JUSTICE"
head: "us/executive/justice/attorney-general"
sources:
- field: definition
source: "5 U.S.C. § 101 (Executive departments)"
confidence: official
tags: [body, executive, executive-department]
timestamp: "2026-07-03"
---
# Department of Justice
Executive department, established by 5 U.S.C. § 101. Headed by the [Attorney General](/us/executive/justice/attorney-general.md).
## Referenced by the U.S. Code
549 sections of the U.S. Code reference this department. A sample:
- [2 U.S.C. § 1605](/legal/us/code/title-02/chapter-26/section-1605.md)
- [2 U.S.C. § 1614](/legal/us/code/title-02/chapter-26/section-1614.md)
- [2 U.S.C. § 1808](/legal/us/code/title-02/chapter-28/section-1808.md)
- [2 U.S.C. § 185](/legal/us/code/title-02/chapter-5/section-185.md)
- [2 U.S.C. § 190m](/legal/us/code/title-02/chapter-6/section-190m.md)
- [5 U.S.C. § 101](/legal/us/code/title-05/chapter-1/section-101.md)
- [5 U.S.C. § 13107](/legal/us/code/title-05/chapter-131/section-13107.md)
- [5 U.S.C. § 2303](/legal/us/code/title-05/chapter-23/section-2303.md)
- [5 U.S.C. § 2902](/legal/us/code/title-05/chapter-29/section-2902.md)
- [5 U.S.C. § 3106](/legal/us/code/title-05/chapter-31/section-3106.md)
- [5 U.S.C. § 3401](/legal/us/code/title-05/chapter-34/section-3401.md)
- [5 U.S.C. § 405](/legal/us/code/title-05/chapter-4/section-405.md)
- [5 U.S.C. § 406](/legal/us/code/title-05/chapter-4/section-406.md)
- [5 U.S.C. § 413](/legal/us/code/title-05/chapter-4/section-413.md)
- [5 U.S.C. § 416](/legal/us/code/title-05/chapter-4/section-416.md)
- [5 U.S.C. § 419](/legal/us/code/title-05/chapter-4/section-419.md)
- [5 U.S.C. § 422](/legal/us/code/title-05/chapter-4/section-422.md)
- [5 U.S.C. § 424](/legal/us/code/title-05/chapter-4/section-424.md)
- [5 U.S.C. § 5314](/legal/us/code/title-05/chapter-53/section-5314.md)
- [5 U.S.C. § 5315](/legal/us/code/title-05/chapter-53/section-5315.md)
- [5 U.S.C. § 5316](/legal/us/code/title-05/chapter-53/section-5316.md)
- [5 U.S.C. § 552](/legal/us/code/title-05/chapter-5/section-552.md)
- [5 U.S.C. § 6372](/legal/us/code/title-05/chapter-63/section-6372.md)
- [5 U.S.C. § 7323](/legal/us/code/title-05/chapter-73/section-7323.md)
- [5 U.S.C. § 7531](/legal/us/code/title-05/chapter-75/section-7531.md)
- …and 524 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,49 @@
---
type: Body
title: "Department of Labor"
classification: "executive-department"
chamber: "executive"
code: "EXEC-LABOR"
head: "us/executive/labor/secretary"
sources:
- field: definition
source: "5 U.S.C. § 101 (Executive departments)"
confidence: official
tags: [body, executive, executive-department]
timestamp: "2026-07-03"
---
# Department of Labor
Executive department, established by 5 U.S.C. § 101. Headed by the [Secretary of Labor](/us/executive/labor/secretary.md).
## Referenced by the U.S. Code
306 sections of the U.S. Code reference this department. A sample:
- [5 U.S.C. § 101](/legal/us/code/title-05/chapter-1/section-101.md)
- [5 U.S.C. § 406](/legal/us/code/title-05/chapter-4/section-406.md)
- [5 U.S.C. § 422](/legal/us/code/title-05/chapter-4/section-422.md)
- [5 U.S.C. § 5315](/legal/us/code/title-05/chapter-53/section-5315.md)
- [5 U.S.C. § 5316](/legal/us/code/title-05/chapter-53/section-5316.md)
- [5 U.S.C. § 609](/legal/us/code/title-05/chapter-6/section-609.md)
- [5 U.S.C. § 8140](/legal/us/code/title-05/chapter-81/section-8140.md)
- [5 U.S.C. § 8145](/legal/us/code/title-05/chapter-81/section-8145.md)
- [5 U.S.C. § 8193](/legal/us/code/title-05/chapter-81/section-8193.md)
- [5 U.S.C. § 8337](/legal/us/code/title-05/chapter-83/section-8337.md)
- [5 U.S.C. § 8464a](/legal/us/code/title-05/chapter-84/section-8464a.md)
- [7 U.S.C. § 1308](/legal/us/code/title-07/chapter-35/section-1308.md)
- [7 U.S.C. § 1508](/legal/us/code/title-07/chapter-36/section-1508.md)
- [7 U.S.C. § 2012](/legal/us/code/title-07/chapter-51/section-2012.md)
- [7 U.S.C. § 2014](/legal/us/code/title-07/chapter-51/section-2014.md)
- [7 U.S.C. § 2015](/legal/us/code/title-07/chapter-51/section-2015.md)
- [7 U.S.C. § 2036a](/legal/us/code/title-07/chapter-51/section-2036a.md)
- [7 U.S.C. § 2204b3](/legal/us/code/title-07/chapter-55/section-2204b-3.md)
- [7 U.S.C. § 612c6](/legal/us/code/title-07/chapter-26/section-612c-6.md)
- [7 U.S.C. § 6919](/legal/us/code/title-07/chapter-98/section-6919.md)
- [7 U.S.C. § 7501](/legal/us/code/title-07/chapter-102/section-7501.md)
- [8 U.S.C. § 1182](/legal/us/code/title-08/chapter-12/section-1182.md)
- [8 U.S.C. § 1184](/legal/us/code/title-08/chapter-12/section-1184.md)
- [8 U.S.C. § 1324a](/legal/us/code/title-08/chapter-12/section-1324a.md)
- [8 U.S.C. § 1365b](/legal/us/code/title-08/chapter-12/section-1365b.md)
- …and 281 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,50 @@
---
type: Body
title: "Secretary of Labor"
classification: "executive-office"
chamber: "executive"
code: "EXEC-LABOR-SECRETARY"
parent: "us/executive/labor"
schedule_level: "I"
sources:
- field: definition
source: "5 U.S.C. § 5312 (Executive Schedule, Level I)"
confidence: official
tags: [body, executive, executive-office]
timestamp: "2026-07-03"
---
# Secretary of Labor
Cabinet-rank office (Executive Schedule Level I, 5 U.S.C. § 5312), head of the [Department of Labor](/us/executive/labor/index.md).
## Empowered by the U.S. Code
692 sections of the U.S. Code vest authority in this office. A sample:
- [2 U.S.C. § 1312](/legal/us/code/title-02/chapter-24/section-1312.md)
- [2 U.S.C. § 1313](/legal/us/code/title-02/chapter-24/section-1313.md)
- [2 U.S.C. § 1314](/legal/us/code/title-02/chapter-24/section-1314.md)
- [2 U.S.C. § 1315](/legal/us/code/title-02/chapter-24/section-1315.md)
- [2 U.S.C. § 1316](/legal/us/code/title-02/chapter-24/section-1316.md)
- [2 U.S.C. § 1341](/legal/us/code/title-02/chapter-24/section-1341.md)
- [2 U.S.C. § 1384](/legal/us/code/title-02/chapter-24/section-1384.md)
- [2 U.S.C. § 1603](/legal/us/code/title-02/chapter-26/section-1603.md)
- [2 U.S.C. § 5508](/legal/us/code/title-02/chapter-55/section-5508.md)
- [2 U.S.C. § 5512](/legal/us/code/title-02/chapter-55/section-5512.md)
- [3 U.S.C. § 19](/legal/us/code/title-03/chapter-1/section-19.md)
- [3 U.S.C. § 412](/legal/us/code/title-03/chapter-5/section-412.md)
- [3 U.S.C. § 413](/legal/us/code/title-03/chapter-5/section-413.md)
- [3 U.S.C. § 414](/legal/us/code/title-03/chapter-5/section-414.md)
- [3 U.S.C. § 415](/legal/us/code/title-03/chapter-5/section-415.md)
- [3 U.S.C. § 416](/legal/us/code/title-03/chapter-5/section-416.md)
- [3 U.S.C. § 425](/legal/us/code/title-03/chapter-5/section-425.md)
- [5 U.S.C. § 3330a](/legal/us/code/title-05/chapter-33/section-3330a.md)
- [5 U.S.C. § 3373](/legal/us/code/title-05/chapter-33/section-3373.md)
- [5 U.S.C. § 3374](/legal/us/code/title-05/chapter-33/section-3374.md)
- [5 U.S.C. § 3502](/legal/us/code/title-05/chapter-35/section-3502.md)
- [5 U.S.C. § 5312](/legal/us/code/title-05/chapter-53/section-5312.md)
- [5 U.S.C. § 5342](/legal/us/code/title-05/chapter-53/section-5342.md)
- [5 U.S.C. § 5343](/legal/us/code/title-05/chapter-53/section-5343.md)
- [5 U.S.C. § 5545](/legal/us/code/title-05/chapter-55/section-5545.md)
- …and 667 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,33 @@
---
type: Body
title: "Director of National Drug Control Policy"
classification: "executive-office"
chamber: "executive"
code: "EXEC-NATIONAL-DRUG-CONTROL-POLICY-DIRECTOR"
parent: "us/executive/national-drug-control-policy"
schedule_level: "I"
sources:
- field: definition
source: "5 U.S.C. § 5312 (Executive Schedule, Level I)"
confidence: official
tags: [body, executive, executive-office]
timestamp: "2026-07-03"
---
# Director of National Drug Control Policy
Cabinet-rank office (Executive Schedule Level I, 5 U.S.C. § 5312), head of the [Office of National Drug Control Policy](/us/executive/national-drug-control-policy/index.md).
## Empowered by the U.S. Code
9 sections of the U.S. Code vest authority in this office.
- [5 U.S.C. § 5312](/legal/us/code/title-05/chapter-53/section-5312.md)
- [10 U.S.C. § 2576a](/legal/us/code/title-10/chapter-153/section-2576a.md)
- [15 U.S.C. § 654](/legal/us/code/title-15/chapter-14a/section-654.md)
- [21 U.S.C. § 1701](/legal/us/code/title-21/chapter-22/section-1701.md)
- [32 U.S.C. § 112](/legal/us/code/title-32/chapter-1/section-112.md)
- [34 U.S.C. § 10142](/legal/us/code/title-34/chapter-101/section-10142.md)
- [42 U.S.C. § 285o4](/legal/us/code/title-42/chapter-6a/section-285o-4.md)
- [42 U.S.C. § 300u16](/legal/us/code/title-42/chapter-6a/section-300u-16.md)
- [50 U.S.C. § 3021](/legal/us/code/title-50/chapter-44/section-3021.md)
@@ -0,0 +1,50 @@
---
type: Body
title: "Office of National Drug Control Policy"
classification: "executive-agency"
chamber: "executive"
code: "EXEC-NATIONAL-DRUG-CONTROL-POLICY"
head: "us/executive/national-drug-control-policy/director"
parent: "us/bodies/executive-office-of-the-president-of-the-united-states"
sources:
- field: definition
source: "5 U.S.C. § 5312 (Executive Schedule, Level I)"
confidence: official
tags: [body, executive, executive-agency]
timestamp: "2026-07-03"
---
# Office of National Drug Control Policy
Executive agency. Its head, the [Director of National Drug Control Policy](/us/executive/national-drug-control-policy/director.md), is a Level I position in the Executive Schedule (5 U.S.C. § 5312). It sits within the [Executive Office of the President](/us/bodies/executive-office-of-the-president-of-the-united-states.md).
## Referenced by the U.S. Code
29 sections of the U.S. Code reference this agency. A sample:
- [3 U.S.C. § 431](/legal/us/code/title-03/chapter-5/section-431.md)
- [5 U.S.C. § 3330f](/legal/us/code/title-05/chapter-33/section-3330f.md)
- [5 U.S.C. § 5314](/legal/us/code/title-05/chapter-53/section-5314.md)
- [6 U.S.C. § 223](/legal/us/code/title-06/chapter-1/section-223.md)
- [6 U.S.C. § 225](/legal/us/code/title-06/chapter-1/section-225.md)
- [7 U.S.C. § 2204b3](/legal/us/code/title-07/chapter-55/section-2204b-3.md)
- [21 U.S.C. § 1505a](/legal/us/code/title-21/chapter-20/section-1505a.md)
- [21 U.S.C. § 1523](/legal/us/code/title-21/chapter-20/section-1523.md)
- [21 U.S.C. § 1524](/legal/us/code/title-21/chapter-20/section-1524.md)
- [21 U.S.C. § 1536](/legal/us/code/title-21/chapter-20/section-1536.md)
- [21 U.S.C. § 1701](/legal/us/code/title-21/chapter-22/section-1701.md)
- [21 U.S.C. § 1702](/legal/us/code/title-21/chapter-22/section-1702.md)
- [21 U.S.C. § 1703](/legal/us/code/title-21/chapter-22/section-1703.md)
- [21 U.S.C. § 1706](/legal/us/code/title-21/chapter-22/section-1706.md)
- [21 U.S.C. § 1713](/legal/us/code/title-21/chapter-22/section-1713.md)
- [21 U.S.C. § 1903](/legal/us/code/title-21/chapter-24/section-1903.md)
- [21 U.S.C. § 2311](/legal/us/code/title-21/chapter-28/section-2311.md)
- [21 U.S.C. § 2331](/legal/us/code/title-21/chapter-28/section-2331.md)
- [21 U.S.C. § 822a](/legal/us/code/title-21/chapter-13/section-822a.md)
- [22 U.S.C. § 2651a](/legal/us/code/title-22/chapter-38/section-2651a.md)
- [22 U.S.C. § 2656i](/legal/us/code/title-22/chapter-38/section-2656i.md)
- [31 U.S.C. § 1105](/legal/us/code/title-31/chapter-11/section-1105.md)
- [31 U.S.C. § 5341](/legal/us/code/title-31/chapter-53/section-5341.md)
- [34 U.S.C. § 11116](/legal/us/code/title-34/chapter-111/section-11116.md)
- [34 U.S.C. § 12131](/legal/us/code/title-34/chapter-121/section-12131.md)
- …and 4 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,50 @@
---
type: Body
title: "Director of the Office of Management and Budget"
classification: "executive-office"
chamber: "executive"
code: "EXEC-OFFICE-OF-MANAGEMENT-AND-BUDGET-DIRECTOR"
parent: "us/executive/office-of-management-and-budget"
schedule_level: "I"
sources:
- field: definition
source: "5 U.S.C. § 5312 (Executive Schedule, Level I)"
confidence: official
tags: [body, executive, executive-office]
timestamp: "2026-07-03"
---
# Director of the Office of Management and Budget
Cabinet-rank office (Executive Schedule Level I, 5 U.S.C. § 5312), head of the [Office of Management and Budget](/us/executive/office-of-management-and-budget/index.md).
## Empowered by the U.S. Code
329 sections of the U.S. Code vest authority in this office. A sample:
- [2 U.S.C. § 1511](/legal/us/code/title-02/chapter-25/section-1511.md)
- [2 U.S.C. § 1535](/legal/us/code/title-02/chapter-25/section-1535.md)
- [2 U.S.C. § 1536](/legal/us/code/title-02/chapter-25/section-1536.md)
- [2 U.S.C. § 1537](/legal/us/code/title-02/chapter-25/section-1537.md)
- [2 U.S.C. § 1538](/legal/us/code/title-02/chapter-25/section-1538.md)
- [2 U.S.C. § 661a](/legal/us/code/title-02/chapter-17a/section-661a.md)
- [2 U.S.C. § 684](/legal/us/code/title-02/chapter-17b/section-684.md)
- [2 U.S.C. § 686](/legal/us/code/title-02/chapter-17b/section-686.md)
- [2 U.S.C. § 900](/legal/us/code/title-02/chapter-20/section-900.md)
- [5 U.S.C. § 1214](/legal/us/code/title-05/chapter-12/section-1214.md)
- [5 U.S.C. § 311](/legal/us/code/title-05/chapter-3/section-311.md)
- [5 U.S.C. § 321](/legal/us/code/title-05/chapter-3/section-321.md)
- [5 U.S.C. § 3304](/legal/us/code/title-05/chapter-33/section-3304.md)
- [5 U.S.C. § 3522](/legal/us/code/title-05/chapter-35/section-3522.md)
- [5 U.S.C. § 415](/legal/us/code/title-05/chapter-4/section-415.md)
- [5 U.S.C. § 5312](/legal/us/code/title-05/chapter-53/section-5312.md)
- [5 U.S.C. § 552](/legal/us/code/title-05/chapter-5/section-552.md)
- [5 U.S.C. § 552a](/legal/us/code/title-05/chapter-5/section-552a.md)
- [5 U.S.C. § 5584](/legal/us/code/title-05/chapter-55/section-5584.md)
- [5 U.S.C. § 5707](/legal/us/code/title-05/chapter-57/section-5707.md)
- [5 U.S.C. § 5756](/legal/us/code/title-05/chapter-57/section-5756.md)
- [5 U.S.C. § 6504](/legal/us/code/title-05/chapter-65/section-6504.md)
- [6 U.S.C. § 105](/legal/us/code/title-06/chapter-1/section-105.md)
- [6 U.S.C. § 106](/legal/us/code/title-06/chapter-1/section-106.md)
- [6 U.S.C. § 1500](/legal/us/code/title-06/chapter-6/section-1500.md)
- …and 304 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,50 @@
---
type: Body
title: "Office of Management and Budget"
classification: "executive-agency"
chamber: "executive"
code: "EXEC-OFFICE-OF-MANAGEMENT-AND-BUDGET"
head: "us/executive/office-of-management-and-budget/director"
parent: "us/bodies/executive-office-of-the-president-of-the-united-states"
sources:
- field: definition
source: "5 U.S.C. § 5312 (Executive Schedule, Level I)"
confidence: official
tags: [body, executive, executive-agency]
timestamp: "2026-07-03"
---
# Office of Management and Budget
Executive agency. Its head, the [Director of the Office of Management and Budget](/us/executive/office-of-management-and-budget/director.md), is a Level I position in the Executive Schedule (5 U.S.C. § 5312). It sits within the [Executive Office of the President](/us/bodies/executive-office-of-the-president-of-the-united-states.md).
## Referenced by the U.S. Code
653 sections of the U.S. Code reference this agency. A sample:
- [2 U.S.C. § 1511](/legal/us/code/title-02/chapter-25/section-1511.md)
- [2 U.S.C. § 1535](/legal/us/code/title-02/chapter-25/section-1535.md)
- [2 U.S.C. § 1536](/legal/us/code/title-02/chapter-25/section-1536.md)
- [2 U.S.C. § 1537](/legal/us/code/title-02/chapter-25/section-1537.md)
- [2 U.S.C. § 1538](/legal/us/code/title-02/chapter-25/section-1538.md)
- [2 U.S.C. § 661a](/legal/us/code/title-02/chapter-17a/section-661a.md)
- [2 U.S.C. § 661b](/legal/us/code/title-02/chapter-17a/section-661b.md)
- [2 U.S.C. § 661e](/legal/us/code/title-02/chapter-17a/section-661e.md)
- [2 U.S.C. § 684](/legal/us/code/title-02/chapter-17b/section-684.md)
- [2 U.S.C. § 686](/legal/us/code/title-02/chapter-17b/section-686.md)
- [2 U.S.C. § 900](/legal/us/code/title-02/chapter-20/section-900.md)
- [2 U.S.C. § 901](/legal/us/code/title-02/chapter-20/section-901.md)
- [3 U.S.C. § 431](/legal/us/code/title-03/chapter-5/section-431.md)
- [5 U.S.C. § 1213](/legal/us/code/title-05/chapter-12/section-1213.md)
- [5 U.S.C. § 1214](/legal/us/code/title-05/chapter-12/section-1214.md)
- [5 U.S.C. § 311](/legal/us/code/title-05/chapter-3/section-311.md)
- [5 U.S.C. § 3133](/legal/us/code/title-05/chapter-31/section-3133.md)
- [5 U.S.C. § 3172](/legal/us/code/title-05/chapter-31/section-3172.md)
- [5 U.S.C. § 321](/legal/us/code/title-05/chapter-3/section-321.md)
- [5 U.S.C. § 322](/legal/us/code/title-05/chapter-3/section-322.md)
- [5 U.S.C. § 3304](/legal/us/code/title-05/chapter-33/section-3304.md)
- [5 U.S.C. § 3330f](/legal/us/code/title-05/chapter-33/section-3330f.md)
- [5 U.S.C. § 3522](/legal/us/code/title-05/chapter-35/section-3522.md)
- [5 U.S.C. § 415](/legal/us/code/title-05/chapter-4/section-415.md)
- [5 U.S.C. § 424](/legal/us/code/title-05/chapter-4/section-424.md)
- …and 628 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,50 @@
---
type: Body
title: "Commissioner of Social Security"
classification: "executive-office"
chamber: "executive"
code: "EXEC-SOCIAL-SECURITY-ADMINISTRATION-COMMISSIONER"
parent: "us/executive/social-security-administration"
schedule_level: "I"
sources:
- field: definition
source: "5 U.S.C. § 5312 (Executive Schedule, Level I)"
confidence: official
tags: [body, executive, executive-office]
timestamp: "2026-07-03"
---
# Commissioner of Social Security
Cabinet-rank office (Executive Schedule Level I, 5 U.S.C. § 5312), head of the [Social Security Administration](/us/executive/social-security-administration/index.md).
## Empowered by the U.S. Code
161 sections of the U.S. Code vest authority in this office. A sample:
- [5 U.S.C. § 401](/legal/us/code/title-05/chapter-4/section-401.md)
- [5 U.S.C. § 5312](/legal/us/code/title-05/chapter-53/section-5312.md)
- [5 U.S.C. § 8141](/legal/us/code/title-05/chapter-81/section-8141.md)
- [5 U.S.C. § 8347](/legal/us/code/title-05/chapter-83/section-8347.md)
- [5 U.S.C. § 8903c](/legal/us/code/title-05/chapter-89/section-8903c.md)
- [6 U.S.C. § 255](/legal/us/code/title-06/chapter-1/section-255.md)
- [7 U.S.C. § 2015](/legal/us/code/title-07/chapter-51/section-2015.md)
- [7 U.S.C. § 2020](/legal/us/code/title-07/chapter-51/section-2020.md)
- [7 U.S.C. § 2025](/legal/us/code/title-07/chapter-51/section-2025.md)
- [7 U.S.C. § 9093](/legal/us/code/title-07/chapter-115/section-9093.md)
- [8 U.S.C. § 1360](/legal/us/code/title-08/chapter-12/section-1360.md)
- [8 U.S.C. § 1612](/legal/us/code/title-08/chapter-14/section-1612.md)
- [8 U.S.C. § 1641](/legal/us/code/title-08/chapter-14/section-1641.md)
- [8 U.S.C. § 1645](/legal/us/code/title-08/chapter-14/section-1645.md)
- [10 U.S.C. § 1095](/legal/us/code/title-10/chapter-55/section-1095.md)
- [14 U.S.C. § 3707](/legal/us/code/title-14/chapter-37/section-3707.md)
- [26 U.S.C. § 1402](/legal/us/code/title-26/chapter-2/section-1402.md)
- [26 U.S.C. § 3121](/legal/us/code/title-26/chapter-21/section-3121.md)
- [26 U.S.C. § 3127](/legal/us/code/title-26/chapter-21/section-3127.md)
- [26 U.S.C. § 529A](/legal/us/code/title-26/chapter-1/section-529a.md)
- [26 U.S.C. § 6050F](/legal/us/code/title-26/chapter-61/section-6050f.md)
- [26 U.S.C. § 6057](/legal/us/code/title-26/chapter-61/section-6057.md)
- [26 U.S.C. § 6103](/legal/us/code/title-26/chapter-61/section-6103.md)
- [26 U.S.C. § 6402](/legal/us/code/title-26/chapter-65/section-6402.md)
- [26 U.S.C. § 642](/legal/us/code/title-26/chapter-1/section-642.md)
- …and 136 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,49 @@
---
type: Body
title: "Social Security Administration"
classification: "executive-agency"
chamber: "executive"
code: "EXEC-SOCIAL-SECURITY-ADMINISTRATION"
head: "us/executive/social-security-administration/commissioner"
sources:
- field: definition
source: "5 U.S.C. § 5312 (Executive Schedule, Level I)"
confidence: official
tags: [body, executive, executive-agency]
timestamp: "2026-07-03"
---
# Social Security Administration
Executive agency. Its head, the [Commissioner of Social Security](/us/executive/social-security-administration/commissioner.md), is a Level I position in the Executive Schedule (5 U.S.C. § 5312).
## Referenced by the U.S. Code
92 sections of the U.S. Code reference this agency. A sample:
- [2 U.S.C. § 901](/legal/us/code/title-02/chapter-20/section-901.md)
- [5 U.S.C. § 401](/legal/us/code/title-05/chapter-4/section-401.md)
- [5 U.S.C. § 406](/legal/us/code/title-05/chapter-4/section-406.md)
- [5 U.S.C. § 422](/legal/us/code/title-05/chapter-4/section-422.md)
- [5 U.S.C. § 5312](/legal/us/code/title-05/chapter-53/section-5312.md)
- [5 U.S.C. § 5313](/legal/us/code/title-05/chapter-53/section-5313.md)
- [5 U.S.C. § 8347](/legal/us/code/title-05/chapter-83/section-8347.md)
- [5 U.S.C. § 8903c](/legal/us/code/title-05/chapter-89/section-8903c.md)
- [7 U.S.C. § 2020](/legal/us/code/title-07/chapter-51/section-2020.md)
- [7 U.S.C. § 8786](/legal/us/code/title-07/chapter-113/section-8786.md)
- [8 U.S.C. § 1360](/legal/us/code/title-08/chapter-12/section-1360.md)
- [10 U.S.C. § 1086](/legal/us/code/title-10/chapter-55/section-1086.md)
- [12 U.S.C. § 3413](/legal/us/code/title-12/chapter-35/section-3413.md)
- [15 U.S.C. § 1681c1](/legal/us/code/title-15/chapter-41/section-1681c-1.md)
- [20 U.S.C. § 1091](/legal/us/code/title-20/chapter-28/section-1091.md)
- [20 U.S.C. § 9702](/legal/us/code/title-20/chapter-77/section-9702.md)
- [26 U.S.C. § 199A](/legal/us/code/title-26/chapter-1/section-199a.md)
- [26 U.S.C. § 24](/legal/us/code/title-26/chapter-1/section-24.md)
- [26 U.S.C. § 32](/legal/us/code/title-26/chapter-1/section-32.md)
- [26 U.S.C. § 6103](/legal/us/code/title-26/chapter-61/section-6103.md)
- [26 U.S.C. § 6428B](/legal/us/code/title-26/chapter-65/section-6428b.md)
- [26 U.S.C. § 7529](/legal/us/code/title-26/chapter-77/section-7529.md)
- [29 U.S.C. § 1322](/legal/us/code/title-29/chapter-18/section-1322.md)
- [29 U.S.C. § 3151](/legal/us/code/title-29/chapter-32/section-3151.md)
- [29 U.S.C. § 722](/legal/us/code/title-29/chapter-16/section-722.md)
- …and 67 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,49 @@
---
type: Body
title: "Department of State"
classification: "executive-department"
chamber: "executive"
code: "EXEC-STATE"
head: "us/executive/state/secretary"
sources:
- field: definition
source: "5 U.S.C. § 101 (Executive departments)"
confidence: official
tags: [body, executive, executive-department]
timestamp: "2026-07-03"
---
# Department of State
Executive department, established by 5 U.S.C. § 101. Headed by the [Secretary of State](/us/executive/state/secretary.md).
## Referenced by the U.S. Code
588 sections of the U.S. Code reference this department. A sample:
- [1 U.S.C. § 112a](/legal/us/code/title-01/chapter-2/section-112a.md)
- [1 U.S.C. § 112b](/legal/us/code/title-01/chapter-2/section-112b.md)
- [2 U.S.C. § 143a](/legal/us/code/title-02/chapter-5/section-143a.md)
- [2 U.S.C. § 194a](/legal/us/code/title-02/chapter-6/section-194a.md)
- [2 U.S.C. § 4726](/legal/us/code/title-02/chapter-47/section-4726.md)
- [5 U.S.C. § 101](/legal/us/code/title-05/chapter-1/section-101.md)
- [5 U.S.C. § 10301](/legal/us/code/title-05/chapter-103/section-10301.md)
- [5 U.S.C. § 10302](/legal/us/code/title-05/chapter-103/section-10302.md)
- [5 U.S.C. § 2902](/legal/us/code/title-05/chapter-29/section-2902.md)
- [5 U.S.C. § 3330d](/legal/us/code/title-05/chapter-33/section-3330d.md)
- [5 U.S.C. § 406](/legal/us/code/title-05/chapter-4/section-406.md)
- [5 U.S.C. § 419](/legal/us/code/title-05/chapter-4/section-419.md)
- [5 U.S.C. § 5102](/legal/us/code/title-05/chapter-51/section-5102.md)
- [5 U.S.C. § 5315](/legal/us/code/title-05/chapter-53/section-5315.md)
- [5 U.S.C. § 7103](/legal/us/code/title-05/chapter-71/section-7103.md)
- [5 U.S.C. § 7531](/legal/us/code/title-05/chapter-75/section-7531.md)
- [5 U.S.C. § 9101](/legal/us/code/title-05/chapter-91/section-9101.md)
- [6 U.S.C. § 1001](/legal/us/code/title-06/chapter-3/section-1001.md)
- [6 U.S.C. § 106](/legal/us/code/title-06/chapter-1/section-106.md)
- [6 U.S.C. § 121](/legal/us/code/title-06/chapter-1/section-121.md)
- [6 U.S.C. § 124k](/legal/us/code/title-06/chapter-1/section-124k.md)
- [6 U.S.C. § 1531](/legal/us/code/title-06/chapter-6/section-1531.md)
- [6 U.S.C. § 195c](/legal/us/code/title-06/chapter-1/section-195c.md)
- [6 U.S.C. § 220](/legal/us/code/title-06/chapter-1/section-220.md)
- [6 U.S.C. § 236](/legal/us/code/title-06/chapter-1/section-236.md)
- …and 563 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,50 @@
---
type: Body
title: "Secretary of State"
classification: "executive-office"
chamber: "executive"
code: "EXEC-STATE-SECRETARY"
parent: "us/executive/state"
schedule_level: "I"
sources:
- field: definition
source: "5 U.S.C. § 5312 (Executive Schedule, Level I)"
confidence: official
tags: [body, executive, executive-office]
timestamp: "2026-07-03"
---
# Secretary of State
Cabinet-rank office (Executive Schedule Level I, 5 U.S.C. § 5312), head of the [Department of State](/us/executive/state/index.md).
## Empowered by the U.S. Code
1,437 sections of the U.S. Code vest authority in this office. A sample:
- [1 U.S.C. § 112a](/legal/us/code/title-01/chapter-2/section-112a.md)
- [1 U.S.C. § 112b](/legal/us/code/title-01/chapter-2/section-112b.md)
- [1 U.S.C. § 113](/legal/us/code/title-01/chapter-2/section-113.md)
- [3 U.S.C. § 19](/legal/us/code/title-03/chapter-1/section-19.md)
- [3 U.S.C. § 20](/legal/us/code/title-03/chapter-1/section-20.md)
- [4 U.S.C. § 42](/legal/us/code/title-04/chapter-2/section-42.md)
- [5 U.S.C. § 1304](/legal/us/code/title-05/chapter-13/section-1304.md)
- [5 U.S.C. § 13101](/legal/us/code/title-05/chapter-131/section-13101.md)
- [5 U.S.C. § 2902](/legal/us/code/title-05/chapter-29/section-2902.md)
- [5 U.S.C. § 5312](/legal/us/code/title-05/chapter-53/section-5312.md)
- [5 U.S.C. § 5522](/legal/us/code/title-05/chapter-55/section-5522.md)
- [5 U.S.C. § 5544](/legal/us/code/title-05/chapter-55/section-5544.md)
- [5 U.S.C. § 5545a](/legal/us/code/title-05/chapter-55/section-5545a.md)
- [5 U.S.C. § 5546](/legal/us/code/title-05/chapter-55/section-5546.md)
- [5 U.S.C. § 5928](/legal/us/code/title-05/chapter-59/section-5928.md)
- [5 U.S.C. § 594](/legal/us/code/title-05/chapter-5/section-594.md)
- [5 U.S.C. § 7342](/legal/us/code/title-05/chapter-73/section-7342.md)
- [5 U.S.C. § 8332](/legal/us/code/title-05/chapter-83/section-8332.md)
- [5 U.S.C. § 9904](/legal/us/code/title-05/chapter-99/section-9904.md)
- [6 U.S.C. § 1001](/legal/us/code/title-06/chapter-3/section-1001.md)
- [6 U.S.C. § 1500](/legal/us/code/title-06/chapter-6/section-1500.md)
- [6 U.S.C. § 1531](/legal/us/code/title-06/chapter-6/section-1531.md)
- [6 U.S.C. § 195c](/legal/us/code/title-06/chapter-1/section-195c.md)
- [6 U.S.C. § 220](/legal/us/code/title-06/chapter-1/section-220.md)
- [6 U.S.C. § 236](/legal/us/code/title-06/chapter-1/section-236.md)
- …and 1,412 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,49 @@
---
type: Body
title: "Department of Transportation"
classification: "executive-department"
chamber: "executive"
code: "EXEC-TRANSPORTATION"
head: "us/executive/transportation/secretary"
sources:
- field: definition
source: "5 U.S.C. § 101 (Executive departments)"
confidence: official
tags: [body, executive, executive-department]
timestamp: "2026-07-03"
---
# Department of Transportation
Executive department, established by 5 U.S.C. § 101. Headed by the [Secretary of Transportation](/us/executive/transportation/secretary.md).
## Referenced by the U.S. Code
314 sections of the U.S. Code reference this department. A sample:
- [5 U.S.C. § 101](/legal/us/code/title-05/chapter-1/section-101.md)
- [5 U.S.C. § 2109](/legal/us/code/title-05/chapter-21/section-2109.md)
- [5 U.S.C. § 406](/legal/us/code/title-05/chapter-4/section-406.md)
- [5 U.S.C. § 422](/legal/us/code/title-05/chapter-4/section-422.md)
- [5 U.S.C. § 5109](/legal/us/code/title-05/chapter-51/section-5109.md)
- [5 U.S.C. § 5314](/legal/us/code/title-05/chapter-53/section-5314.md)
- [5 U.S.C. § 5315](/legal/us/code/title-05/chapter-53/section-5315.md)
- [5 U.S.C. § 5316](/legal/us/code/title-05/chapter-53/section-5316.md)
- [5 U.S.C. § 5542](/legal/us/code/title-05/chapter-55/section-5542.md)
- [5 U.S.C. § 8331](/legal/us/code/title-05/chapter-83/section-8331.md)
- [5 U.S.C. § 8401](/legal/us/code/title-05/chapter-84/section-8401.md)
- [5 U.S.C. § 9101](/legal/us/code/title-05/chapter-91/section-9101.md)
- [6 U.S.C. § 1104](/legal/us/code/title-06/chapter-4/section-1104.md)
- [6 U.S.C. § 1113](/legal/us/code/title-06/chapter-4/section-1113.md)
- [6 U.S.C. § 1117](/legal/us/code/title-06/chapter-4/section-1117.md)
- [6 U.S.C. § 1119](/legal/us/code/title-06/chapter-4/section-1119.md)
- [6 U.S.C. § 1133](/legal/us/code/title-06/chapter-4/section-1133.md)
- [6 U.S.C. § 1134](/legal/us/code/title-06/chapter-4/section-1134.md)
- [6 U.S.C. § 1139](/legal/us/code/title-06/chapter-4/section-1139.md)
- [6 U.S.C. § 1161](/legal/us/code/title-06/chapter-4/section-1161.md)
- [6 U.S.C. § 1166](/legal/us/code/title-06/chapter-4/section-1166.md)
- [6 U.S.C. § 1168](/legal/us/code/title-06/chapter-4/section-1168.md)
- [6 U.S.C. § 1183](/legal/us/code/title-06/chapter-4/section-1183.md)
- [6 U.S.C. § 1185](/legal/us/code/title-06/chapter-4/section-1185.md)
- [6 U.S.C. § 1186](/legal/us/code/title-06/chapter-4/section-1186.md)
- …and 289 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,50 @@
---
type: Body
title: "Secretary of Transportation"
classification: "executive-office"
chamber: "executive"
code: "EXEC-TRANSPORTATION-SECRETARY"
parent: "us/executive/transportation"
schedule_level: "I"
sources:
- field: definition
source: "5 U.S.C. § 5312 (Executive Schedule, Level I)"
confidence: official
tags: [body, executive, executive-office]
timestamp: "2026-07-03"
---
# Secretary of Transportation
Cabinet-rank office (Executive Schedule Level I, 5 U.S.C. § 5312), head of the [Department of Transportation](/us/executive/transportation/index.md).
## Empowered by the U.S. Code
1,219 sections of the U.S. Code vest authority in this office. A sample:
- [2 U.S.C. § 1331](/legal/us/code/title-02/chapter-24/section-1331.md)
- [3 U.S.C. § 19](/legal/us/code/title-03/chapter-1/section-19.md)
- [5 U.S.C. § 2109](/legal/us/code/title-05/chapter-21/section-2109.md)
- [5 U.S.C. § 5312](/legal/us/code/title-05/chapter-53/section-5312.md)
- [5 U.S.C. § 5542](/legal/us/code/title-05/chapter-55/section-5542.md)
- [5 U.S.C. § 8172](/legal/us/code/title-05/chapter-81/section-8172.md)
- [5 U.S.C. § 8334](/legal/us/code/title-05/chapter-83/section-8334.md)
- [5 U.S.C. § 8421a](/legal/us/code/title-05/chapter-84/section-8421a.md)
- [5 U.S.C. § 8422](/legal/us/code/title-05/chapter-84/section-8422.md)
- [6 U.S.C. § 1114](/legal/us/code/title-06/chapter-4/section-1114.md)
- [6 U.S.C. § 1135](/legal/us/code/title-06/chapter-4/section-1135.md)
- [6 U.S.C. § 1142](/legal/us/code/title-06/chapter-4/section-1142.md)
- [6 U.S.C. § 1151](/legal/us/code/title-06/chapter-4/section-1151.md)
- [6 U.S.C. § 1152](/legal/us/code/title-06/chapter-4/section-1152.md)
- [6 U.S.C. § 1153](/legal/us/code/title-06/chapter-4/section-1153.md)
- [6 U.S.C. § 1163](/legal/us/code/title-06/chapter-4/section-1163.md)
- [6 U.S.C. § 1164](/legal/us/code/title-06/chapter-4/section-1164.md)
- [6 U.S.C. § 1165](/legal/us/code/title-06/chapter-4/section-1165.md)
- [6 U.S.C. § 1166](/legal/us/code/title-06/chapter-4/section-1166.md)
- [6 U.S.C. § 1169](/legal/us/code/title-06/chapter-4/section-1169.md)
- [6 U.S.C. § 1171](/legal/us/code/title-06/chapter-4/section-1171.md)
- [6 U.S.C. § 1172](/legal/us/code/title-06/chapter-4/section-1172.md)
- [6 U.S.C. § 1182](/legal/us/code/title-06/chapter-4/section-1182.md)
- [6 U.S.C. § 1183](/legal/us/code/title-06/chapter-4/section-1183.md)
- [6 U.S.C. § 1186](/legal/us/code/title-06/chapter-4/section-1186.md)
- …and 1,194 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,49 @@
---
type: Body
title: "Department of the Treasury"
classification: "executive-department"
chamber: "executive"
code: "EXEC-TREASURY"
head: "us/executive/treasury/secretary"
sources:
- field: definition
source: "5 U.S.C. § 101 (Executive departments)"
confidence: official
tags: [body, executive, executive-department]
timestamp: "2026-07-03"
---
# Department of the Treasury
Executive department, established by 5 U.S.C. § 101. Headed by the [Secretary of the Treasury](/us/executive/treasury/secretary.md).
## Referenced by the U.S. Code
313 sections of the U.S. Code reference this department. A sample:
- [2 U.S.C. § 1905a](/legal/us/code/title-02/chapter-29/section-1905a.md)
- [5 U.S.C. § 101](/legal/us/code/title-05/chapter-1/section-101.md)
- [5 U.S.C. § 3111](/legal/us/code/title-05/chapter-31/section-3111.md)
- [5 U.S.C. § 402](/legal/us/code/title-05/chapter-4/section-402.md)
- [5 U.S.C. § 406](/legal/us/code/title-05/chapter-4/section-406.md)
- [5 U.S.C. § 412](/legal/us/code/title-05/chapter-4/section-412.md)
- [5 U.S.C. § 415](/legal/us/code/title-05/chapter-4/section-415.md)
- [5 U.S.C. § 422](/legal/us/code/title-05/chapter-4/section-422.md)
- [5 U.S.C. § 5315](/legal/us/code/title-05/chapter-53/section-5315.md)
- [5 U.S.C. § 5316](/legal/us/code/title-05/chapter-53/section-5316.md)
- [5 U.S.C. § 5378](/legal/us/code/title-05/chapter-53/section-5378.md)
- [5 U.S.C. § 8401](/legal/us/code/title-05/chapter-84/section-8401.md)
- [5 U.S.C. § 8909](/legal/us/code/title-05/chapter-89/section-8909.md)
- [5 U.S.C. § 9505](/legal/us/code/title-05/chapter-95/section-9505.md)
- [5 U.S.C. § 9510](/legal/us/code/title-05/chapter-95/section-9510.md)
- [6 U.S.C. § 1501](/legal/us/code/title-06/chapter-6/section-1501.md)
- [6 U.S.C. § 203](/legal/us/code/title-06/chapter-1/section-203.md)
- [6 U.S.C. § 531](/legal/us/code/title-06/chapter-1/section-531.md)
- [6 U.S.C. § 943](/legal/us/code/title-06/chapter-3/section-943.md)
- [7 U.S.C. § 14453](/legal/us/code/title-07/chapter-35a/section-1445-3.md)
- [7 U.S.C. § 16](/legal/us/code/title-07/chapter-1/section-16.md)
- [7 U.S.C. § 1738](/legal/us/code/title-07/chapter-41/section-1738.md)
- [7 U.S.C. § 2](/legal/us/code/title-07/chapter-1/section-2.md)
- [7 U.S.C. § 2156](/legal/us/code/title-07/chapter-54/section-2156.md)
- [7 U.S.C. § 2204b3](/legal/us/code/title-07/chapter-55/section-2204b-3.md)
- …and 288 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,50 @@
---
type: Body
title: "Secretary of the Treasury"
classification: "executive-office"
chamber: "executive"
code: "EXEC-TREASURY-SECRETARY"
parent: "us/executive/treasury"
schedule_level: "I"
sources:
- field: definition
source: "5 U.S.C. § 5312 (Executive Schedule, Level I)"
confidence: official
tags: [body, executive, executive-office]
timestamp: "2026-07-03"
---
# Secretary of the Treasury
Cabinet-rank office (Executive Schedule Level I, 5 U.S.C. § 5312), head of the [Department of the Treasury](/us/executive/treasury/index.md).
## Empowered by the U.S. Code
1,918 sections of the U.S. Code vest authority in this office. A sample:
- [2 U.S.C. § 1105](/legal/us/code/title-02/chapter-22/section-1105.md)
- [2 U.S.C. § 1106](/legal/us/code/title-02/chapter-22/section-1106.md)
- [2 U.S.C. § 1151](/legal/us/code/title-02/chapter-22a/section-1151.md)
- [2 U.S.C. § 1415](/legal/us/code/title-02/chapter-24/section-1415.md)
- [2 U.S.C. § 154](/legal/us/code/title-02/chapter-5/section-154.md)
- [2 U.S.C. § 157](/legal/us/code/title-02/chapter-5/section-157.md)
- [2 U.S.C. § 158](/legal/us/code/title-02/chapter-5/section-158.md)
- [2 U.S.C. § 1942](/legal/us/code/title-02/chapter-29/section-1942.md)
- [2 U.S.C. § 2046](/legal/us/code/title-02/chapter-30/section-2046.md)
- [2 U.S.C. § 2083](/legal/us/code/title-02/chapter-30/section-2083.md)
- [2 U.S.C. § 2108](/legal/us/code/title-02/chapter-30/section-2108.md)
- [2 U.S.C. § 2146](/legal/us/code/title-02/chapter-30/section-2146.md)
- [2 U.S.C. § 2234](/legal/us/code/title-02/chapter-31/section-2234.md)
- [2 U.S.C. § 661d](/legal/us/code/title-02/chapter-17a/section-661d.md)
- [2 U.S.C. § 661f](/legal/us/code/title-02/chapter-17a/section-661f.md)
- [2 U.S.C. § 802](/legal/us/code/title-02/chapter-19/section-802.md)
- [2 U.S.C. § 831](/legal/us/code/title-02/chapter-19a/section-831.md)
- [3 U.S.C. § 19](/legal/us/code/title-03/chapter-1/section-19.md)
- [5 U.S.C. § 2902](/legal/us/code/title-05/chapter-29/section-2902.md)
- [5 U.S.C. § 3102](/legal/us/code/title-05/chapter-31/section-3102.md)
- [5 U.S.C. § 3111](/legal/us/code/title-05/chapter-31/section-3111.md)
- [5 U.S.C. § 4111](/legal/us/code/title-05/chapter-41/section-4111.md)
- [5 U.S.C. § 412](/legal/us/code/title-05/chapter-4/section-412.md)
- [5 U.S.C. § 415](/legal/us/code/title-05/chapter-4/section-415.md)
- [5 U.S.C. § 5312](/legal/us/code/title-05/chapter-53/section-5312.md)
- …and 1,893 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,50 @@
---
type: Body
title: "Office of the United States Trade Representative"
classification: "executive-agency"
chamber: "executive"
code: "EXEC-US-TRADE-REPRESENTATIVE"
head: "us/executive/us-trade-representative/united-states-trade-representative"
parent: "us/bodies/executive-office-of-the-president-of-the-united-states"
sources:
- field: definition
source: "5 U.S.C. § 5312 (Executive Schedule, Level I)"
confidence: official
tags: [body, executive, executive-agency]
timestamp: "2026-07-03"
---
# Office of the United States Trade Representative
Executive agency. Its head, the [United States Trade Representative](/us/executive/us-trade-representative/united-states-trade-representative.md), is a Level I position in the Executive Schedule (5 U.S.C. § 5312). It sits within the [Executive Office of the President](/us/bodies/executive-office-of-the-president-of-the-united-states.md).
## Referenced by the U.S. Code
35 sections of the U.S. Code reference this agency. A sample:
- [5 U.S.C. § 3330f](/legal/us/code/title-05/chapter-33/section-3330f.md)
- [5 U.S.C. § 5314](/legal/us/code/title-05/chapter-53/section-5314.md)
- [7 U.S.C. § 16](/legal/us/code/title-07/chapter-1/section-16.md)
- [15 U.S.C. § 3718](/legal/us/code/title-15/chapter-63/section-3718.md)
- [15 U.S.C. § 4727](/legal/us/code/title-15/chapter-73/section-4727.md)
- [15 U.S.C. § 634c](/legal/us/code/title-15/chapter-14a/section-634c.md)
- [15 U.S.C. § 649](/legal/us/code/title-15/chapter-14a/section-649.md)
- [15 U.S.C. § 8111](/legal/us/code/title-15/chapter-107/section-8111.md)
- [16 U.S.C. § 8031](/legal/us/code/title-16/chapter-99/section-8031.md)
- [19 U.S.C. § 2171](/legal/us/code/title-19/chapter-12/section-2171.md)
- [19 U.S.C. § 2213](/legal/us/code/title-19/chapter-12/section-2213.md)
- [19 U.S.C. § 2252](/legal/us/code/title-19/chapter-12/section-2252.md)
- [19 U.S.C. § 2466a](/legal/us/code/title-19/chapter-12/section-2466a.md)
- [19 U.S.C. § 3010](/legal/us/code/title-19/chapter-18/section-3010.md)
- [19 U.S.C. § 3011](/legal/us/code/title-19/chapter-18/section-3011.md)
- [19 U.S.C. § 3512](/legal/us/code/title-19/chapter-22/section-3512.md)
- [19 U.S.C. § 3724](/legal/us/code/title-19/chapter-23/section-3724.md)
- [19 U.S.C. § 3808](/legal/us/code/title-19/chapter-24/section-3808.md)
- [19 U.S.C. § 4204](/legal/us/code/title-19/chapter-27/section-4204.md)
- [19 U.S.C. § 4205](/legal/us/code/title-19/chapter-27/section-4205.md)
- [19 U.S.C. § 4208](/legal/us/code/title-19/chapter-27/section-4208.md)
- [19 U.S.C. § 4314](/legal/us/code/title-19/chapter-28/section-4314.md)
- [19 U.S.C. § 4344](/legal/us/code/title-19/chapter-28/section-4344.md)
- [19 U.S.C. § 4681](/legal/us/code/title-19/chapter-29/section-4681.md)
- [19 U.S.C. § 4732](/legal/us/code/title-19/chapter-29/section-4732.md)
- …and 10 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,50 @@
---
type: Body
title: "United States Trade Representative"
classification: "executive-office"
chamber: "executive"
code: "EXEC-US-TRADE-REPRESENTATIVE-UNITED-STATES-TRADE-REPRESENTATIVE"
parent: "us/executive/us-trade-representative"
schedule_level: "I"
sources:
- field: definition
source: "5 U.S.C. § 5312 (Executive Schedule, Level I)"
confidence: official
tags: [body, executive, executive-office]
timestamp: "2026-07-03"
---
# United States Trade Representative
Cabinet-rank office (Executive Schedule Level I, 5 U.S.C. § 5312), head of the [Office of the United States Trade Representative](/us/executive/us-trade-representative/index.md).
## Empowered by the U.S. Code
144 sections of the U.S. Code vest authority in this office. A sample:
- [5 U.S.C. § 3330f](/legal/us/code/title-05/chapter-33/section-3330f.md)
- [5 U.S.C. § 5312](/legal/us/code/title-05/chapter-53/section-5312.md)
- [5 U.S.C. § 5314](/legal/us/code/title-05/chapter-53/section-5314.md)
- [6 U.S.C. § 945](/legal/us/code/title-06/chapter-3/section-945.md)
- [7 U.S.C. § 16](/legal/us/code/title-07/chapter-1/section-16.md)
- [7 U.S.C. § 1748](/legal/us/code/title-07/chapter-42/section-1748.md)
- [7 U.S.C. § 2278](/legal/us/code/title-07/chapter-55/section-2278.md)
- [7 U.S.C. § 4003](/legal/us/code/title-07/chapter-71/section-4003.md)
- [7 U.S.C. § 4503](/legal/us/code/title-07/chapter-76/section-4503.md)
- [7 U.S.C. § 5606](/legal/us/code/title-07/chapter-87/section-5606.md)
- [7 U.S.C. § 5622](/legal/us/code/title-07/chapter-87/section-5622.md)
- [7 U.S.C. § 5623](/legal/us/code/title-07/chapter-87/section-5623.md)
- [7 U.S.C. § 5674](/legal/us/code/title-07/chapter-87/section-5674.md)
- [7 U.S.C. § 5675](/legal/us/code/title-07/chapter-87/section-5675.md)
- [7 U.S.C. § 608e1](/legal/us/code/title-07/chapter-26/section-608e-1.md)
- [7 U.S.C. § 626](/legal/us/code/title-07/chapter-26/section-626.md)
- [10 U.S.C. § 2281](/legal/us/code/title-10/chapter-136/section-2281.md)
- [12 U.S.C. § 635](/legal/us/code/title-12/chapter-6a/section-635.md)
- [12 U.S.C. § 635a](/legal/us/code/title-12/chapter-6a/section-635a.md)
- [12 U.S.C. § 635i3](/legal/us/code/title-12/chapter-6a/section-635i-3.md)
- [15 U.S.C. § 18b](/legal/us/code/title-15/chapter-1/section-18b.md)
- [15 U.S.C. § 2952](/legal/us/code/title-15/chapter-56a/section-2952.md)
- [15 U.S.C. § 3710](/legal/us/code/title-15/chapter-63/section-3710.md)
- [15 U.S.C. § 3718](/legal/us/code/title-15/chapter-63/section-3718.md)
- [15 U.S.C. § 4656](/legal/us/code/title-15/chapter-72a/section-4656.md)
- …and 119 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,49 @@
---
type: Body
title: "Department of Veterans Affairs"
classification: "executive-department"
chamber: "executive"
code: "EXEC-VETERANS-AFFAIRS"
head: "us/executive/veterans-affairs/secretary"
sources:
- field: definition
source: "5 U.S.C. § 101 (Executive departments)"
confidence: official
tags: [body, executive, executive-department]
timestamp: "2026-07-03"
---
# Department of Veterans Affairs
Executive department, established by 5 U.S.C. § 101. Headed by the [Secretary of Veterans Affairs](/us/executive/veterans-affairs/secretary.md).
## Referenced by the U.S. Code
316 sections of the U.S. Code reference this department. A sample:
- [2 U.S.C. § 900](/legal/us/code/title-02/chapter-20/section-900.md)
- [2 U.S.C. § 905](/legal/us/code/title-02/chapter-20/section-905.md)
- [5 U.S.C. § 101](/legal/us/code/title-05/chapter-1/section-101.md)
- [5 U.S.C. § 2108](/legal/us/code/title-05/chapter-21/section-2108.md)
- [5 U.S.C. § 3304](/legal/us/code/title-05/chapter-33/section-3304.md)
- [5 U.S.C. § 3310](/legal/us/code/title-05/chapter-33/section-3310.md)
- [5 U.S.C. § 3330d](/legal/us/code/title-05/chapter-33/section-3330d.md)
- [5 U.S.C. § 422](/legal/us/code/title-05/chapter-4/section-422.md)
- [5 U.S.C. § 4301](/legal/us/code/title-05/chapter-43/section-4301.md)
- [5 U.S.C. § 5102](/legal/us/code/title-05/chapter-51/section-5102.md)
- [5 U.S.C. § 5314](/legal/us/code/title-05/chapter-53/section-5314.md)
- [5 U.S.C. § 5315](/legal/us/code/title-05/chapter-53/section-5315.md)
- [5 U.S.C. § 5342](/legal/us/code/title-05/chapter-53/section-5342.md)
- [5 U.S.C. § 6329a](/legal/us/code/title-05/chapter-63/section-6329a.md)
- [5 U.S.C. § 6329b](/legal/us/code/title-05/chapter-63/section-6329b.md)
- [5 U.S.C. § 6329c](/legal/us/code/title-05/chapter-63/section-6329c.md)
- [5 U.S.C. § 7103](/legal/us/code/title-05/chapter-71/section-7103.md)
- [5 U.S.C. § 8101](/legal/us/code/title-05/chapter-81/section-8101.md)
- [5 U.S.C. § 8116](/legal/us/code/title-05/chapter-81/section-8116.md)
- [5 U.S.C. § 8311](/legal/us/code/title-05/chapter-83/section-8311.md)
- [5 U.S.C. § 8339](/legal/us/code/title-05/chapter-83/section-8339.md)
- [5 U.S.C. § 8903c](/legal/us/code/title-05/chapter-89/section-8903c.md)
- [5 U.S.C. § 8905a](/legal/us/code/title-05/chapter-89/section-8905a.md)
- [6 U.S.C. § 772](/legal/us/code/title-06/chapter-2/section-772.md)
- [7 U.S.C. § 2015](/legal/us/code/title-07/chapter-51/section-2015.md)
- …and 291 more (full set in data/section_authority_edges.jsonl)
@@ -0,0 +1,50 @@
---
type: Body
title: "Secretary of Veterans Affairs"
classification: "executive-office"
chamber: "executive"
code: "EXEC-VETERANS-AFFAIRS-SECRETARY"
parent: "us/executive/veterans-affairs"
schedule_level: "I"
sources:
- field: definition
source: "5 U.S.C. § 5312 (Executive Schedule, Level I)"
confidence: official
tags: [body, executive, executive-office]
timestamp: "2026-07-03"
---
# Secretary of Veterans Affairs
Cabinet-rank office (Executive Schedule Level I, 5 U.S.C. § 5312), head of the [Department of Veterans Affairs](/us/executive/veterans-affairs/index.md).
## Empowered by the U.S. Code
240 sections of the U.S. Code vest authority in this office. A sample:
- [3 U.S.C. § 19](/legal/us/code/title-03/chapter-1/section-19.md)
- [5 U.S.C. § 5312](/legal/us/code/title-05/chapter-53/section-5312.md)
- [5 U.S.C. § 5355](/legal/us/code/title-05/chapter-53/section-5355.md)
- [5 U.S.C. § 8347](/legal/us/code/title-05/chapter-83/section-8347.md)
- [5 U.S.C. § 8903c](/legal/us/code/title-05/chapter-89/section-8903c.md)
- [7 U.S.C. § 1446a](/legal/us/code/title-07/chapter-35a/section-1446a.md)
- [7 U.S.C. § 7517](/legal/us/code/title-07/chapter-102/section-7517.md)
- [8 U.S.C. § 1153](/legal/us/code/title-08/chapter-12/section-1153.md)
- [8 U.S.C. § 1643](/legal/us/code/title-08/chapter-14/section-1643.md)
- [10 U.S.C. § 1074](/legal/us/code/title-10/chapter-55/section-1074.md)
- [10 U.S.C. § 1074f](/legal/us/code/title-10/chapter-55/section-1074f.md)
- [10 U.S.C. § 1074m](/legal/us/code/title-10/chapter-55/section-1074m.md)
- [10 U.S.C. § 1076c](/legal/us/code/title-10/chapter-55/section-1076c.md)
- [10 U.S.C. § 1104](/legal/us/code/title-10/chapter-55/section-1104.md)
- [10 U.S.C. § 1104a](/legal/us/code/title-10/chapter-55/section-1104a.md)
- [10 U.S.C. § 1134a](/legal/us/code/title-10/chapter-57/section-1134a.md)
- [10 U.S.C. § 1142](/legal/us/code/title-10/chapter-58/section-1142.md)
- [10 U.S.C. § 1144](/legal/us/code/title-10/chapter-58/section-1144.md)
- [10 U.S.C. § 1145](/legal/us/code/title-10/chapter-58/section-1145.md)
- [10 U.S.C. § 1155](/legal/us/code/title-10/chapter-58/section-1155.md)
- [10 U.S.C. § 1175a](/legal/us/code/title-10/chapter-59/section-1175a.md)
- [10 U.S.C. § 1216](/legal/us/code/title-10/chapter-61/section-1216.md)
- [10 U.S.C. § 1216a](/legal/us/code/title-10/chapter-61/section-1216a.md)
- [10 U.S.C. § 1413a](/legal/us/code/title-10/chapter-71/section-1413a.md)
- [10 U.S.C. § 1414](/legal/us/code/title-10/chapter-71/section-1414.md)
- …and 215 more (full set in data/section_authority_edges.jsonl)
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -7,7 +7,7 @@
"properties": { "properties": {
"type": { "type": "string", "enum": ["Body"] }, "type": { "type": "string", "enum": ["Body"] },
"title": { "type": "string" }, "title": { "type": "string" },
"classification": { "type": "string", "enum": ["house", "senate", "executive", "committee", "subcommittee"] }, "classification": { "type": "string", "enum": ["house", "senate", "executive", "executive-department", "executive-agency", "executive-office", "committee", "subcommittee"] },
"chamber": { "type": "string", "enum": ["house", "senate", "joint", "executive"] }, "chamber": { "type": "string", "enum": ["house", "senate", "joint", "executive"] },
"code": { "type": "string" }, "code": { "type": "string" },
"parent": { "type": "string" }, "parent": { "type": "string" },
+95
View File
@@ -756,6 +756,43 @@ def city_arrays(counties):
return "[" + ", ".join(yval(c) for c in counties) + "]" return "[" + ", ".join(yval(c) for c in counties) + "]"
# --------------------------------------------------------------------------- #
# Executive branch nodes + the authority axis (§ -> office)
#
# The Code empowers the executive branch, but the mirror only had legislative
# Bodies. These nodes are minted from the Code's own enumerations — 5 U.S.C.
# §101 (the departments) and §5312 (Executive Schedule Level I, the cabinet-rank
# officers) — and the section_authority_edges (a committed input from
# scripts/extract_authority.py) render as reciprocal "empowered by" links here.
# The 59,740 section files are never touched; the edge lives on the office node.
# --------------------------------------------------------------------------- #
def exec_body_file(title, classification, code, extra_fm, sources, intro,
auth_header, auth_verb, edges, cap=25):
lines = ["type: Body", f"title: {yval(title)}",
f"classification: {yval(classification)}",
'chamber: "executive"', f"code: {yval(code)}"]
lines += extra_fm
lines.append("sources:")
for field, src in sources:
lines += [f" - field: {field}", f" source: {yval(src)}"]
lines += ["confidence: official",
f"tags: [body, executive, {classification}]",
f"timestamp: {yval(CONGRESS_DATE)}"]
body = [f"# {title}", "", intro, ""]
if edges:
sample = " A sample:" if len(edges) > cap else ""
body += [f"## {auth_header}", "",
f"{len(edges):,} sections of the U.S. Code {auth_verb}.{sample}", ""]
for e in edges[:cap]:
body.append(f"- [{e['citation']}](/{e['path']})")
if len(edges) > cap:
body.append(f"- …and {len(edges) - cap:,} more (full set in "
"data/section_authority_edges.jsonl)")
body.append("")
return "---\n" + "\n".join(lines) + "\n---\n\n" + "\n".join(body).rstrip() + "\n"
# --------------------------------------------------------------------------- # # --------------------------------------------------------------------------- #
# main # main
# --------------------------------------------------------------------------- # # --------------------------------------------------------------------------- #
@@ -1011,11 +1048,69 @@ def main():
n_city += 1 n_city += 1
n_skel += 1 n_skel += 1
# ---- executive branch nodes + authority axis (§ -> office) ----
exec_offices = load("executive_offices.jsonl")
authority = load("section_authority_edges.jsonl")
edges_by_target = {}
for e in authority:
edges_by_target.setdefault(e["target"], []).append(e)
for lst in edges_by_target.values():
lst.sort(key=lambda e: (e["title"] or 0, e["section"]))
EXEC = OUT / "us" / "executive"
n_exec = 0
for r in sorted(exec_offices, key=lambda x: x["slug"]):
dept_id = f"us/executive/{r['slug']}"
head = r["head"]
office_id = f"{dept_id}/{head['slug']}"
is_dept = r["kind"] == "department"
estab = ("5 U.S.C. § 101 (Executive departments)" if is_dept
else "5 U.S.C. § 5312 (Executive Schedule, Level I)")
# department / agency node
dept_extra = [f"head: {yval(office_id)}"]
if r.get("parent"):
dept_extra.append(f"parent: {yval(r['parent'])}")
if is_dept:
intro = (f"Executive department, established by 5 U.S.C. § 101. "
f"Headed by the [{head['name']}](/{office_id}.md).")
else:
par = (f" It sits within the [Executive Office of the President]"
f"(/{r['parent']}.md)." if r.get("parent") else "")
intro = (f"Executive agency. Its head, the [{head['name']}](/{office_id}.md), "
f"is a Level I position in the Executive Schedule (5 U.S.C. § 5312).{par}")
(EXEC / r["slug"]).mkdir(parents=True, exist_ok=True)
(EXEC / r["slug"] / "index.md").write_text(exec_body_file(
title=r["name"], classification="executive-department" if is_dept else "executive-agency",
code=f"EXEC-{r['slug'].upper()}", extra_fm=dept_extra,
sources=[("definition", estab)], intro=intro,
auth_header="Referenced by the U.S. Code",
auth_verb=f"reference this {'department' if is_dept else 'agency'}",
edges=edges_by_target.get(dept_id, [])), encoding="utf-8")
# head office node (the position the law empowers)
seat = "department" if is_dept else "agency"
office_intro = (f"Cabinet-rank office (Executive Schedule Level I, 5 U.S.C. § 5312), "
f"head of the [{r['name']}](/{dept_id}/index.md).")
(EXEC / r["slug"] / f"{head['slug']}.md").write_text(exec_body_file(
title=head["name"], classification="executive-office",
code=f"EXEC-{r['slug'].upper()}-{head['slug'].upper()}",
extra_fm=[f"parent: {yval(dept_id)}", 'schedule_level: "I"'],
sources=[("definition", "5 U.S.C. § 5312 (Executive Schedule, Level I)")],
intro=office_intro,
auth_header="Empowered by the U.S. Code",
auth_verb="vest authority in this office",
edges=edges_by_target.get(office_id, [])), encoding="utf-8")
n_exec += 2
print(f"candidate files: {n_cand} county jurisdictions: {n_county} " print(f"candidate files: {n_cand} county jurisdictions: {n_county} "
f"CD nodes: {n_cd} state-leg district nodes: {n_sld} " f"CD nodes: {n_cd} state-leg district nodes: {n_sld} "
f"county->district edges: {len(county_district_edges)}") f"county->district edges: {len(county_district_edges)}")
print(f"city jurisdictions: {n_city} (filled {n_filled}: {n_resolved} GEOID-resolved; " print(f"city jurisdictions: {n_city} (filled {n_filled}: {n_resolved} GEOID-resolved; "
f"skeleton {n_skel}; skipped {n_skipped})") f"skeleton {n_skel}; skipped {n_skipped})")
print(f"executive nodes: {n_exec} (departments/agencies + offices) "
f"authority edges: {len(authority)} across "
f"{len({e['section'] for e in authority})} sections")
print(f"person files: {len(person_files)} " print(f"person files: {len(person_files)} "
f"(federal enriched: {matched}/{sum(1 for r in officeholders if r['level']=='federal')})") f"(federal enriched: {matched}/{sum(1 for r in officeholders if r['level']=='federal')})")
print(f"body files: {len(bodies)} " print(f"body files: {len(bodies)} "
+121
View File
@@ -0,0 +1,121 @@
#!/usr/bin/env python3
"""Extract the authority axis: U.S. Code section -> executive office/department.
Named-reference extraction (v1): matches the canonical office and department
names in data/executive_offices.jsonl against each section's operative text
(the '## Text' body, excluding historical Notes), and emits one edge per
(section, target) into data/section_authority_edges.jsonl.
Deterministic and mechanical no NLP, no network. This is a committed input,
generated like county_district_edges.jsonl; scripts/build.py renders it into
reciprocal links on the executive office nodes (the section files are never
touched). Relative references ("the Secretary") are out of scope for v1.
Usage: python3 scripts/extract_authority.py
"""
import json
import re
from pathlib import Path
REPO = Path(__file__).resolve().parent.parent
OFFICES = REPO / "data" / "executive_offices.jsonl"
CODE = REPO / "legal" / "us" / "code"
OUT = REPO / "data" / "section_authority_edges.jsonl"
# An alias immediately preceded by one of these is a *different*, lower office
# (a Deputy/Assistant/Under Secretary, a Solicitor/Inspector General, etc.) —
# not the cabinet-rank principal, so it must not match.
SUBORDINATE_PREFIX = re.compile(
r"(?:Deputy|Assistant|Associate|Under|Acting|Solicitor|Inspector|Principal|"
r"Special|Vice|Former|Additional)\s*$")
def load_targets():
"""Return alias-matchers sorted longest-first: (regex, target_id, name, kind, rel)."""
targets = []
for line in OFFICES.open():
r = json.loads(line)
dept_id = f"us/executive/{r['slug']}"
office_id = f"{dept_id}/{r['head']['slug']}"
rel_kind = "references" # a department/agency mention
for alias in r["aliases"]:
targets.append((alias, dept_id, r["name"], r["kind"], rel_kind))
for alias in r["head"]["aliases"]: # the officer the law empowers
targets.append((alias, office_id, r["head"]["name"], "office", "empowers"))
# longest alias first so "Secretary of the Treasury" wins over any substring
targets.sort(key=lambda t: -len(t[0]))
return [(re.compile(r"\b" + re.escape(a) + r"\b"), tid, name, kind, rel)
for a, tid, name, kind, rel in targets]
def operative_text(md):
"""The section's live text only — frontmatter and historical Notes dropped."""
parts = md.split("---", 2)
body = parts[2] if len(parts) >= 3 else md
return re.split(r"\n##\s+Notes", body, maxsplit=1)[0]
def frontmatter_field(md, key):
m = re.search(rf"(?m)^{key}:\s*(.+)$", md.split("---", 2)[1] if "---" in md else md)
if not m:
return None
v = m.group(1).strip()
return v[1:-1] if len(v) >= 2 and v[0] == v[-1] == '"' else v
def main():
targets = load_targets()
edges = []
for path in sorted(CODE.rglob("section-*.md")):
md = path.read_text(encoding="utf-8")
text = operative_text(md)
section = frontmatter_field(md, "source_identifier")
citation = frontmatter_field(md, "citation")
title_num = frontmatter_field(md, "title_number")
if not section:
continue
rel_path = str(path.relative_to(REPO))
# (target_id) -> [name, kind, rel, mentions]; keep the most-specific hit
hits = {}
for rx, tid, name, kind, rel in targets:
occ = 0
for m in rx.finditer(text):
pre = text[max(0, m.start() - 24):m.start()]
if SUBORDINATE_PREFIX.search(pre):
continue
occ += 1
if occ:
cur = hits.get(tid)
if cur is None:
hits[tid] = [name, kind, rel, occ]
else:
cur[3] += occ
for tid, (name, kind, rel, mentions) in hits.items():
edges.append({
"section": section,
"citation": citation,
"path": rel_path,
"title": int(title_num) if title_num and title_num.isdigit() else None,
"target": tid,
"target_name": name,
"target_kind": kind,
"relationship": rel,
"mentions": mentions,
})
edges.sort(key=lambda e: (e["section"], e["target"]))
with OUT.open("w", encoding="utf-8") as f:
for e in edges:
f.write(json.dumps(e, ensure_ascii=False) + "\n")
sections = len({e["section"] for e in edges})
offices = len({e["target"] for e in edges if e["target_kind"] == "office"})
print(f"authority edges: {len(edges)} "
f"(sections with authority: {sections}; distinct targets hit: {len({e['target'] for e in edges})}; "
f"office targets: {offices})")
print(f"wrote {OUT.relative_to(REPO)}")
if __name__ == "__main__":
main()