documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "USCG-2015-0910" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| USCG-2015-0910-0014 | USCG | None USCG-2015-0910 | Paperwork Reduction Act Submission | Supporting & Related Material | 2016-02-04T05:00:00Z | 2016 | 2 | 2016-02-04T20:43:26Z | 0 | 0 | 0900006481e51a86 | ||||
| USCG-2015-0910-0018 | USCG | None USCG-2015-0910 | CG-2692B_2015 Report of Mandatory Chemical Testing Following a Serious Marine Incident Involving Vessels in Commercial Service | Supporting & Related Material | 2016-02-04T05:00:00Z | 2016 | 2 | 2016-02-04T20:54:24Z | 0 | 0 | 0900006481e51a83 | ||||
| USCG-2015-0910-0016 | USCG | None USCG-2015-0910 | CG-2692_2015 Repot of Marine Casualty, Commercial Diving Casualty, or OCS related Casualty | Supporting & Related Material | 2016-02-04T05:00:00Z | 2016 | 2 | 2016-02-04T20:45:34Z | 0 | 0 | 0900006481e51a81 | ||||
| USCG-2015-0910-0017 | USCG | None USCG-2015-0910 | CG-2692A_2015 Barge Addendum | Supporting & Related Material | 2016-02-04T05:00:00Z | 2016 | 2 | 2016-02-04T20:46:19Z | 0 | 0 | 0900006481e51a82 | ||||
| USCG-2015-0910-0019 | USCG | None USCG-2015-0910 | CG-2692C_2015 Personal Casualty Addendum | Supporting & Related Material | 2016-02-04T05:00:00Z | 2016 | 2 | 2016-02-04T20:47:40Z | 0 | 0 | 0900006481e51a84 | ||||
| USCG-2015-0910-0020 | USCG | None USCG-2015-0910 | CG-2692D_2015 Involved Persons and Witnesses Addendum | Supporting & Related Material | 2016-02-04T05:00:00Z | 2016 | 2 | 2016-02-04T20:48:38Z | 0 | 0 | 0900006481e51a85 | ||||
| USCG-2015-0910-0015 | USCG | None USCG-2015-0910 | Appendix A and B | Supporting & Related Material | 2016-02-04T05:00:00Z | 2016 | 2 | 2016-02-04T20:43:54Z | 0 | 0 | 0900006481e51a80 | ||||
| USCG-2015-0910-0013 | USCG | None USCG-2015-0910 | Supporting Statement | Supporting & Related Material | 2016-02-04T05:00:00Z | 2016 | 2 | 2016-02-04T20:42:56Z | 0 | 0 | 0900006481e51a87 | ||||
| USCG-2015-0910-0012 | USCG | None USCG-2015-0910 | Collection of Information Under Review by Office of Management and Budget; OMB Control Number: 1625- 0001 | Notice | 30 Day Proposed Information Collection | 2016-02-03T05:00:00Z | 2016 | 2 | 2016-02-03T05:00:00Z | 2016-03-05T04:59:59Z | 2016-02-03T15:18:55Z | 2016-01896 | 0 | 0 | 0900006481e49ffa |
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;