documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "NOAA-NOS-2016-0114" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, comment_end_date, withdrawn, 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-0114-0024 | NOAA | None NOAA-NOS-2016-0114 | Final Management Plan for the proposed Heeia National Estuarine Research Reserve | Supporting & Related Material | 2016-12-16T05:00:00Z | 2016 | 12 | 2016-12-16T13:39:57Z | 0 | 0 | 09000064823f7527 | ||||
| NOAA-NOS-2016-0114-0025 | NOAA | None NOAA-NOS-2016-0114 | Final Management Plan Appendices for the proposed Heeia National Estuarine Research Reserve | Supporting & Related Material | 2016-12-16T05:00:00Z | 2016 | 12 | 2016-12-16T13:42:33Z | 0 | 0 | 09000064823f7528 | ||||
| NOAA-NOS-2016-0114-0023 | NOAA | None NOAA-NOS-2016-0114 | Final Environmental Impact Statement for the proposed Heeia National Estuarine Research Reserve in Hawaii | Supporting & Related Material | 2016-12-16T05:00:00Z | 2016 | 12 | 2016-12-16T13:35:54Z | 0 | 0 | 09000064823f71c1 | ||||
| NOAA-NOS-2016-0114-0009 | NOAA | None NOAA-NOS-2016-0114 | Notice of Extension of the Public Comment Period FRN Vol.81 No.198 70666 | Other | 2016-10-14T04:00:00Z | 2016 | 10 | 2016-10-14T04:00:00Z | 2016-10-31T03:59:59Z | 2016-10-14T17:35:50Z | 0 | 0 | 09000064822f986e | ||
| NOAA-NOS-2016-0114-0001 | NOAA | None NOAA-NOS-2016-0114 | Heeia National Estuarine Research Reserve Draft Environmental Impact Statement 8.23.16 | Other | 2016-09-02T04:00:00Z | 2016 | 9 | 2016-09-02T04:00:00Z | 2016-11-01T03:59:59Z | 2016-10-29T13:00:39Z | 0 | 0 | 09000064821a8d81 | ||
| NOAA-NOS-2016-0114-0003 | NOAA | None NOAA-NOS-2016-0114 | Glossary of Hawaiian Words | Other | 2016-09-02T04:00:00Z | 2016 | 9 | 2016-09-02T04:00:00Z | 2016-09-02T11:54:56Z | 0 | 0 | 09000064821a8e06 | |||
| NOAA-NOS-2016-0114-0007 | NOAA | None NOAA-NOS-2016-0114 | FRN_Vol81-No.171_9.2.16_HeeiaDEIS-DMP_PublicCommentNotice | Other | 2016-09-02T04:00:00Z | 2016 | 9 | 2016-09-02T04:00:00Z | 2016-09-02T12:21:50Z | 0 | 0 | 09000064821c19c8 | |||
| NOAA-NOS-2016-0114-0004 | NOAA | None NOAA-NOS-2016-0114 | Heeia National Estuarine Research Reserve Gap Analysis Report | Other | 2016-09-02T04:00:00Z | 2016 | 9 | 2016-09-02T04:00:00Z | 2016-09-02T11:55:04Z | 0 | 0 | 09000064821a8e07 | |||
| NOAA-NOS-2016-0114-0002 | NOAA | None NOAA-NOS-2016-0114 | Heeia National Estuarine Research Reserve Draft Management Plan August 2016 | Other | 2016-09-02T04:00:00Z | 2016 | 9 | 2016-09-02T04:00:00Z | 2016-11-01T03:59:59Z | 2016-10-26T15:00:35Z | 0 | 0 | 09000064821a8d82 | ||
| NOAA-NOS-2016-0114-0005 | NOAA | None NOAA-NOS-2016-0114 | Heeia National Estuarine Research Reserve Impact Analysis Report | Other | 2016-09-02T04:00:00Z | 2016 | 9 | 2016-09-02T04:00:00Z | 2016-09-02T11:55:09Z | 0 | 0 | 09000064821a8e08 | |||
| NOAA-NOS-2016-0114-0006 | NOAA | None NOAA-NOS-2016-0114 | FRN_Vol81-No.171_9.2.16_HeeiaDEIS-DMP_PublicCommentNotice | Other | 2016-09-02T00:00:00Z | 2016 | 9 | 2016-09-02T12:19:56Z | 0 | 1 | 09000064821c1291 |
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;