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 = 2020 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), comment_end_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-0352 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2020-11-09T05:00:00Z | 2020 | 11 | 2020-11-09T05:00:00Z | 2020-12-10T04:59:59Z | 2020-12-06T02:00:42Z | 2020-24827 | 0 | 0 | 090000648495376c | |
| FSA_FRDOC_0001-0350 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Strategic Economic and Community Development | Rule | 2020-09-22T04:00:00Z | 2020 | 9 | 2020-09-22T04:00:00Z | 2020-09-22T11:52:23Z | 2020-19825 | 0 | 0 | 090000648486ee03 | ||
| FSA_FRDOC_0001-0349 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Special Authority To Enable Funding of Broadband and Smart Utility Facilities Across Select Rural Development Programs | Rule | 2020-09-15T04:00:00Z | 2020 | 9 | 2020-09-15T04:00:00Z | 2020-11-17T04:59:59Z | 2020-09-18T01:01:20Z | 2020-19033 | 0 | 0 | 09000064848591cd | |
| FSA_FRDOC_0001-0346 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Notice of Funds Availability for the Organic Certification Cost Share Program | Notice | 2020-08-10T04:00:00Z | 2020 | 8 | 2020-08-10T04:00:00Z | 2020-08-10T11:48:46Z | 2020-17385 | 0 | 0 | 09000064847e9e3c | ||
| FSA_FRDOC_0001-0344 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Funding Availability: Coronavirus Food Assistance Program Additional Eligible Commodities | Rule | 2020-07-10T04:00:00Z | 2020 | 7 | 2020-07-10T04:00:00Z | 2020-07-10T12:17:08Z | 2020-14854 | 0 | 0 | 090000648473b301 | ||
| FSA_FRDOC_0001-0345 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Coronavirus Food Assistance Program; Correction | Rule | 2020-07-10T04:00:00Z | 2020 | 7 | 2020-07-10T04:00:00Z | 2020-07-10T12:17:28Z | 2020-14855 | 0 | 0 | 090000648473b30a | ||
| FSA_FRDOC_0001-0343 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Debt Management | Rule | 2020-06-17T04:00:00Z | 2020 | 6 | 2020-06-17T04:00:00Z | 2020-06-17T11:36:48Z | 2020-09447 | 0 | 0 | 09000064846f5dcb |
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;