documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
14 rows where agency_id = "FCA", document_type = "Notice" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, posted_date (date), comment_start_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FCA-2012-0028-0001 | FCA | Voluntary Liquidation and Cancellation of Charter, Farm Credit Finance Corporation of Puerto Rico | Notice | 2012-12-13T05:00:00Z | 2012 | 12 | 2012-12-13T05:00:00Z | 2012-12-13T13:48:34Z | 2012-30134 | 0 | 0 | 090000648118b12a | |||
| FCA-2012-0027-0001 | FCA | Meetings; Sunshine Act | Notice | 2012-12-12T05:00:00Z | 2012 | 12 | 2012-12-12T05:00:00Z | 2012-12-12T13:57:49Z | 2012-30036 | 0 | 0 | 0900006481188694 | |||
| FCA-2012-0026-0001 | FCA | Meetings; Sunshine Act | Notice | 2012-11-07T05:00:00Z | 2012 | 11 | 2012-11-07T05:00:00Z | 2012-11-07T13:54:15Z | 2012-27281 | 0 | 0 | 0900006481161354 | |||
| FCA-2012-0022-0001 | FCA | Meetings; Sunshine Act | Notice | 2012-10-11T04:00:00Z | 2012 | 10 | 2012-10-11T04:00:00Z | 2012-10-11T12:43:52Z | 2012-25122 | 0 | 0 | 090000648113c2e0 | |||
| FCA-2012-0017-0001 | FCA | Meetings; Sunshine Act | Notice | 2012-09-10T04:00:00Z | 2012 | 9 | 2012-09-10T04:00:00Z | 2012-09-10T13:07:40Z | 2012-22342 | 0 | 0 | 090000648110ecf4 | |||
| FCA-2012-0016-0001 | FCA | Privacy Act; Systems of Records; Revocation | Notice | 2012-08-14T04:00:00Z | 2012 | 8 | 2012-08-14T04:00:00Z | 2012-08-14T13:28:41Z | 2012-19878 | 0 | 0 | 09000064810d4c3c | |||
| FCA-2012-0015-0001 | FCA | Meetings; Sunshine Act | Notice | 2012-08-07T04:00:00Z | 2012 | 8 | 2012-08-07T04:00:00Z | 2012-08-07T12:45:01Z | 2012-19435 | 0 | 0 | 09000064810c475c | |||
| FCA-2012-0013-0001 | FCA | Meetings; Sunshine Act | Notice | 2012-07-02T04:00:00Z | 2012 | 7 | 2012-07-02T04:00:00Z | 2012-07-02T13:39:34Z | 2012-16286 | 0 | 0 | 0900006481075579 | |||
| FCA-2012-0011-0001 | FCA | Meetings; Sunshine Act | Notice | 2012-06-12T04:00:00Z | 2012 | 6 | 2012-06-12T04:00:00Z | 2012-06-12T13:22:19Z | 2012-14322 | 0 | 0 | 090000648104319b | |||
| FCA-2012-0010-0001 | FCA | Meetings; Sunshine Act | Notice | 2012-05-07T04:00:00Z | 2012 | 5 | 2012-05-07T04:00:00Z | 2012-05-07T13:06:02Z | 2012-11058 | 0 | 0 | 0900006481006638 | |||
| FCA-2012-0008-0001 | FCA | Meetings; Sunshine Act | Notice | 2012-04-09T04:00:00Z | 2012 | 4 | 2012-04-09T04:00:00Z | 2012-04-09T13:09:50Z | 2012-08606 | 0 | 0 | 0900006480fec043 | |||
| FCA-2012-0006-0001 | FCA | Meetings; Sunshine Act | Notice | 2012-03-05T05:00:00Z | 2012 | 3 | 2012-03-05T05:00:00Z | 2012-03-05T13:32:22Z | 2012-05405 | 0 | 0 | 0900006480fcec89 | |||
| FCA-2012-0004-0001 | FCA | Meetings; Sunshine Act | Notice | 2012-02-06T05:00:00Z | 2012 | 2 | 2012-02-06T05:00:00Z | 2012-02-06T15:29:31Z | 2012-02785 | 0 | 0 | 0900006480fae37b | |||
| FCA-2012-0001-0001 | FCA | Meetings; Sunshine Act | Notice | 2012-01-09T05:00:00Z | 2012 | 1 | 2012-01-09T05:00:00Z | 2012-01-09T12:51:20Z | 2012-00269 | 0 | 0 | 0900006480f904bc |
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;