documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "FSA", document_type = "Rule" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, 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-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-2020-0006-0001 | FSA | Coronavirus Food Assistance Program 2.0 FSA-2020-0006 | Coronavirus Food Assistance Program | Rule | 2020-09-22T04:00:00Z | 2020 | 9 | 2020-09-22T04:00:00Z | 2020-09-25T12:12:19Z | 2020-20844 | 0 | 0 | 090000648486eda9 | ||
| 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-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 | ||
| FSA-2020-0004-1051 | FSA | Coronavirus Food Assistance Program FSA-2020-0004 | Coronavirus Food Assistance Program; Correction | Rule | 2020-06-12T04:00:00Z | 2020 | 6 | 2020-06-12T04:00:00Z | 2020-06-19T14:08:56Z | 2020-12528 | 0 | 0 | 09000064846e8980 | ||
| FSA-2020-0004-0002 | FSA | Coronavirus Food Assistance Program FSA-2020-0004 | Coronavirus Food Assistance Program | Rule | 2020-05-21T04:00:00Z | 2020 | 5 | 2020-05-21T04:00:00Z | 2020-05-21T14:36:56Z | 2020-11025 | 0 | 0 | 090000648465b647 | ||
| FSA-2019-0008-0003 | FSA | Agriculture Risk Coverage and Price Loss Coverage Programs FSA-2019-0008 | Agriculture Risk Coverage and Price Loss Coverage Programs and Noninsured Crop Assistance Program; Correction | Rule | 2020-03-23T04:00:00Z | 2020 | 3 | 2020-03-25T04:00:00Z | 2020-03-25T12:46:03Z | 2020-05399 | 0 | 0 | 0900006484466477 | ||
| FSA-2019-0011-0001 | FSA | Supplemental Agricultural Disaster Assistance Programs FSA-2019-0011 | Supplemental Agricultural Disaster Assistance Programs | Rule | 2020-02-26T05:00:00Z | 2020 | 2 | 2020-02-26T05:00:00Z | 2020-04-09T03:59:59Z | 2020-02-27T14:55:13Z | 2020-03841 | 0 | 0 | 09000064843b4f12 |
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;