documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "NOAA-NOS-2016-0043" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| NOAA-NOS-2016-0043-0032 | NOAA | None NOAA-NOS-2016-0043 | Delay of Discharge Requirements for U.S. Coast Guard Activities in Greater Farallones and Cordell Bank National Marine Sanctuaries | Rule | 2017-11-22T05:00:00Z | 2017 | 11 | 2017-11-22T05:00:00Z | 2017-12-07T14:54:05Z | 2017-25104 | 0 | 0 | 0900006482c9ea53 | ||
| NOAA-NOS-2016-0043-0031 | NOAA | None NOAA-NOS-2016-0043 | Delay of Discharge Requirements for U.S. Coast Guard Activities in Greater Farallones and Cordell Bank National Marine Sanctuaries | Rule | 2017-06-07T04:00:00Z | 2017 | 6 | 2017-06-07T04:00:00Z | 2017-08-30T20:20:07Z | 2017-11794 | 0 | 0 | 090000648269fe54 | ||
| NOAA-NOS-2016-0043-0030 | NOAA | None NOAA-NOS-2016-0043 | Delays: Discharge Requirements for U.S. Coast Guard Activities in Greater Farallones and Cordell Bank National Marine Sanctuaries | Rule | 2016-12-06T05:00:00Z | 2016 | 12 | 2016-12-06T05:00:00Z | 2017-01-26T18:15:38Z | 2016-29234 | 0 | 0 | 09000064823e337d | ||
| NOAA-NOS-2016-0043-0029 | NOAA | None NOAA-NOS-2016-0043 | Delay of Discharge Requirements for U.S. Coast Guard Activities: Greater Farallones and Cordell Bank National Marine Sanctuaries | Rule | 2016-05-31T04:00:00Z | 2016 | 5 | 2016-05-31T04:00:00Z | 2017-01-26T18:16:06Z | 2016-12784 | 0 | 0 | 0900006481fff808 | ||
| NOAA-NOS-2016-0043-0001 | NOAA | None NOAA-NOS-2016-0043 | Greater Farallones and Cordell Bank National Marine Sanctuaries: Scoping Meetings and Draft Environmental Assessment | Proposed Rule | 2016-04-21T04:00:00Z | 2016 | 4 | 2016-04-21T04:00:00Z | 2016-06-01T03:59:59Z | 2017-01-26T18:17:07Z | 2016-09248 | 0 | 0 | 0900006481f7cd70 |
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;