documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "USCG-2014-0481" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, 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 10
| 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-0481-0027 | USCG | None USCG-2014-0481 | Great Lakes Pilotage Rates: Annual Review and Adjustment (Federal Register Publication) | Rule | Final Rule | 2015-05-26T04:00:00Z | 2015 | 5 | 2015-05-26T04:00:00Z | 2015-05-26T16:23:21Z | 2015-12734 | 0 | 0 | 0900006481af5e39 | |
| USCG-2014-0481-0023 | USCG | None USCG-2014-0481 | Categorical Exclusion Determination | Supporting & Related Material | 2015-03-02T05:00:00Z | 2015 | 3 | 2015-03-02T20:30:57Z | 0 | 0 | 0900006481a23d4f | ||||
| USCG-2014-0481-0024 | USCG | None USCG-2014-0481 | St. Lawrence Seaway Pilots' Association (District 1) Final | Supporting & Related Material | 2015-03-02T05:00:00Z | 2015 | 3 | 2015-03-02T21:35:43Z | 0 | 0 | 0900006481a238e5 | ||||
| USCG-2014-0481-0026 | USCG | None USCG-2014-0481 | Western Great Lakes Pilots (District 3) Final | Supporting & Related Material | 2015-03-02T05:00:00Z | 2015 | 3 | 2015-03-02T21:39:34Z | 0 | 0 | 0900006481a238e7 | ||||
| USCG-2014-0481-0025 | USCG | None USCG-2014-0481 | Lakes Pilots Association, Inc. (District 2) Final | Supporting & Related Material | 2015-03-02T05:00:00Z | 2015 | 3 | 2015-03-02T21:38:06Z | 0 | 0 | 0900006481a238eb | ||||
| USCG-2014-0481-0022 | USCG | None USCG-2014-0481 | Great Lakes Pilotage Rates: 2015 Annual Review and Adjustment (Federal Register Publication) | Rule | Final Rule | 2015-02-26T05:00:00Z | 2015 | 2 | 2015-02-26T05:00:00Z | 2017-03-10T22:22:46Z | 2015-04036 | 0 | 0 | 0900006481a190d5 | |
| USCG-2014-0481-0014 | USCG | None USCG-2014-0481 | Great Lakes Pilotage Rates: 2015 Annual Review and Adjustment (Federal Register Publication) | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2014-12-01T05:00:00Z | 2014 | 12 | 2014-12-01T05:00:00Z | 2015-01-01T04:59:59Z | 2015-01-06T03:01:16Z | 2014-28272 | 0 | 0 | 0900006481950a3c |
| USCG-2014-0481-0013 | USCG | None USCG-2014-0481 | Supporting and Related Documents | Supporting & Related Material | 2014-11-25T05:00:00Z | 2014 | 11 | 2014-11-25T12:53:13Z | 0 | 0 | 09000064819416af | ||||
| USCG-2014-0481-0002 | USCG | None USCG-2014-0481 | Environmental Checklist | Supporting & Related Material | 2014-09-25T04:00:00Z | 2014 | 9 | 2014-09-25T17:59:35Z | 0 | 0 | 0900006481866316 | ||||
| USCG-2014-0481-0001 | USCG | None USCG-2014-0481 | 2015 Annual Review and Adjustments: Great Lakes Pilotage Rates | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2014-09-04T04:00:00Z | 2014 | 9 | 2014-09-04T04:00:00Z | 2014-11-04T04:59:59Z | 2015-01-16T03:01:28Z | 2014-21046 | 0 | 0 | 090000648185bf76 |
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;