documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "USCG-2016-0880" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
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-2016-0880-0009 | USCG | None USCG-2016-0880 | Resolution MEPC.264(68), International Code for Ships Operating In Polar Waters (Polar Code) | Supporting & Related Material | 2017-09-21T04:00:00Z | 2017 | 9 | 2017-09-21T15:24:02Z | 0 | 0 | 0900006482b6a955 | ||||
| USCG-2016-0880-0006 | USCG | None USCG-2016-0880 | Adding the Polar Ship Certificate to the List of SOLAS Certificates and Certificates Issued by Recognized Classification Societies | Rule | Final Rule | 2017-09-21T04:00:00Z | 2017 | 9 | 2017-09-21T14:22:46Z | 2017-20155 | 0 | 0 | 0900006482b68fdf | ||
| USCG-2016-0880-0010 | USCG | None USCG-2016-0880 | Resolution MEPC.265(68), Amendments to MARPOL Annexes I, II, IV and V (To make use of environment-related provisions of the Polar Code mandatory) | Supporting & Related Material | 2017-09-21T04:00:00Z | 2017 | 9 | 2017-09-21T15:24:07Z | 0 | 0 | 0900006482b6a956 | ||||
| USCG-2016-0880-0008 | USCG | None USCG-2016-0880 | Resolution MSC.386(94) Amendments to the International Convention for the Safety of Life at Sea, 1974, As Amended | Supporting & Related Material | 2017-09-21T04:00:00Z | 2017 | 9 | 2017-09-21T15:23:53Z | 0 | 0 | 0900006482b6a958 | ||||
| USCG-2016-0880-0011 | USCG | None USCG-2016-0880 | CG-CVC Policy Letter 16-06, IMPLEMENTATION OF THE INTERNATIONAL CODE FOR SHIPS OPERATING IN POLAR WATERS (POLAR CODE) | Supporting & Related Material | 2017-09-21T04:00:00Z | 2017 | 9 | 2017-09-21T15:24:13Z | 0 | 0 | 0900006482b6a954 | ||||
| USCG-2016-0880-0007 | USCG | None USCG-2016-0880 | Resolution MSC.385(94), International Code for Ships Operating in Polar Waters (Polar Code) | Supporting & Related Material | 2017-09-21T04:00:00Z | 2017 | 9 | 2017-09-21T15:23:38Z | 0 | 0 | 0900006482b6a957 | ||||
| USCG-2016-0880-0005 | USCG | None USCG-2016-0880 | Adding the Polar Ship Cert to List of SOLAS Certs and Certs Issued by Recognized Class Societies_REC_SIGNED | Supporting & Related Material | 2017-09-20T04:00:00Z | 2017 | 9 | 2017-09-20T17:53:53Z | 0 | 0 | 0900006482b6433d | ||||
| USCG-2016-0880-0002 | USCG | None USCG-2016-0880 | Environmental Checklist | Supporting & Related Material | 2016-11-22T05:00:00Z | 2016 | 11 | 2016-11-22T16:40:58Z | 0 | 0 | 090000648239c8ff | ||||
| USCG-2016-0880-0001 | USCG | None USCG-2016-0880 | Adding the Polar Ship Certificate to the List of SOLAS Certificates and Certificates Issued by Recognized Classification Societies | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2016-11-22T05:00:00Z | 2016 | 11 | 2016-11-22T05:00:00Z | 2016-12-23T04:59:59Z | 2017-01-11T14:01:11Z | 2016-27989 | 0 | 0 | 09000064823ad308 |
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;