documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "USDA" and document_type = "Supporting & Related Material" sorted by posted_date descending
This data as json, CSV (advanced)
These facets timed out: agency_id, posted_year
document_type 1
- Supporting & Related Material · 9 ✖
| id | agency_id | docket_id | title | document_type | subtype | posted_date ▲ | posted_year | posted_month | comment_start_date | comment_end_date | last_modified | fr_doc_num | open_for_comment | withdrawn | object_id |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| USDA-2025-0006-0002 | USDA | International Standard Setting Activities USDA-2025-0006 | Attachment 1_Sanitary and Phytosanitary Activities of Codex | Supporting & Related Material | 2025-05-30T04:00:00Z | 2025 | 5 | 2025-05-30T23:14:40Z | 0 | 0 | 09000064b8dcc995 | ||||
| USDA-2023-0009-0002 | USDA | Federal Strategy for Advancing Greenhouse Gas Measurement and Monitoring for Agriculture and Forestry USDA-2023-0009 | Federal Strategy to Advance Greenhouse Gas Emissions Measurement and Monitoring for the Agriculture and Forest Sectors | Supporting & Related Material | 2023-07-12T04:00:00Z | 2023 | 7 | 2023-07-12T14:14:36Z | 0 | 0 | 0900006485c84d64 | ||||
| USDA-2023-0007-0002 | USDA | Notice of Request for Public Comment on Updates to Technical Guidelines for Quantifying Greenhouse Gas (GHG) Emissions and Carbon Sequestration at the Entity-scale for Agriculture and Forestry USDA-2023-0007 | Updates to Quantifying Greenhouse Gas Fluxes in Agriculture and Forestry: Methods for Entity-Scale Inventory. | Supporting & Related Material | 2023-06-09T04:00:00Z | 2023 | 6 | 2023-06-09T13:06:25Z | 0 | 0 | 0900006485adfb4a | ||||
| USDA-2023-0007-0003 | USDA | Notice of Request for Public Comment on Updates to Technical Guidelines for Quantifying Greenhouse Gas (GHG) Emissions and Carbon Sequestration at the Entity-scale for Agriculture and Forestry USDA-2023-0007 | Forest Management Chapter | Supporting & Related Material | 2023-06-09T04:00:00Z | 2023 | 6 | 2023-06-09T13:06:35Z | 0 | 0 | 0900006485adfb4b | ||||
| USDA-2023-0002-0003 | USDA | Build America, Buy America Waiver Request Data Collection USDA-2023-0002 | BABA Waiver Request Common Form 1_26_2023-508 | Supporting & Related Material | 2023-02-01T05:00:00Z | 2023 | 2 | 2023-02-01T18:03:52Z | 0 | 0 | 090000648560e561 | ||||
| USDA-2021-0012-0002 | USDA | Pandemic Assistance Programs USDA-2021-0012 | FSA Megarule CBA 12 23 2022 clean | Supporting & Related Material | 2023-01-19T05:00:00Z | 2023 | 1 | 2023-01-19T21:27:41Z | 0 | 0 | 09000064855f9efe | ||||
| USDA-2015-0001-0002 | USDA | Conservation Compliance USDA-2015-0001 | Conservation Compliance Cost Benefit Analysis March 17, 2015 | Supporting & Related Material | 2015-04-28T04:00:00Z | 2015 | 4 | 2015-04-28T18:52:54Z | 0 | 0 | 0900006481ab814c | ||||
| USDA-2013-0003-0003 | USDA | Science-Based Methods for Entity-Scale Quantification of Greenhouse Gas Sources and Sinks from Agriculture and Forestry Practices USDA-2013-0003 | N2O Methodology Supplemental Data | Supporting & Related Material | 2013-08-27T04:00:00Z | 2013 | 8 | 2013-08-27T14:24:03Z | 0 | 0 | 09000064813c6e2e | ||||
| USDA-2013-0003-0002 | USDA | Science-Based Methods for Entity-Scale Quantification of Greenhouse Gas Sources and Sinks from Agriculture and Forestry Practices USDA-2013-0003 | Report on Science-Based Methods for Entity-Scale Quantification of Greenhouse Gas Sources andSinks from Agriculture and Forestry Practices | Supporting & Related Material | 2013-08-27T04:00:00Z | 2013 | 8 | 2013-08-27T14:24:03Z | 0 | 0 | 09000064813c6e2d |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE documents (
id TEXT PRIMARY KEY,
agency_id TEXT,
docket_id TEXT REFERENCES dockets(id),
title TEXT,
document_type TEXT,
subtype TEXT,
posted_date TEXT,
posted_year INTEGER,
posted_month INTEGER,
comment_start_date TEXT,
comment_end_date TEXT,
last_modified TEXT,
fr_doc_num TEXT,
open_for_comment INTEGER,
withdrawn INTEGER,
object_id TEXT
);
CREATE INDEX idx_docs_agency ON documents(agency_id);
CREATE INDEX idx_docs_docket ON documents(docket_id);
CREATE INDEX idx_docs_date ON documents(posted_date);
CREATE INDEX idx_docs_year ON documents(posted_year);
CREATE INDEX idx_docs_type ON documents(document_type);
CREATE INDEX idx_docs_frnum ON documents(fr_doc_num);
CREATE INDEX idx_docs_comment_end ON documents(comment_end_date) WHERE comment_end_date IS NOT NULL AND withdrawn = 0;