documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "AMS", document_type = "Rule" and posted_year = 2026 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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-SC-23-0084-0009 | AMS | Avocados Grown in South Florida and Imported Avocados; Change in Maturity Requirements AMS-SC-23-0084 | Change in Maturity Requirements: Avocados Grown in South Florida and Imported Avocados | Rule | Final Rule | 2026-03-09T04:00:00Z | 2026 | 3 | 2026-03-09T04:00:00Z | 2026-03-09T18:47:50Z | 2026-04584 | 0 | 0 | 09000064b9200839 | |
| 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-DA-25-0782-0001 | AMS | Reauthorization of Dairy Forward Pricing Program AMS-DA-25-0782 | Reauthorization of Dairy Forward Pricing Program | Rule | Final Rule | 2026-02-27T05:00:00Z | 2026 | 2 | 2026-02-27T05:00:00Z | 2026-03-03T23:32:42Z | 2026-03985 | 0 | 0 | 09000064b91e326f | |
| 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-NOP-25-0089-0001 | AMS | National Organic Program: 2026 Sunset Review and Substance Renewals AMS-NOP-25-0089 | National Organic Program: 2026 Sunset Review and Substance Renewals | Rule | Final Rule | 2026-02-09T05:00:00Z | 2026 | 2 | 2026-02-09T05:00:00Z | 2026-02-10T02:47:01Z | 2026-02548 | 0 | 0 | 09000064b9199da1 |
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;