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 = 2015 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-0004 | USCG | None USCG-2015-0910 | Supporting Statement | Supporting & Related Material | 2015-10-29T04:00:00Z | 2015 | 10 | 2015-10-29T13:33:11Z | 0 | 0 | 0900006481cf8ca9 | ||||
| USCG-2015-0910-0008 | USCG | None USCG-2015-0910 | 2692C (Personnel Casualty Addendum) | Supporting & Related Material | 2015-10-29T04:00:00Z | 2015 | 10 | 2015-10-29T13:33:52Z | 0 | 0 | 0900006481cf8cad | ||||
| USCG-2015-0910-0006 | USCG | None USCG-2015-0910 | 2692A (Barge Addendum) | Supporting & Related Material | 2015-10-29T04:00:00Z | 2015 | 10 | 2015-10-29T13:33:49Z | 0 | 0 | 0900006481cf8cab | ||||
| USCG-2015-0910-0005 | USCG | None USCG-2015-0910 | Appendix A & B | Supporting & Related Material | 2015-10-29T04:00:00Z | 2015 | 10 | 2015-10-29T13:33:20Z | 0 | 0 | 0900006481cf8ca8 | ||||
| USCG-2015-0910-0003 | USCG | None USCG-2015-0910 | Form- Report of Marine Casualty, Commercial Diving Casualty, or OCS- related Casualty | Supporting & Related Material | 2015-10-29T04:00:00Z | 2015 | 10 | 2015-10-29T13:33:05Z | 0 | 0 | 0900006481cf8caa | ||||
| USCG-2015-0910-0009 | USCG | None USCG-2015-0910 | 2692D (Involved Persons and Witnesses Addendum) | Supporting & Related Material | 2015-10-29T04:00:00Z | 2015 | 10 | 2015-10-29T13:33:54Z | 0 | 0 | 0900006481cf8cae | ||||
| USCG-2015-0910-0002 | USCG | None USCG-2015-0910 | Marine Casualty Information & Periodic Chemical Drug and Alcohol Testing of Commercial Vessel Personnel (Paperwork Reduction Act Submission) | Supporting & Related Material | 2015-10-29T04:00:00Z | 2015 | 10 | 2015-10-29T13:32:56Z | 0 | 0 | 0900006481cf8ca7 | ||||
| USCG-2015-0910-0007 | USCG | None USCG-2015-0910 | 2692B (Report of Mandatory Chemical Testing Following a Serious Marine Incident Involving Vessels in Commercial Service) | Supporting & Related Material | 2015-10-29T04:00:00Z | 2015 | 10 | 2015-10-29T13:33:50Z | 0 | 0 | 0900006481cf8cac | ||||
| USCG-2015-0910-0001 | USCG | None USCG-2015-0910 | Information Collection Request to Office of Management and Budget; OMB Control Number: 1625- 0001 | Notice | 60 Day Proposed Information Collection | 2015-10-23T04:00:00Z | 2015 | 10 | 2015-10-23T04:00:00Z | 2015-12-23T04:59:59Z | 2015-12-07T22:00:53Z | 2015-27019 | 0 | 0 | 0900006481ce4a05 |
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;