documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "AMS_FRDOC_0001" and posted_year = 2026 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, posted_date (date), comment_start_date (date), last_modified (date)
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| AMS_FRDOC_0001-2698 | AMS | FR FEED DOCKET. PLEASE DO NOT EDIT OR CHANGE ASSIGNMENTS AMS_FRDOC_0001 | Popcorn Promotion, Research, and Consumer Information Order | Rule | 2026-03-10T04:00:00Z | 2026 | 3 | 2026-03-10T04:00:00Z | 2026-03-10T16:55:31Z | 2026-04694 | 0 | 0 | 09000064b9206c19 | ||
| AMS_FRDOC_0001-2693 | AMS | FR FEED DOCKET. PLEASE DO NOT EDIT OR CHANGE ASSIGNMENTS AMS_FRDOC_0001 | Promotion, Research, and Information Order: Christmas Tree | Rule | 2026-03-09T04:00:00Z | 2026 | 3 | 2026-03-09T04:00:00Z | 2026-03-09T16:55:53Z | 2026-04586 | 0 | 0 | 09000064b92008ce | ||
| AMS_FRDOC_0001-2695 | AMS | FR FEED DOCKET. PLEASE DO NOT EDIT OR CHANGE ASSIGNMENTS AMS_FRDOC_0001 | Paper and Paper-Based Packaging Promotion, Research and Information Order Termination | Rule | 2026-03-09T04:00:00Z | 2026 | 3 | 2026-03-09T04:00:00Z | 2026-03-09T16:56:01Z | 2026-04570 | 0 | 0 | 09000064b9200d08 | ||
| AMS_FRDOC_0001-2690 | AMS | FR FEED DOCKET. PLEASE DO NOT EDIT OR CHANGE ASSIGNMENTS AMS_FRDOC_0001 | Cotton Board Rules and Regulations: Adjusting Supplemental Assessment on Imports (2025 Amendments); Withdrawal | Rule | 2026-03-02T05:00:00Z | 2026 | 3 | 2026-03-02T05:00:00Z | 2026-03-02T18:40:50Z | 2026-04115 | 0 | 0 | 09000064b91e8fde | ||
| AMS_FRDOC_0001-2687 | AMS | FR FEED DOCKET. PLEASE DO NOT EDIT OR CHANGE ASSIGNMENTS AMS_FRDOC_0001 | Economic Adjustment Assistance for Textile Mills—Payment Rate | Rule | 2026-02-24T05:00:00Z | 2026 | 2 | 2026-02-24T05:00:00Z | 2026-02-24T18:30:03Z | 2026-03645 | 0 | 0 | 09000064b91d568e | ||
| AMS_FRDOC_0001-2681 | AMS | FR FEED DOCKET. PLEASE DO NOT EDIT OR CHANGE ASSIGNMENTS AMS_FRDOC_0001 | Marketing Order: Onions Grown in South Texas; Hearing | Proposed Rule | 2026-01-23T05:00:00Z | 2026 | 1 | 2026-01-23T05:00:00Z | 2026-01-23T17:31:12Z | 2026-01351 | 0 | 0 | 09000064b917bcc9 |
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;