documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NOAA-NOS-2021-0080" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
agency_id 1
- NOAA 8
| 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-2021-0080-3458 | NOAA | None NOAA-NOS-2021-0080 | Chumash Heritage National Marine Sanctuary | Rule | 2024-12-02T05:00:00Z | 2024 | 12 | 2024-12-02T05:00:00Z | 2025-01-15T17:13:26Z | 2024-27387 | 0 | 0 | 0900006486843878 | ||
| NOAA-NOS-2021-0080-3457 | NOAA | None NOAA-NOS-2021-0080 | Chumash Heritage National Marine Sanctuary | Rule | 2024-10-16T04:00:00Z | 2024 | 10 | 2024-10-16T04:00:00Z | 2024-10-16T13:28:05Z | 2024-23607 | 0 | 0 | 09000064867d07af | ||
| NOAA-NOS-2021-0080-3456 | NOAA | None NOAA-NOS-2021-0080 | NOAA ONMS Ex Parte Communications 10.7.2024 | Supporting & Related Material | 2024-10-08T04:00:00Z | 2024 | 10 | 2024-10-08T20:10:29Z | 0 | 0 | 09000064867ba46c | ||||
| NOAA-NOS-2021-0080-1228 | NOAA | None NOAA-NOS-2021-0080 | Chumash Heritage National Marine Sanctuary proposed rule; Availability of draft environmental impact statement and draft management plan | Proposed Rule | 2023-08-25T04:00:00Z | 2023 | 8 | 2023-08-25T04:00:00Z | 2023-10-26T03:59:59Z | 2023-11-03T01:00:10Z | 2023-18271 | 0 | 0 | 0900006485eea43e | |
| NOAA-NOS-2021-0080-1230 | NOAA | None NOAA-NOS-2021-0080 | Proposed Chumash Heritage NMS Draft Management Plan | Supporting & Related Material | 2023-08-25T04:00:00Z | 2023 | 8 | 2023-08-25T12:41:32Z | 0 | 0 | 0900006485eeb0b3 | ||||
| NOAA-NOS-2021-0080-1229 | NOAA | None NOAA-NOS-2021-0080 | Proposed Chumash Heritage NMS Draft Environmental Impact Statement | Supporting & Related Material | 2023-08-25T04:00:00Z | 2023 | 8 | 2023-08-25T12:37:35Z | 0 | 0 | 0900006485eeaefd | ||||
| NOAA-NOS-2021-0080-0140 | NOAA | None NOAA-NOS-2021-0080 | Chumash_Public_Scoping_Extension_2021-27234 | Supporting & Related Material | 2021-12-16T05:00:00Z | 2021 | 12 | 2021-12-16T15:40:50Z | 0 | 0 | 0900006484ecfefe | ||||
| NOAA-NOS-2021-0080-0001 | NOAA | None NOAA-NOS-2021-0080 | Notice of Intent to Initiate Designation of CHNMS | Notice | 2021-11-10T05:00:00Z | 2021 | 11 | 2021-11-10T05:00:00Z | 2022-02-01T04:59:59Z | 2024-03-14T01:00:49Z | 2021-24609 | 0 | 0 | 0900006484e3b9e1 |
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;