documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "NOAA-NOS-2019-0033" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, withdrawn, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
agency_id 1
- NOAA 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| NOAA-NOS-2019-0033-1643 | NOAA | None NOAA-NOS-2019-0033 | Expansion of Flower Garden Banks National Marine Sanctuary; Notification of Effective Date and Technical Amendment | Rule | 2021-03-23T04:00:00Z | 2021 | 3 | 2021-03-23T04:00:00Z | 2021-07-28T17:47:56Z | 2021-06051 | 0 | 0 | 0900006484a75257 | ||
| NOAA-NOS-2019-0033-1642 | NOAA | None NOAA-NOS-2019-0033 | Expansion of Flower Garden Banks National Marine Sanctuary | Rule | 2021-01-19T05:00:00Z | 2021 | 1 | 2021-01-19T05:00:00Z | 2021-07-28T17:46:20Z | 2021-00887 | 0 | 0 | 09000064849f85b1 | ||
| NOAA-NOS-2019-0033-1633 | NOAA | None NOAA-NOS-2019-0033 | Reopening of Public Comment Period for the Regulatory Impact Review on the Proposed Expansion of Flower Garden Banks National Marine Sanctuary | Proposed Rule | 2020-11-23T05:00:00Z | 2020 | 11 | 2020-11-23T05:00:00Z | 2020-12-09T04:59:59Z | 2020-12-10T02:01:57Z | 2020-25838 | 0 | 0 | 090000648497009a | |
| NOAA-NOS-2019-0033-1632 | NOAA | None NOAA-NOS-2019-0033 | 20191016 Public version of BOEM energy FGBNMS expansion consultation | Supporting & Related Material | 2020-11-23T05:00:00Z | 2020 | 11 | 2020-11-23T12:39:57Z | 0 | 0 | 0900006484970491 | ||||
| NOAA-NOS-2019-0033-1631 | NOAA | None NOAA-NOS-2019-0033 | FGBNMS_comment period FRN_85 FR 74630_2020-25838 | Other | 2020-11-23T00:00:00Z | 2020 | 11 | 2020-11-24T13:56:01Z | 0 | 1 | 090000648496e34a | ||||
| NOAA-NOS-2019-0033-1630 | NOAA | None NOAA-NOS-2019-0033 | 20191016 Public version of BOEM FGBNMS expansion consultation | Supporting & Related Material | 2020-11-16T05:00:00Z | 2020 | 11 | 2020-11-16T13:03:51Z | 0 | 0 | 090000648495ed1e | ||||
| NOAA-NOS-2019-0033-0003 | NOAA | None NOAA-NOS-2019-0033 | FGBNMS_Maps_Site_Description | Supporting & Related Material | 2020-05-01T04:00:00Z | 2020 | 5 | 2020-05-01T18:34:46Z | 0 | 0 | 0900006484528f26 | ||||
| NOAA-NOS-2019-0033-0004 | NOAA | None NOAA-NOS-2019-0033 | FGBNMS Expansion - Socioeconomic Report | Supporting & Related Material | 2020-05-01T04:00:00Z | 2020 | 5 | 2020-05-01T20:14:54Z | 0 | 0 | 090000648452f8d1 | ||||
| NOAA-NOS-2019-0033-0002 | NOAA | None NOAA-NOS-2019-0033 | FGBNMS Expansion SIR 20190322 | Supporting & Related Material | 2020-05-01T04:00:00Z | 2020 | 5 | 2020-05-01T18:28:52Z | 0 | 0 | 0900006484528f24 | ||||
| NOAA-NOS-2019-0033-0001 | NOAA | None NOAA-NOS-2019-0033 | Proposed Expansion: Flower Garden Banks National Marine Sanctuary | Proposed Rule | 2020-05-01T04:00:00Z | 2020 | 5 | 2020-05-01T04:00:00Z | 2020-07-04T03:59:59Z | 2020-08-19T01:02:52Z | 2020-08128 | 0 | 0 | 090000648452d8d8 |
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;