documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "USCG-2014-0515" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, last_modified, 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-2014-0515-0011 | USCG | None USCG-2014-0515 | City of Nome | Other | Letter(s) | 2014-09-05T04:00:00Z | 2014 | 9 | 2014-07-01T04:00:00Z | 2014-09-02T03:59:59Z | 2014-09-05T13:24:50Z | 0 | 0 | 09000064818512a8 | |
| USCG-2014-0515-0010 | USCG | None USCG-2014-0515 | Polar Code Public Hearing, Seattle, WA | Supporting & Related Material | 2014-09-04T04:00:00Z | 2014 | 9 | 2014-09-04T18:48:53Z | 0 | 0 | 090000648185ca08 | ||||
| USCG-2014-0515-0009 | USCG | None USCG-2014-0515 | Supporting Documents | Supporting & Related Material | 2014-08-26T04:00:00Z | 2014 | 8 | 2014-08-26T18:19:04Z | 0 | 0 | 0900006481845a5e | ||||
| USCG-2014-0515-0006 | USCG | None USCG-2014-0515 | Related Material | Supporting & Related Material | 2014-08-19T04:00:00Z | 2014 | 8 | 2014-08-19T20:02:45Z | 0 | 0 | 0900006481822933 | ||||
| USCG-2014-0515-0004 | USCG | None USCG-2014-0515 | Meetings: International Maritime Organization's Development of a Mandatory Code for Ships Operating in Polar Waters; Public Workshop (Federal Register Publication) | Notice | Request for Comments | 2014-07-01T04:00:00Z | 2014 | 7 | 2014-07-01T04:00:00Z | 2014-09-02T03:59:59Z | 2014-09-06T01:03:20Z | 2014-15457 | 0 | 0 | 090000648177852f |
| USCG-2014-0515-0002 | USCG | None USCG-2014-0515 | Draft Polar Code | Other | Additional Information | 2014-06-30T04:00:00Z | 2014 | 6 | 2017-03-10T22:29:40Z | 0 | 0 | 0900006481776473 | |||
| USCG-2014-0515-0001 | USCG | None USCG-2014-0515 | Draft MARPOL Amendments | Other | Amendment | 2014-06-30T04:00:00Z | 2014 | 6 | 2014-06-30T04:00:00Z | 2017-03-10T22:29:40Z | 0 | 0 | 0900006481776472 | ||
| USCG-2014-0515-0003 | USCG | None USCG-2014-0515 | Draft SOLAS Amendments | Other | Amendment | 2014-06-30T04:00:00Z | 2014 | 6 | 2017-03-10T22:29:40Z | 0 | 0 | 0900006481776474 |
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;