documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "FSA", document_type = "Proposed Rule" and posted_year = 2011 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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-2012-0003-0001 | FSA | Disaster Designation Process FSA-2012-0003 | Disaster Designation Process | Proposed Rule | 2011-11-14T05:00:00Z | 2011 | 11 | 2011-11-14T05:00:00Z | 2012-01-14T04:59:59Z | 2014-01-17T21:39:33Z | 2011-29011 | 0 | 0 | 0900006480f6baf9 | |
| FSA_FRDOC_0001-0166 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Single Family Housing Guaranteed Loan Program | Proposed Rule | 2011-10-28T04:00:00Z | 2011 | 10 | 2011-10-28T04:00:00Z | 2011-12-28T04:59:59Z | 2014-01-18T17:21:52Z | 2011-27945 | 0 | 0 | 0900006480f5ed5b | |
| FSA_FRDOC_0001-0163 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Retrospective Review under E.O. 13563; Improving Common Acreage Reporting Processes | Proposed Rule | 2011-07-19T04:00:00Z | 2011 | 7 | 2011-07-19T04:00:00Z | 2011-09-20T03:59:59Z | 2014-01-17T21:38:11Z | 2011-17923 | 0 | 0 | 0900006480ec6197 | |
| FSA-2011-0014-0001 | FSA | Agriculture Priorities and Allocations System FSA-2011-0014 | Agriculture Priorities and Allocations System | Proposed Rule | 2011-05-19T04:00:00Z | 2011 | 5 | 2011-05-19T04:00:00Z | 2011-07-19T03:59:59Z | 2014-01-17T21:37:54Z | 2011-12153 | 0 | 0 | 0900006480d79f7a | |
| FSA-2011-0015-0001 | FSA | Community Facility Loans FSA-2011-0015 | Community Facility Loans | Proposed Rule | 2011-04-22T04:00:00Z | 2011 | 4 | 2011-04-22T04:00:00Z | 2011-06-22T03:59:59Z | 2014-01-18T19:45:34Z | 2011-09630 | 0 | 0 | 0900006480c35d1e |
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;