documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where agency_id = "FSA", document_type = "Rule" and posted_year = 2016 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-2016-0005-0001 | FSA | EZ Guarantee Program and Micro Lender Program (MLP) Status FSA-2016-0005 | EZ Guarantee Program and Micro Lender Program Status | Rule | 2016-10-21T04:00:00Z | 2016 | 10 | 2016-10-21T04:00:00Z | 2017-01-20T04:59:59Z | 2016-12-30T02:00:11Z | 2016-25492 | 0 | 0 | 0900006482330a13 | |
| FSA_FRDOC_0001-0288 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Methodology and Formulas for Allocation of Loan and Grant Program Funds; Correction | Rule | 2016-09-28T04:00:00Z | 2016 | 9 | 2016-09-28T04:00:00Z | 2016-09-28T11:57:07Z | 2016-23228 | 0 | 0 | 090000648227b376 | ||
| FSA_FRDOC_0001-0285 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Environmental Policies and Procedures: Compliance with the National Environmental Policy Act and Related Authorities | Rule | 2016-08-03T04:00:00Z | 2016 | 8 | 2016-08-03T04:00:00Z | 2016-08-03T20:36:12Z | 2016-18075 | 0 | 0 | 09000064821517da | ||
| FSA_FRDOC_0001-0284 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Community Facility Loans | Rule | 2016-07-06T04:00:00Z | 2016 | 7 | 2016-07-06T04:00:00Z | 2016-09-07T03:59:59Z | 2016-09-03T01:00:36Z | 2016-16005 | 0 | 0 | 090000648208beda | |
| FSA_FRDOC_0001-0280 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Environmental Policies and Procedures; Corrections | Rule | 2016-05-04T04:00:00Z | 2016 | 5 | 2016-05-04T04:00:00Z | 2016-05-04T13:02:02Z | 2016-10377 | 0 | 0 | 0900006481fa86f4 | ||
| FSA_FRDOC_0001-0281 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Environmental Policies and Procedures; Corrections | Rule | 2016-05-04T04:00:00Z | 2016 | 5 | 2016-05-04T04:00:00Z | 2016-05-04T13:03:10Z | 2016-10381 | 0 | 0 | 0900006481fa883d | ||
| FSA-2016-0002-0003 | FSA | Direct Farm Ownership Microloan FSA-2016-0002 | Direct Farm Ownership Microloan; Correction | Rule | 2016-03-07T05:00:00Z | 2016 | 3 | 2016-03-07T05:00:00Z | 2016-03-07T19:37:24Z | 2016-04271 | 0 | 0 | 0900006481ea6b61 | ||
| FSA_FRDOC_0001-0279 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Environmental Policies and Procedures | Rule | 2016-03-02T05:00:00Z | 2016 | 3 | 2016-03-02T05:00:00Z | 2016-03-02T13:37:39Z | 2016-03433 | 0 | 0 | 0900006481e988f5 | ||
| FSA_FRDOC_0001-0278 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Strategic Economic and Community Development; Technical Amendments | Rule | 2016-03-01T05:00:00Z | 2016 | 3 | 2016-03-01T05:00:00Z | 2016-03-01T14:07:42Z | 2016-04309 | 0 | 0 | 0900006481e953a0 | ||
| FSA_FRDOC_0001-0275 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Uniform Administrative Requirements, Cost Principles, and Audit Requirements for Federal Awards | Rule | 2016-02-16T05:00:00Z | 2016 | 2 | 2016-02-16T05:00:00Z | 2016-02-16T13:58:56Z | 2016-02473 | 0 | 0 | 0900006481e6e467 | ||
| FSA-2016-0002-0001 | FSA | Direct Farm Ownership Microloan FSA-2016-0002 | Direct Farm Ownership Microloan | Rule | 2016-01-21T05:00:00Z | 2016 | 1 | 2016-01-21T05:00:00Z | 2016-04-21T03:59:59Z | 2016-03-11T20:00:45Z | 2016-01038 | 0 | 0 | 0900006481e25257 |
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;