documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FSA_FRDOC_0001" and posted_year = 2025 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FSA_FRDOC_0001-0455 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Application Fast Track Pilot Program—Extension | Notice | 2025-12-31T05:00:00Z | 2025 | 12 | 2025-12-31T05:00:00Z | 2025-12-31T18:03:06Z | 2025-24060 | 0 | 0 | 09000064b9113f31 | ||
| FSA_FRDOC_0001-0444 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Emergency Commodity Assistance Program | Notice | 2025-08-18T04:00:00Z | 2025 | 8 | 2025-08-18T04:00:00Z | 2025-08-18T16:20:24Z | 2025-15654 | 0 | 0 | 09000064b8f0498a | ||
| FSA_FRDOC_0001-0441 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Removal of Unconstitutional Preferences Based on Race and Sex in Response to Court Ruling | Rule | 2025-07-10T04:00:00Z | 2025 | 7 | 2025-07-10T04:00:00Z | 2025-07-10T16:40:21Z | 2025-12877 | 0 | 0 | 09000064b8e601ad | ||
| FSA_FRDOC_0001-0440 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Removal of Obsolete Regulations | Rule | 2025-06-18T04:00:00Z | 2025 | 6 | 2025-06-18T04:00:00Z | 2025-06-18T15:35:30Z | 2025-11204 | 0 | 0 | 09000064b8e17477 | ||
| FSA_FRDOC_0001-0436 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Removal of Obsolete Regulations | Rule | 2025-05-29T00:00:00Z | 2025 | 5 | 2025-05-29T00:00:00Z | 2025-05-29T15:36:10Z | 2025-09617 | 0 | 0 | 09000064b8dc77b3 | ||
| FSA_FRDOC_0001-0435 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Removal of Obsolete Crop Assistance Program Regulations | Rule | 2025-05-13T00:00:00Z | 2025 | 5 | 2025-05-13T00:00:00Z | 2025-05-21T22:19:49Z | 2025-08298 | 0 | 0 | 09000064b8d477a1 | ||
| FSA_FRDOC_0001-0432 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Funds Availability: Marketing Assistance for Specialty Crops | Notice | 2025-01-08T05:00:00Z | 2025 | 1 | 2025-01-08T05:00:00Z | 2025-04-24T15:41:31Z | 2025-00215 | 0 | 0 | 09000064868a6c23 |
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;