documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "FSA", document_type = "Rule" and posted_year = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, withdrawn, 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-0145 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Prevention of Payments to Deceased Persons | Rule | 2010-12-29T05:00:00Z | 2010 | 12 | 2010-12-29T05:00:00Z | 2014-01-17T21:37:47Z | 2010-32760 | 0 | 0 | 0900006480bc1bae | ||
| FSA-2010-0002-0001 | FSA | Emergency Forest Restoration Program and Emergency Conservation Program FSA-2010-0002 | Emergency Forest Restoration Program and Emergency Conservation Program | Rule | Interim Final | 2010-11-17T05:00:00Z | 2010 | 11 | 2010-11-17T05:00:00Z | 2011-01-19T04:59:59Z | 2014-01-18T19:36:36Z | 2010-28946 | 0 | 0 | 0900006480b954fc |
| FSA-2011-0004-0003 | FSA | Crop Assistance Program FSA-2011-0004 | Crop Assistance Program | Rule | Interim Final | 2010-10-25T04:00:00Z | 2010 | 10 | 2010-10-25T04:00:00Z | 2010-11-25T04:59:59Z | 2014-01-18T17:18:17Z | 2010-26869 | 0 | 0 | 0900006480b76682 |
| FSA_FRDOC_0001-0137 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Conservation Loan Program | Rule | Interim Final | 2010-09-03T04:00:00Z | 2010 | 9 | 2010-09-03T04:00:00Z | 2010-11-03T03:59:59Z | 2014-01-18T19:41:16Z | 2010-22070 | 0 | 0 | 0900006480b4495b |
| FSA_FRDOC_0001-0133 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Dairy Product Price Support Program and Dairy Indemnity Payment Program | Rule | 2010-07-16T04:00:00Z | 2010 | 7 | 2010-07-16T04:00:00Z | 2014-01-17T21:33:30Z | 2010-17409 | 0 | 0 | 0900006480b1b1d5 | ||
| FSA-2022-0010-0001 | FSA | Request for Applications for Heirs’ Property Relending Program FSA-2022-0010 | Reimbursement Transportation Cost Payment Program for Geographically Disadvantaged Farmers and Ranchers | Rule | 2010-06-17T00:00:00Z | 2010 | 6 | 2022-09-27T13:42:46Z | 0 | 1 | 0900006480b03ac0 | ||||
| FSA_FRDOC_0001-0124 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Tree Assistance Program | Rule | 2010-05-07T04:00:00Z | 2010 | 5 | 2010-05-07T04:00:00Z | 2014-01-17T21:33:05Z | 2010-10800 | 0 | 0 | 0900006480ae8aeb | ||
| FSA_FRDOC_0001-0120 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Direct and Counter-Cyclical Program and Average Crop Revenue Election Program, Disaster Assistance Programs, etc. | Rule | 2010-04-14T04:00:00Z | 2010 | 4 | 2010-04-14T04:00:00Z | 2014-01-17T21:33:01Z | 2010-08308 | 0 | 0 | 0900006480ad727c |
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;