documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NOAA-NOS-2011-0120" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, 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-2011-0120-0044 | NOAA | None NOAA-NOS-2011-0120 | National Marine Sanctuary Program Regulations; CFR Correction | Rule | 2024-11-26T05:00:00Z | 2024 | 11 | 2024-11-26T05:00:00Z | 2025-01-15T17:04:09Z | 2024-27869 | 0 | 0 | 0900006486837f15 | ||
| NOAA-NOS-2011-0120-0043 | NOAA | None NOAA-NOS-2011-0120 | National Marine Sanctuary Regulations; Correction | Rule | 2023-04-04T04:00:00Z | 2023 | 4 | 2023-04-04T04:00:00Z | 2023-04-04T19:08:03Z | 2023-06612 | 0 | 0 | 09000064858d7eb5 | ||
| NOAA-NOS-2011-0120-0042 | NOAA | None NOAA-NOS-2011-0120 | National Marine Sanctuary Regulations | Rule | 2023-02-03T05:00:00Z | 2023 | 2 | 2023-02-03T05:00:00Z | 2023-02-06T15:07:08Z | 2023-02268 | 0 | 0 | 090000648563078d | ||
| NOAA-NOS-2011-0120-0041 | NOAA | None NOAA-NOS-2011-0120 | National Marine Sanctuary Regulations | Rule | 2023-01-06T05:00:00Z | 2023 | 1 | 2023-01-06T05:00:00Z | 2023-04-04T19:08:37Z | 2022-28225 | 0 | 0 | 090000648559b2a2 | ||
| NOAA-NOS-2011-0120-0040 | NOAA | None NOAA-NOS-2011-0120 | National Marine Sanctuary Regulations | Rule | 2022-09-14T04:00:00Z | 2022 | 9 | 2022-09-14T12:05:41Z | 2022-19877 | 0 | 0 | 0900006485300027 | |||
| NOAA-NOS-2011-0120-0039 | NOAA | None NOAA-NOS-2011-0120 | National Marine Sanctuary Regulations | Rule | 2022-06-24T04:00:00Z | 2022 | 6 | 2022-09-14T12:06:10Z | 2022-13570 | 0 | 0 | 090000648518bcf4 | |||
| NOAA-NOS-2011-0120-0030 | NOAA | None NOAA-NOS-2011-0120 | National Marine Sanctuary Regulations | Rule | 2022-05-13T04:00:00Z | 2022 | 5 | 2022-05-13T04:00:00Z | 2022-06-14T03:59:59Z | 2022-06-15T01:00:22Z | 2022-09626 | 0 | 0 | 0900006485078661 | |
| NOAA-NOS-2011-0120-0001 | NOAA | None NOAA-NOS-2011-0120 | Amendments to National Marine Sanctuary Regulations | Proposed Rule | 2013-01-28T05:00:00Z | 2013 | 1 | 2013-01-28T05:00:00Z | 2013-03-30T03:59:59Z | 2013-04-19T01:04:04Z | 2013-00937 | 0 | 0 | 09000064811dabba |
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;