documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "USCG-2011-0351" and document_type = "Notice" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2011-0351-0184 | USCG | Consolidated Port Approaches Port Access Route Studies (CPAPARS) USCG-2011-0351 | Consolidated Port Approaches Port Access Route Studies (CPAPARS) Final Notice | Notice | 2023-08-28T04:00:00Z | 2023 | 8 | 2023-08-28T13:32:28Z | 2023-18444 | 0 | 0 | 0900006485f00102 | |||
| USCG-2011-0351-0174 | USCG | Consolidated Port Approaches Port Access Route Studies (CPAPARS) USCG-2011-0351 | Consolidated Port Approaches Port Access Route Studies (CPAPARS) | Notice | 2023-03-10T05:00:00Z | 2023 | 3 | 2023-03-10T05:00:00Z | 2023-06-09T03:59:59Z | 2023-06-10T01:00:31Z | 2023-04997 | 0 | 0 | 090000648578b4bd | |
| USCG-2011-0351-0173 | USCG | Consolidated Port Approaches Port Access Route Studies (CPAPARS) USCG-2011-0351 | Consolidated Port Approaches and International Entry and Departure Transit Areas Port Access Route Studies (PARS) Integral to Efficiency of Possible Atlantic Coast Fairways | Notice | 2022-09-09T04:00:00Z | 2022 | 9 | 2022-09-09T12:26:38Z | 2022-19546 | 0 | 0 | 09000064852d8759 | |||
| USCG-2011-0351-0165 | USCG | Consolidated Port Approaches Port Access Route Studies (CPAPARS) USCG-2011-0351 | Atlantic Coast Port Access Route Study: Port Approaches and International Entry and Departure Transit Areas | Notice | Request for Comments | 2019-03-15T04:00:00Z | 2019 | 3 | 2019-03-15T04:00:00Z | 2021-05-02T03:59:59Z | 2019-05-10T01:02:30Z | 2019-04891 | 0 | 0 | 0900006483ae7993 |
| USCG-2011-0351-0028 | USCG | Consolidated Port Approaches Port Access Route Studies (CPAPARS) USCG-2011-0351 | Port Access Route Studies: Atlantic Coast From Maine to Florida | Notice | Request for Comments | 2011-12-09T05:00:00Z | 2011 | 12 | 2011-12-09T05:00:00Z | 2012-02-01T04:59:59Z | 2017-03-10T22:25:58Z | 2011-31594 | 0 | 0 | 0900006480f7ed86 |
| USCG-2011-0351-0001 | USCG | Consolidated Port Approaches Port Access Route Studies (CPAPARS) USCG-2011-0351 | Port Access Route Study: Atlantic Coast from Maine to Florida (Federal Register Publication) | Notice | Notice | 2011-05-11T04:00:00Z | 2011 | 5 | 2011-05-11T04:00:00Z | 2011-08-10T03:59:59Z | 2017-03-10T22:25:39Z | 2011-11483 | 0 | 0 | 0900006480c6c0de |
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;