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 = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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-2014-0017-0001 | FSA | Farm Loan Programs; Programs Changes FSA-2014-0017 | Farm Loan Programs | Rule | 2014-12-31T05:00:00Z | 2014 | 12 | 2014-12-31T05:00:00Z | 2014-12-31T16:57:02Z | 2014-30172 | 0 | 0 | 090000648199bed9 | ||
| FSA_FRDOC_0001-0242 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Uniform Administrative Requirements, Cost Principles, and Audit Requirements for Federal Awards: Federal Awarding Agency Regulatory Implementation | Rule | 2014-12-19T05:00:00Z | 2014 | 12 | 2014-12-19T05:00:00Z | 2015-02-18T04:59:59Z | 2014-12-19T14:23:23Z | 2014-28697 | 0 | 0 | 0900006481985da0 | |
| FSA-2014-0016-0001 | FSA | Noninsured Crop Disaster Assistance Program FSA-2014-0016 | Noninsured Crop Disaster Assistance Program | Rule | 2014-12-15T05:00:00Z | 2014 | 12 | 2014-12-15T05:00:00Z | 2015-02-14T04:59:59Z | 2015-06-23T01:30:37Z | 2014-29082 | 0 | 0 | 0900006481976d43 | |
| FSA-2014-0013-0001 | FSA | Farm Loan Programs; Entity Eligibility FSA-2014-0013 | Farm Loan Programs; Entity Eligibility | Rule | 2014-10-08T04:00:00Z | 2014 | 10 | 2014-10-08T04:00:00Z | 2014-12-09T04:59:59Z | 2014-12-13T03:02:17Z | 2014-24046 | 0 | 0 | 09000064818b1c34 | |
| FSA-2014-0010-0001 | FSA | Agriculture Risk Coverage and Price Loss Coverage Programs FSA-2014-0010 | Agriculture Risk Coverage and Price Loss Coverage Programs | Rule | 2014-09-26T04:00:00Z | 2014 | 9 | 2014-09-26T04:00:00Z | 2018-04-02T19:52:52Z | 2014-22879 | 0 | 0 | 0900006481892ab5 | ||
| FSA_FRDOC_0001-0233 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Methodology and Formulas for Allocation of Loan and Grant Program Funds | Rule | 2014-09-19T04:00:00Z | 2014 | 9 | 2014-09-19T04:00:00Z | 2014-09-19T12:39:27Z | 2014-22309 | 0 | 0 | 090000648187edd3 | ||
| FSA_FRDOC_0001-0231 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Eliminate the 6-Day Reservation Period Requirement for Rural Development Obligations | Rule | 2014-09-18T04:00:00Z | 2014 | 9 | 2014-09-18T04:00:00Z | 2014-11-18T04:59:59Z | 2014-09-18T12:27:33Z | 2014-21704 | 0 | 0 | 090000648187b5ce | |
| FSA_FRDOC_0001-0229 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Single Family Housing Guaranteed Loan Program; Correction | Rule | 2014-08-22T04:00:00Z | 2014 | 8 | 2014-08-22T04:00:00Z | 2014-08-22T13:13:57Z | 2014-19958 | 0 | 0 | 090000648183b3da | ||
| FSA_FRDOC_0001-0226 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Intermediary Relending Program | Rule | 2014-06-03T04:00:00Z | 2014 | 6 | 2014-06-03T04:00:00Z | 2014-06-03T13:17:15Z | 2014-12633 | 0 | 0 | 0900006481725866 |
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;