documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "FSA", document_type = "Rule" and posted_year = 2011 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, subtype, posted_month, 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-0174 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Intergovernmental Review | Rule | 2011-12-27T05:00:00Z | 2011 | 12 | 2011-12-27T05:00:00Z | 2014-01-18T17:22:31Z | 2011-33025 | 0 | 0 | 0900006480f898cb | ||
| FSA_FRDOC_0001-0173 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Amending Rural Business Investment Program | Rule | 2011-12-23T05:00:00Z | 2011 | 12 | 2011-12-23T05:00:00Z | 2012-01-24T04:59:59Z | 2014-01-18T16:58:31Z | 2011-32570 | 0 | 0 | 0900006480f8888a | |
| FSA_FRDOC_0001-0172 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Farm Loan Programs Loan Making Activities | Rule | 2011-12-02T05:00:00Z | 2011 | 12 | 2011-12-02T05:00:00Z | 2014-01-17T22:25:10Z | 2011-31046 | 0 | 0 | 0900006480f7a2ac | ||
| FSA-2011-0020-0001 | FSA | Guaranteed Loan Fees FSA-2011-0020 | Guaranteed Loan Fees | Rule | 2011-09-20T04:00:00Z | 2011 | 9 | 2011-09-20T04:00:00Z | 2011-11-22T04:59:59Z | 2014-01-18T19:50:22Z | 2011-23724 | 0 | 0 | 0900006480f23eb6 | |
| FSA-2011-0016-0001 | FSA | Emergency Assistance for Livestock, Honeybees, and Farm-Raised Fish Program, Livestock Indemnity Program, and General Provisions for Supplemental Agricultural Disaster Assistance Programs FSA-2011-0016 | Emergency Assistance for Livestock, Honeybees, and Farm-Raised FishProgram, etc.: Technical Amendment | Rule | 2011-08-31T04:00:00Z | 2011 | 8 | 2011-08-31T04:00:00Z | 2014-01-18T19:52:47Z | 2011-22323 | 0 | 0 | 0900006480f0c5d3 | ||
| FSA_FRDOC_0001-0161 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Single Family Housing Guaranteed Loan Program | Rule | 2011-05-31T04:00:00Z | 2011 | 5 | 2011-05-31T04:00:00Z | 2014-01-17T21:37:55Z | 2011-13061 | 0 | 0 | 0900006480e35375 | ||
| FSA-2011-0006-0001 | FSA | Loan Servicing; Farm Loan Programs FSA-2011-0006 | Loan Servicing: Farm Loan Programs | Rule | Final | 2011-01-28T05:00:00Z | 2011 | 1 | 2011-01-28T05:00:00Z | 2014-01-17T21:37:49Z | 2011-01917 | 0 | 0 | 0900006480bd505c | |
| FSA-2011-0004-0001 | FSA | Crop Assistance Program FSA-2011-0004 | Crop Assistance Program | Rule | Interim Final | 2011-01-25T05:00:00Z | 2011 | 1 | 2011-01-25T05:00:00Z | 2011-06-11T17:26:10Z | 0 | 0 | 0900006480bd2793 | ||
| FSA-2011-0003-0001 | FSA | Conservation Loan Program FSA-2011-0003 | Conservation Loan Program | Rule | Interim Final | 2011-01-24T05:00:00Z | 2011 | 1 | 2011-01-24T05:00:00Z | 2010-11-03T03:59:59Z | 2011-06-11T17:26:08Z | 2010-22070 | 0 | 0 | 0900006480bd0dff |
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;