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 = 2016 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-2016-0025-0001 | FCA | Meetings; Sunshine Act | Notice | 2016-12-08T05:00:00Z | 2016 | 12 | 2016-12-08T05:00:00Z | 2016-12-08T12:42:02Z | 2016-29491 | 0 | 0 | 09000064823ebcfb | |||
| FCA-2016-0023-0001 | FCA | Meetings; Sunshine Act | Notice | 2016-11-03T04:00:00Z | 2016 | 11 | 2016-11-03T04:00:00Z | 2016-11-03T11:56:36Z | 2016-26700 | 0 | 0 | 090000648236dae2 | |||
| FCA-2016-0019-0001 | FCA | Meetings; Sunshine Act | Notice | 2016-10-06T04:00:00Z | 2016 | 10 | 2016-10-06T04:00:00Z | 2016-10-06T11:37:01Z | 2016-24296 | 0 | 0 | 090000648229efd6 | |||
| FCA-2016-0017-0001 | FCA | Meetings; Sunshine Act | Notice | 2016-09-01T04:00:00Z | 2016 | 9 | 2016-09-01T04:00:00Z | 2016-09-01T11:55:58Z | 2016-21197 | 0 | 0 | 09000064821bcc6d | |||
| FCA-2016-0016-0001 | FCA | Equal Employment Opportunity and Diversity | Notice | 2016-08-12T04:00:00Z | 2016 | 8 | 2016-08-12T04:00:00Z | 2016-08-12T12:30:04Z | 2016-19196 | 0 | 0 | 0900006482170ac3 | |||
| FCA-2016-0015-0001 | FCA | Meetings; Sunshine Act | Notice | 2016-08-04T04:00:00Z | 2016 | 8 | 2016-08-04T04:00:00Z | 2016-08-04T12:57:31Z | 2016-18606 | 0 | 0 | 0900006482155008 | |||
| FCA-2016-0010-0001 | FCA | Meetings; Sunshine Act | Notice | 2016-07-06T04:00:00Z | 2016 | 7 | 2016-07-06T04:00:00Z | 2016-07-06T12:45:42Z | 2016-16071 | 0 | 0 | 090000648208be47 | |||
| FCA-2016-0009-0001 | FCA | Meetings; Sunshine Act | Notice | 2016-06-06T04:00:00Z | 2016 | 6 | 2016-06-06T04:00:00Z | 2016-06-06T13:38:23Z | 2016-13450 | 0 | 0 | 09000064820143dd | |||
| FCA-2016-0007-0001 | FCA | Meetings; Sunshine Act | Notice | 2016-05-06T04:00:00Z | 2016 | 5 | 2016-05-06T04:00:00Z | 2016-05-06T12:33:05Z | 2016-10839 | 0 | 0 | 0900006481fb0b01 | |||
| FCA-2016-0006-0001 | FCA | Meetings; Sunshine Act | Notice | 2016-04-07T04:00:00Z | 2016 | 4 | 2016-04-07T04:00:00Z | 2016-04-07T12:18:54Z | 2016-08115 | 0 | 0 | 0900006481f3b0a4 | |||
| FCA-2016-0005-0001 | FCA | Meetings; Sunshine Act | Notice | 2016-03-03T05:00:00Z | 2016 | 3 | 2016-03-03T05:00:00Z | 2016-03-03T13:52:37Z | 2016-04814 | 0 | 0 | 0900006481e9bca8 | |||
| FCA-2016-0003-0001 | FCA | Meetings; Sunshine Act | Notice | 2016-02-04T05:00:00Z | 2016 | 2 | 2016-02-04T05:00:00Z | 2016-02-04T13:12:08Z | 2016-02295 | 0 | 0 | 0900006481e4ea53 | |||
| FCA-2016-0001-0001 | FCA | Meetings; Sunshine Act | Notice | 2016-01-07T05:00:00Z | 2016 | 1 | 2016-01-07T05:00:00Z | 2016-01-07T13:55:00Z | 2016-00200 | 0 | 0 | 0900006481df20df |
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;