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 = "Notice" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, 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-2020-0010-0001 | FSA | Information Collection Request; County Committee Elections FSA-2020-0010 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: County Committee Elections | Notice | 2020-11-18T05:00:00Z | 2020 | 11 | 2020-11-18T05:00:00Z | 2021-01-20T04:59:59Z | 2020-11-18T13:44:22Z | 2020-25367 | 0 | 0 | 09000064849657ce | |
| FSA_FRDOC_0001-0352 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2020-11-09T05:00:00Z | 2020 | 11 | 2020-11-09T05:00:00Z | 2020-12-10T04:59:59Z | 2020-12-06T02:00:42Z | 2020-24827 | 0 | 0 | 090000648495376c | |
| FSA-2020-0009-0001 | FSA | Volunteer Program FSA-2020-0009 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Volunteer Program | Notice | 2020-10-28T04:00:00Z | 2020 | 10 | 2020-10-28T04:00:00Z | 2020-12-29T04:59:59Z | 2020-10-30T19:28:30Z | 2020-23783 | 0 | 0 | 0900006484939482 | |
| FSA-2020-0007-0001 | FSA | Notice of Funds Availability (NOFA); Seafood Trade Relief Program (STRP) (Please use docket Id FSA-2020-0007 instead of CCC-2020-0007 as indicated in the notice) FSA-2020-0007 | Funds Availability: Seafood Trade Relief Program | Notice | 2020-09-14T04:00:00Z | 2020 | 9 | 2020-09-14T04:00:00Z | 2020-11-14T04:59:59Z | 2020-11-13T02:00:48Z | 2020-20143 | 0 | 0 | 0900006484856a43 | |
| FSA-2020-0008-0001 | FSA | Generic Clearance for the Collection of Qualitative Customer Feedback on the Farm Service Agency Service Delivery (0560-0286), and Certified State Mediation Program (0560-0165) FSA-2020-0008 | Information Collection Requests; Generic Clearance for the Collection of Qualitative Customer Feedback on the Farm Service Agency Service Delivery (0560-0286), and Certified State Mediation Program (0560-0165) | Notice | 2020-09-04T04:00:00Z | 2020 | 9 | 2020-09-04T04:00:00Z | 2020-11-04T04:59:59Z | 2020-09-04T16:49:08Z | 2020-19540 | 0 | 0 | 09000064848445db | |
| FSA_FRDOC_0001-0346 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Notice of Funds Availability for the Organic Certification Cost Share Program | Notice | 2020-08-10T04:00:00Z | 2020 | 8 | 2020-08-10T04:00:00Z | 2020-08-10T11:48:46Z | 2020-17385 | 0 | 0 | 09000064847e9e3c | ||
| FSA-2020-0003-0001 | FSA | Disaster Assistance-General (0560-0170), Transfer of Records between Counties (0560-0253) and Customer Data Worksheet Request for Business Partner Record (0560-0265) FSA-2020-0003 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2020-04-09T04:00:00Z | 2020 | 4 | 2020-04-09T04:00:00Z | 2020-06-09T03:59:59Z | 2020-06-10T01:00:52Z | 2020-07423 | 0 | 0 | 0900006484495915 | |
| FSA-2020-0001-0001 | FSA | Power of Attorney (0560-0190) FSA-2020-0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Power of Attorney | Notice | 2020-03-13T04:00:00Z | 2020 | 3 | 2020-03-13T04:00:00Z | 2020-05-13T03:59:59Z | 2020-03-19T13:56:43Z | 2020-05162 | 0 | 0 | 09000064844418ad | |
| FSA-2020-0002-0001 | FSA | Inventory Property Management (0560-0234), Direct Loan Servicing-Regular (0560-0236), General Program Administration (0560-0238) and Guaranteed Farm Loan Program (0560-0155) FSA-2020-0002 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Direct Loan Servicing-Regular, General Program Administration and Guaranteed Farm Loan Program | Notice | 2020-02-20T05:00:00Z | 2020 | 2 | 2020-02-20T05:00:00Z | 2020-04-21T03:59:59Z | 2020-02-21T18:25:01Z | 2020-03303 | 0 | 0 | 0900006484392811 |
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;