documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NOAA-NMFS-2019-0040" 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 3
agency_id 1
- NOAA 7
| 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-NMFS-2019-0040-0030 | NOAA | Atlantic Highly Migratory Species; Amendment 14 to the 2006 Consolidated Atlantic Highly Migratory Species Fishery Management Plan NOAA-NMFS-2019-0040 | Final Amendment 14 NOA_88 FR 4157_1-24-23 | Notice | 2023-01-26T05:00:00Z | 2023 | 1 | 2023-01-26T05:00:00Z | 2023-01-26T13:03:53Z | 0 | 0 | 090000648560aa23 | |||
| NOAA-NMFS-2019-0040-0021 | NOAA | Atlantic Highly Migratory Species; Amendment 14 to the 2006 Consolidated Atlantic Highly Migratory Species Fishery Management Plan NOAA-NMFS-2019-0040 | Supplement to Draft Amendment 14 | Supporting & Related Material | 2022-01-24T05:00:00Z | 2022 | 1 | 2022-01-24T18:57:38Z | 0 | 0 | 0900006484f3499e | ||||
| NOAA-NMFS-2019-0040-0020 | NOAA | Atlantic Highly Migratory Species; Amendment 14 to the 2006 Consolidated Atlantic Highly Migratory Species Fishery Management Plan NOAA-NMFS-2019-0040 | Supplement to Draft A14 and AP Notice_87 FR 3504_1-24-22 | Notice | 2022-01-24T05:00:00Z | 2022 | 1 | 2022-01-24T05:00:00Z | 2022-03-11T04:59:59Z | 2022-03-12T02:00:26Z | 0 | 0 | 0900006484f32768 | ||
| NOAA-NMFS-2019-0040-0009 | NOAA | Atlantic Highly Migratory Species; Amendment 14 to the 2006 Consolidated Atlantic Highly Migratory Species Fishery Management Plan NOAA-NMFS-2019-0040 | Notice of Availability for Draft Amendment 14 | Notice | 2020-09-24T04:00:00Z | 2020 | 9 | 2020-09-24T04:00:00Z | 2021-01-01T04:59:59Z | 2021-01-02T02:00:56Z | 0 | 0 | 0900006484876d22 | ||
| NOAA-NMFS-2019-0040-0003 | NOAA | Atlantic Highly Migratory Species; Amendment 14 to the 2006 Consolidated Atlantic Highly Migratory Species Fishery Management Plan NOAA-NMFS-2019-0040 | Atlantic Highly Migratory Species;: Amendments 13 and 14 to the 2006 Consolidated Atlantic Highly Migratory Species Fishery Management Plan; Spatial Fisheries Management | Proposed Rule | 2019-05-22T04:00:00Z | 2019 | 5 | 2019-05-22T04:00:00Z | 2019-05-22T13:30:31Z | 2019-10578 | 0 | 0 | 0900006483cb4d07 | ||
| NOAA-NMFS-2019-0040-0002 | NOAA | Atlantic Highly Migratory Species; Amendment 14 to the 2006 Consolidated Atlantic Highly Migratory Species Fishery Management Plan NOAA-NMFS-2019-0040 | Amendment 14 Scoping Document | Supporting & Related Material | 2019-05-21T04:00:00Z | 2019 | 5 | 2019-05-21T18:32:35Z | 0 | 0 | 0900006483cae267 | ||||
| NOAA-NMFS-2019-0040-0001 | NOAA | Atlantic Highly Migratory Species; Amendment 14 to the 2006 Consolidated Atlantic Highly Migratory Species Fishery Management Plan NOAA-NMFS-2019-0040 | Atlantic Highly Migratory Species: Amendment 14 to the 2006 Consolidated Atlantic Highly Migratory Species Fishery Management Plan | Proposed Rule | 2019-05-21T04:00:00Z | 2019 | 5 | 2019-05-21T04:00:00Z | 2019-08-01T03:59:59Z | 2019-08-01T01:02:09Z | 2019-10567 | 0 | 0 | 0900006483caa80a |
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;