documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "USCG-2013-0240" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, withdrawn, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- USCG 9
| 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-2013-0240-0036 | USCG | None USCG-2013-0240 | Change Matrix for Change 1 to volume 3 of the Marine Safety Manual | Supporting & Related Material | 2014-08-08T04:00:00Z | 2014 | 8 | 2014-08-08T19:38:40Z | 0 | 0 | 0900006481813d8f | ||||
| USCG-2013-0240-0035 | USCG | None USCG-2013-0240 | Change-1 to the Marine Safety Manual, Volume III; Availability (Federal Register Publication) | Notice | Notice of Availability | 2014-08-05T04:00:00Z | 2014 | 8 | 2014-08-05T04:00:00Z | 2014-08-05T15:19:18Z | 2014-18528 | 0 | 0 | 09000064818029d1 | |
| USCG-2013-0240-0022 | USCG | None USCG-2013-0240 | Marine Safety Manual, Volume III, Supplemental Documentation | Supporting & Related Material | 2014-03-24T04:00:00Z | 2014 | 3 | 2014-03-24T14:21:51Z | 0 | 0 | 090000648167655e | ||||
| USCG-2013-0240-0021 | USCG | None USCG-2013-0240 | USCG - Environmental Checklist | Supporting & Related Material | 2014-03-19T00:00:00Z | 2014 | 3 | 2014-03-24T14:21:18Z | 0 | 1 | 090000648166f486 | ||||
| USCG-2013-0240-0020 | USCG | None USCG-2013-0240 | Marine Safety Manual; Revisions (Federal Register Publication) | Notice | Request for Comments | 2014-03-17T04:00:00Z | 2014 | 3 | 2014-03-17T04:00:00Z | 2014-05-17T03:59:59Z | 2014-05-18T01:03:39Z | 2014-05725 | 0 | 0 | 090000648166a814 |
| USCG-2013-0240-0003 | USCG | None USCG-2013-0240 | Commandant Change Notice to The Marine Safety Manual, Volume III, Marine Industry Personnel | Supporting & Related Material | 2013-08-26T04:00:00Z | 2013 | 8 | 2013-08-26T17:51:36Z | 0 | 0 | 09000064813c40bb | ||||
| USCG-2013-0240-0004 | USCG | None USCG-2013-0240 | Marine Safety Manual III (CH 20-26), August 5, 2013 | Supporting & Related Material | 2013-08-26T04:00:00Z | 2013 | 8 | 2013-08-26T17:55:08Z | 0 | 0 | 09000064813c40f5 | ||||
| USCG-2013-0240-0002 | USCG | None USCG-2013-0240 | Environmental Checklist | Supporting & Related Material | 2013-08-14T00:00:00Z | 2013 | 8 | 2017-03-10T22:43:05Z | 0 | 1 | 09000064813af129 | ||||
| USCG-2013-0240-0001 | USCG | None USCG-2013-0240 | Marine Safety Manual; Draft Revisions (Federal Register Publication) | Notice | Notice of Availability | 2013-08-09T04:00:00Z | 2013 | 8 | 2013-08-09T04:00:00Z | 2013-10-09T03:59:59Z | 2017-03-10T22:26:36Z | 2013-19359 | 0 | 0 | 09000064813a875d |
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;