federal_register_agencies
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where document_number = "02-29050"
This data as json, CSV (advanced)
| Link | document_number | agency_id |
|---|---|---|
| 02-29050,12 | Servicing and Collections 02-29050 | Agriculture Department 12 |
| 02-29050,157 | Servicing and Collections 02-29050 | Farm Service Agency 157 |
| 02-29050,456 | Servicing and Collections 02-29050 | Rural Business-Cooperative Service 456 |
| 02-29050,458 | Servicing and Collections 02-29050 | Rural Housing Service 458 |
| 02-29050,460 | Servicing and Collections 02-29050 | Rural Utilities Service 460 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE federal_register_agencies (
document_number TEXT REFERENCES federal_register(document_number),
agency_id INTEGER REFERENCES agencies(id),
PRIMARY KEY (document_number, agency_id)
);
CREATE INDEX idx_fra_agency ON federal_register_agencies(agency_id);