documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "USCG-2015-0915" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- USCG 6
| 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-0915-0006 | USCG | None USCG-2015-0915 | Paperwork Reduction Act Submission | Supporting & Related Material | 2016-04-11T04:00:00Z | 2016 | 4 | 2016-04-11T19:25:42Z | 0 | 0 | 0900006481f5e7b0 | ||||
| USCG-2015-0915-0005 | USCG | None USCG-2015-0915 | Collection of Information Under Review by Office of Management and Budget; OMB Control Number: 1625– 0038 | Notice | 30 Day Proposed Information Collection | 2016-04-11T04:00:00Z | 2016 | 4 | 2016-04-11T04:00:00Z | 2016-05-12T03:59:59Z | 2016-04-11T14:32:06Z | 2016-08223 | 0 | 0 | 0900006481f5cc6b |
| USCG-2015-0915-0002 | USCG | None USCG-2015-0915 | Paperwork Reduction Act Submission: Plan Approval & Records for Tank, Passenger, Cargo & Miscellaneous Vessels, Mobile Offshore Drilling Units, Nautical Schools Vessels & Oceanographic Research Vessels | Supporting & Related Material | 2015-12-28T05:00:00Z | 2015 | 12 | 2015-12-28T16:15:22Z | 0 | 0 | 0900006481dd4582 | ||||
| USCG-2015-0915-0003 | USCG | None USCG-2015-0915 | Supporting Statement for Plan Approval and Records for Tank, Passenger, Cargo and Miscellaneous Vessels, Mobile Offshore Drilling Units, Nautical School Vessels and Oceanographic Research Vessels – 46 CFR Subchapters D, H, I, I-A, R and U | Supporting & Related Material | 2015-12-28T05:00:00Z | 2015 | 12 | 2016-10-31T15:10:52Z | 0 | 0 | 0900006481dd4583 | ||||
| USCG-2015-0915-0004 | USCG | None USCG-2015-0915 | Calculation Sheet: Appendix A and Appendix B | Supporting & Related Material | 2015-12-28T05:00:00Z | 2015 | 12 | 2015-12-28T16:15:22Z | 0 | 0 | 0900006481dd4584 | ||||
| USCG-2015-0915-0001 | USCG | None USCG-2015-0915 | Information Collection Request to Office of Management and Budget; OMB Control Number: 1625-0038 | Notice | 60 Day Proposed Information Collection | 2015-12-28T05:00:00Z | 2015 | 12 | 2015-12-28T05:00:00Z | 2016-02-27T04:59:59Z | 2015-12-28T14:54:53Z | 2015-32656 | 0 | 0 | 0900006481dd415f |
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;