documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "NOAA-NOS-2020-0089" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
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-2020-0089-0119 | NOAA | None NOAA-NOS-2020-0089 | CT NERR Record of Decision | Supporting & Related Material | 2022-01-14T05:00:00Z | 2022 | 1 | 2022-01-14T15:23:25Z | 0 | 0 | 0900006484f21188 | ||||
| NOAA-NOS-2020-0089-0118 | NOAA | None NOAA-NOS-2020-0089 | FRN Announcing Designation of Connecticut National Estuarine Research Reserve | Notice | 2022-01-14T05:00:00Z | 2022 | 1 | 2022-01-14T05:00:00Z | 2022-01-14T15:06:27Z | 2022-00734 | 0 | 0 | 0900006484f20f77 | ||
| NOAA-NOS-2020-0089-0121 | NOAA | None NOAA-NOS-2020-0089 | CT NERR Final Management Plan | Supporting & Related Material | 2022-01-14T05:00:00Z | 2022 | 1 | 2022-01-14T15:25:11Z | 0 | 0 | 0900006484f2119e | ||||
| NOAA-NOS-2020-0089-0122 | NOAA | None NOAA-NOS-2020-0089 | CT NERR Final Environmental Impact Statement | Supporting & Related Material | 2022-01-14T05:00:00Z | 2022 | 1 | 2022-01-14T15:25:40Z | 0 | 0 | 0900006484f2119f | ||||
| NOAA-NOS-2020-0089-0120 | NOAA | None NOAA-NOS-2020-0089 | CT NERR Findings of Designation | Supporting & Related Material | 2022-01-14T05:00:00Z | 2022 | 1 | 2022-01-14T15:24:43Z | 0 | 0 | 0900006484f2119d | ||||
| NOAA-NOS-2020-0089-0016 | NOAA | None NOAA-NOS-2020-0089 | CTNERR DEIS FINAL (8-25-21) | Supporting & Related Material | 2021-09-03T04:00:00Z | 2021 | 9 | 2021-09-03T10:59:40Z | 0 | 0 | 0900006484d44d98 | ||||
| NOAA-NOS-2020-0089-0018 | NOAA | None NOAA-NOS-2020-0089 | Notice of Public Hearings and Availability of the Draft Environmental Impact Statement and Draft Management Plan for the Proposed Designation of the Connecticut National Estuarine Research Reserve | Notice | 2021-09-03T04:00:00Z | 2021 | 9 | 2021-09-03T04:00:00Z | 2021-10-19T03:59:59Z | 2021-10-27T01:01:00Z | 2021-18874 | 0 | 0 | 0900006484d4a401 | |
| NOAA-NOS-2020-0089-0017 | NOAA | None NOAA-NOS-2020-0089 | CTNERR DMP FINAL (8-25-21) | Supporting & Related Material | 2021-09-03T04:00:00Z | 2021 | 9 | 2021-09-03T11:00:10Z | 0 | 0 | 0900006484d44e17 | ||||
| NOAA-NOS-2020-0089-0004 | NOAA | None NOAA-NOS-2020-0089 | CT NERR DEIS Public Scoping Meeting Information | Supporting & Related Material | 2020-08-03T04:00:00Z | 2020 | 8 | 2020-08-03T17:52:00Z | 0 | 0 | 09000064847d0594 | ||||
| NOAA-NOS-2020-0089-0001 | NOAA | None NOAA-NOS-2020-0089 | Public Scoping Meeting To Solicit Input for a Draft Environmental Impact Statement for the Proposed Connecticut National Estuarine Research Reserve | Notice | 2020-07-17T04:00:00Z | 2020 | 7 | 2020-07-17T04:00:00Z | 2020-08-19T03:59:59Z | 2020-08-19T01:01:53Z | 2020-15428 | 0 | 0 | 090000648477e2c7 |
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;