documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FSA-2025-0007" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, posted_date (date), comment_start_date (date), last_modified (date)
document_type 2
agency_id 1
- FSA 7
| 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-2025-0007-0007 | FSA | Supplemental Disaster Relief Program (SDRP) FSA-2025-0007 | Supplemental Disaster Relief Program and Dairy Margin Coverage Program; Correction | Rule | 2026-03-09T04:00:00Z | 2026 | 3 | 2026-03-09T04:00:00Z | 2026-03-09T18:19:30Z | 2026-04531 | 0 | 0 | 09000064b92008cf | ||
| FSA-2025-0007-0006 | FSA | Supplemental Disaster Relief Program (SDRP) FSA-2025-0007 | Agricultural Disaster Indemnity Programs: Approval of Information Collection Request | Rule | 2025-11-20T05:00:00Z | 2025 | 11 | 2025-11-20T05:00:00Z | 2025-11-20T23:37:32Z | 2025-20455 | 0 | 0 | 09000064b908a85a | ||
| FSA-2025-0007-0004 | FSA | Supplemental Disaster Relief Program (SDRP) FSA-2025-0007 | Agricultural Disaster Indemnity Programs | Rule | 2025-11-18T05:00:00Z | 2025 | 11 | 2025-11-18T05:00:00Z | 2025-11-18T20:06:39Z | 2025-20132 | 0 | 0 | 09000064b9087ee1 | ||
| FSA-2025-0007-0005 | FSA | Supplemental Disaster Relief Program (SDRP) FSA-2025-0007 | Combined CBA for SDRP 2, OFSCLP, MLP | Supporting & Related Material | 2025-11-18T05:00:00Z | 2025 | 11 | 2025-11-18T20:45:04Z | 0 | 0 | 09000064b9088107 | ||||
| FSA-2025-0007-0003 | FSA | Supplemental Disaster Relief Program (SDRP) FSA-2025-0007 | Supplemental Disaster Relief Program Stage 1; Approval of Information Collection Request | Rule | 2025-07-25T04:00:00Z | 2025 | 7 | 2025-07-25T04:00:00Z | 2025-07-25T20:14:49Z | 2025-14094 | 0 | 0 | 09000064b8e9cbd0 | ||
| FSA-2025-0007-0002 | FSA | Supplemental Disaster Relief Program (SDRP) FSA-2025-0007 | SDRP Cost-Benefit Analysis | Supporting & Related Material | 2025-07-14T04:00:00Z | 2025 | 7 | 2025-07-15T01:04:46Z | 0 | 0 | 09000064b8e731e5 | ||||
| FSA-2025-0007-0001 | FSA | Supplemental Disaster Relief Program (SDRP) FSA-2025-0007 | Supplemental Disaster Relief Program Stage 1 | Rule | 2025-07-10T04:00:00Z | 2025 | 7 | 2025-07-10T04:00:00Z | 2025-07-15T00:18:34Z | 2025-12803 | 0 | 0 | 09000064b8e60377 |
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;