documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
13 rows where agency_id = "FCA", document_type = "Notice" and posted_year = 2015 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-2015-0034-0001 | FCA | Meetings; Sunshine Act | Notice | 2015-12-03T05:00:00Z | 2015 | 12 | 2015-12-03T05:00:00Z | 2015-12-03T13:53:37Z | 2015-30663 | 0 | 0 | 0900006481d82b79 | |||
| FCA-2015-0028-0001 | FCA | Meetings; Sunshine Act | Notice | 2015-11-04T05:00:00Z | 2015 | 11 | 2015-11-04T05:00:00Z | 2015-11-04T14:56:49Z | 2015-28241 | 0 | 0 | 0900006481d0dbe9 | |||
| FCA-2015-0025-0001 | FCA | Meetings; Sunshine Act | Notice | 2015-10-07T04:00:00Z | 2015 | 10 | 2015-10-07T04:00:00Z | 2015-10-07T13:19:43Z | 2015-25668 | 0 | 0 | 0900006481cb6448 | |||
| FCA-2015-0023-0001 | FCA | Meetings; Sunshine Act | Notice | 2015-09-04T04:00:00Z | 2015 | 9 | 2015-09-04T04:00:00Z | 2015-09-04T13:06:35Z | 2015-22548 | 0 | 0 | 0900006481c57501 | |||
| FCA-2015-0022-0001 | FCA | Equal Employment Opportunity and Diversity | Notice | 2015-08-26T04:00:00Z | 2015 | 8 | 2015-08-26T04:00:00Z | 2015-08-26T12:25:27Z | 2015-21175 | 0 | 0 | 0900006481c3a933 | |||
| FCA-2015-0020-0001 | FCA | Meetings; Sunshine Act | Notice | 2015-08-07T04:00:00Z | 2015 | 8 | 2015-08-07T04:00:00Z | 2015-08-07T12:58:33Z | 2015-19578 | 0 | 0 | 0900006481bca022 | |||
| FCA-2015-0016-0001 | FCA | Meetings; Sunshine Act | Notice | 2015-07-02T04:00:00Z | 2015 | 7 | 2015-07-02T04:00:00Z | 2015-07-02T13:11:38Z | 2015-16535 | 0 | 0 | 0900006481b67373 | |||
| FCA-2015-0013-0001 | FCA | Meetings; Sunshine Act | Notice | 2015-06-05T04:00:00Z | 2015 | 6 | 2015-06-05T04:00:00Z | 2015-06-05T13:03:37Z | 2015-13856 | 0 | 0 | 0900006481b1d1f3 | |||
| FCA-2015-0009-0001 | FCA | Meetings; Sunshine Act | Notice | 2015-05-08T04:00:00Z | 2015 | 5 | 2015-05-08T04:00:00Z | 2015-05-08T13:19:59Z | 2015-11285 | 0 | 0 | 0900006481ad5404 | |||
| FCA-2015-0008-0001 | FCA | Meetings; Sunshine Act | Notice | 2015-04-02T04:00:00Z | 2015 | 4 | 2015-04-02T04:00:00Z | 2015-04-02T12:54:10Z | 2015-07682 | 0 | 0 | 0900006481a87a38 | |||
| FCA-2015-0005-0001 | FCA | Meetings; Sunshine Act | Notice | 2015-03-05T05:00:00Z | 2015 | 3 | 2015-03-05T05:00:00Z | 2015-03-05T13:35:41Z | 2015-05221 | 0 | 0 | 0900006481a2e175 | |||
| FCA-2015-0003-0001 | FCA | Meetings; Sunshine Act | Notice | 2015-02-10T05:00:00Z | 2015 | 2 | 2015-02-10T05:00:00Z | 2015-02-10T14:12:43Z | 2015-02778 | 0 | 0 | 09000064819fc94f | |||
| FCA-2015-0001-0001 | FCA | Meetings; Sunshine Act | Notice | 2015-01-09T05:00:00Z | 2015 | 1 | 2015-01-09T05:00:00Z | 2015-01-09T14:47:18Z | 2015-00260 | 0 | 0 | 09000064819afdde |
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;