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 = 2014 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-2014-0037-0001 | FCA | Meetings; Sunshine Act | Notice | 2014-12-05T05:00:00Z | 2014 | 12 | 2014-12-05T05:00:00Z | 2014-12-05T13:42:29Z | 2014-28651 | 0 | 0 | 090000648195e6b4 | |||
| FCA-2014-0035-0001 | FCA | Meetings; Sunshine Act | Notice | 2014-11-06T05:00:00Z | 2014 | 11 | 2014-11-06T05:00:00Z | 2014-11-06T13:49:15Z | 2014-26518 | 0 | 0 | 090000648191b30c | |||
| FCA-2014-0030-0001 | FCA | Meetings; Sunshine Act | Notice | 2014-10-02T04:00:00Z | 2014 | 10 | 2014-10-02T04:00:00Z | 2014-10-02T13:13:13Z | 2014-23625 | 0 | 0 | 09000064818a2bbf | |||
| FCA-2014-0027-0001 | FCA | Meetings; Sunshine Act | Notice | 2014-09-05T04:00:00Z | 2014 | 9 | 2014-09-05T04:00:00Z | 2014-09-05T13:07:20Z | 2014-21316 | 0 | 0 | 090000648185eb70 | |||
| FCA-2014-0025-0001 | FCA | Equal Employment Opportunity and Diversity Policy Statement | Notice | 2014-08-26T04:00:00Z | 2014 | 8 | 2014-08-26T04:00:00Z | 2014-08-26T12:15:54Z | 2014-20283 | 0 | 0 | 09000064818452c7 | |||
| FCA-2014-0024-0001 | FCA | Meetings; Sunshine Act | Notice | 2014-08-07T04:00:00Z | 2014 | 8 | 2014-08-07T04:00:00Z | 2014-08-07T12:14:54Z | 2014-18821 | 0 | 0 | 090000648180b9e5 | |||
| FCA-2014-0021-0001 | FCA | Meetings; Sunshine Act | Notice | 2014-07-01T04:00:00Z | 2014 | 7 | 2014-07-01T04:00:00Z | 2014-07-01T12:48:23Z | 2014-15519 | 0 | 0 | 09000064817785a9 | |||
| FCA-2014-0019-0001 | FCA | Meetings; Sunshine Act | Notice | 2014-06-05T04:00:00Z | 2014 | 6 | 2014-06-05T04:00:00Z | 2014-06-05T12:34:35Z | 2014-13268 | 0 | 0 | 090000648172aa75 | |||
| FCA-2014-0013-0001 | FCA | Meetings; Sunshine Act | Notice | 2014-05-01T04:00:00Z | 2014 | 5 | 2014-05-01T04:00:00Z | 2014-05-01T13:32:12Z | 2014-10081 | 0 | 0 | 09000064816da386 | |||
| FCA-2014-0011-0001 | FCA | Meetings; Sunshine Act | Notice | 2014-04-03T04:00:00Z | 2014 | 4 | 2014-04-03T04:00:00Z | 2014-04-03T12:57:26Z | 2014-07624 | 0 | 0 | 090000648169a5dd | |||
| FCA-2014-0009-0001 | FCA | Meetings; Sunshine Act | Notice | 2014-03-11T04:00:00Z | 2014 | 3 | 2014-03-11T04:00:00Z | 2014-03-11T12:25:57Z | 2014-05294 | 0 | 0 | 090000648165dc96 | |||
| FCA-2014-0005-0001 | FCA | Meetings; Sunshine Act | Notice | 2014-02-19T05:00:00Z | 2014 | 2 | 2014-02-19T05:00:00Z | 2014-02-19T14:15:49Z | 2014-03655 | 0 | 0 | 0900006481581ae5 | |||
| FCA-2014-0004-0001 | FCA | Meetings; Sunshine Act | Notice | 2014-02-06T05:00:00Z | 2014 | 2 | 2014-02-06T05:00:00Z | 2014-02-06T14:07:52Z | 2014-02698 | 0 | 0 | 090000648154c918 | |||
| FCA-2014-0001-0001 | FCA | Meetings; Sunshine Act | Notice | 2014-01-06T05:00:00Z | 2014 | 1 | 2014-01-06T05:00:00Z | 2014-01-06T14:16:46Z | 2014-00024 | 0 | 0 | 09000064814ed6ba |
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;