documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "FSA" and posted_year = 2005 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, last_modified, 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-2005-0008-0001 | FSA | Disbursement of Funds; Correction FSA-2005-0008 | Disbursement of Funds; Correction | Rule | 2005-12-12T05:00:00Z | 2005 | 12 | 2005-12-12T05:00:00Z | 2006-09-02T17:57:44Z | 05-23886 | 0 | 0 | 09000064800f357f | ||
| FSA-2005-0007-0001 | FSA | U.S. Warehouse Act Fees FSA-2005-0007 | U.S. Warehouse Act Fees | Notice | 2005-11-28T05:00:00Z | 2005 | 11 | 2005-11-28T05:00:00Z | 2006-09-02T17:57:42Z | 05-23353 | 0 | 0 | 09000064800e4b40 | ||
| FSA-2005-0006-0001 | FSA | Request for Extension and Revision of a Currently Approved Information Collection; Disaster Set-Aside Program FSA-2005-0006 | Request for Extension and Revision of a Currently Approved Information Collection; Disaster Set-Aside Program | Notice | 2005-11-14T05:00:00Z | 2005 | 11 | 2005-11-14T05:00:00Z | 2006-09-02T17:57:41Z | 05-22553 | 0 | 0 | 090000648009f5dc | ||
| FSA-2005-0005-0001 | FSA | Request for Extension and Revision of a Currently Approved Information Collection; Payment Eligibility and Payment Limitation Determinations Under the Noninsured Crop Disaster Assistance Program FSA-2005-0005 | Request for Extension and Revision of a Currently Approved Information Collection; Payment Eligibility and Payment Limitation Determinations Under the Noninsured Crop Disaster Assistance Program | Notice | 2005-10-31T05:00:00Z | 2005 | 10 | 2005-10-31T05:00:00Z | 2006-09-02T17:57:39Z | 05-21593 | 0 | 0 | 0900006480098a3d | ||
| FSA-2005-0004-0001 | FSA | Disbursement of Funds FSA-2005-0004 | Disbursement of Funds | Rule | 2005-10-12T04:00:00Z | 2005 | 10 | 2005-10-12T04:00:00Z | 2006-09-02T17:57:37Z | 05-20357 | 0 | 0 | 0900006480091df1 | ||
| FSA-2005-0003-0001 | FSA | Guaranteed Farm Ownership and Operating Loan Requirements FSA-2005-0003 | Guaranteed Farm Ownership and Operating Loan Requirements | Rule | 2005-09-26T04:00:00Z | 2005 | 9 | 2005-09-26T04:00:00Z | 2011-06-11T17:26:03Z | 05-19126 | 0 | 0 | 090000648008afd1 | ||
| FSA-2005-0002-0001 | FSA | Guaranteed Loans--Retaining PLP Status and Payment of Interest Accrued During Bankruptcy and Redemption Rights Periods FSA-2005-0002 | Guaranteed Loans--Retaining PLP Status and Payment of Interest Accrued During Bankruptcy and Redemption Rights Periods | Proposed Rule | 2005-08-15T04:00:00Z | 2005 | 8 | 2005-08-15T04:00:00Z | 2005-10-15T03:59:59Z | 2011-06-11T17:26:02Z | 05-16107 | 0 | 0 | 09000064800502c0 | |
| FSA-2005-0001-0001 | FSA | Appeal Procedures FSA-2005-0001 | Appeal Procedures | Rule | 2005-07-27T04:00:00Z | 2005 | 7 | 2005-07-27T04:00:00Z | 2005-09-27T03:59:59Z | 2011-06-11T17:26:02Z | 05-14767 | 0 | 0 | 0900006480050278 |
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;