documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "NOAA-NMFS-2021-0018" 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)
| 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-2021-0018-0065 | NOAA | Amendment 14 to the Fishery Management Plan for the Salmon Fisheries in the EEZ Off Alaska NOAA-NMFS-2021-0018 | Final Rule posted in Federal Register | Rule | 2021-11-05T04:00:00Z | 2021 | 11 | 2021-11-05T04:00:00Z | 2021-11-05T16:59:11Z | 0 | 0 | 0900006484e1d1ed | |||
| NOAA-NMFS-2021-0018-0062 | NOAA | Amendment 14 to the Fishery Management Plan for the Salmon Fisheries in the EEZ Off Alaska NOAA-NMFS-2021-0018 | Final Environmental Assessment - Regulatory Impact Review | Supporting & Related Material | 2021-11-04T04:00:00Z | 2021 | 11 | 2021-11-04T21:15:11Z | 0 | 0 | 0900006484e1b6ea | ||||
| NOAA-NMFS-2021-0018-0064 | NOAA | Amendment 14 to the Fishery Management Plan for the Salmon Fisheries in the EEZ Off Alaska NOAA-NMFS-2021-0018 | Salmon FMP Amendment Text | Supporting & Related Material | 2021-11-04T04:00:00Z | 2021 | 11 | 2021-11-04T21:15:25Z | 0 | 0 | 0900006484e1ca40 | ||||
| NOAA-NMFS-2021-0018-0063 | NOAA | Amendment 14 to the Fishery Management Plan for the Salmon Fisheries in the EEZ Off Alaska NOAA-NMFS-2021-0018 | Final FONSI | Supporting & Related Material | 2021-11-04T04:00:00Z | 2021 | 11 | 2021-11-04T21:15:17Z | 0 | 0 | 0900006484e1b6f2 | ||||
| NOAA-NMFS-2021-0018-0066 | NOAA | Amendment 14 to the Fishery Management Plan for the Salmon Fisheries in the EEZ Off Alaska NOAA-NMFS-2021-0018 | Fisheries of the Exclusive Economic Zone Off Alaska: Cook Inlet Salmon; Amendment 14 | Rule | 2021-11-03T04:00:00Z | 2021 | 11 | 2021-11-03T04:00:00Z | 2021-11-08T20:21:30Z | 2021-23610 | 0 | 0 | 0900006484e0fa7d | ||
| NOAA-NMFS-2021-0018-0005 | NOAA | Amendment 14 to the Fishery Management Plan for the Salmon Fisheries in the EEZ Off Alaska NOAA-NMFS-2021-0018 | Fisheries of the Exclusive Economic Zone off Alaska: Cook Inlet Salmon; Amendment 14 | Proposed Rule | 2021-06-04T04:00:00Z | 2021 | 6 | 2021-06-04T04:00:00Z | 2021-07-07T03:59:59Z | 2021-07-08T01:00:45Z | 2021-11716 | 0 | 0 | 0900006484b553fc | |
| NOAA-NMFS-2021-0018-0001 | NOAA | Amendment 14 to the Fishery Management Plan for the Salmon Fisheries in the EEZ Off Alaska NOAA-NMFS-2021-0018 | Amend 14 EA-RIR.rir | Supporting & Related Material | 2021-05-19T04:00:00Z | 2021 | 5 | 2021-05-19T18:46:54Z | 0 | 0 | 0900006484b1d1ba | ||||
| NOAA-NMFS-2021-0018-0003 | NOAA | Amendment 14 to the Fishery Management Plan for the Salmon Fisheries in the EEZ Off Alaska NOAA-NMFS-2021-0018 | Amend 14_pr.FONSI | Supporting & Related Material | 2021-05-19T04:00:00Z | 2021 | 5 | 2021-05-19T18:47:42Z | 0 | 0 | 0900006484b1d1bc | ||||
| NOAA-NMFS-2021-0018-0002 | NOAA | Amendment 14 to the Fishery Management Plan for the Salmon Fisheries in the EEZ Off Alaska NOAA-NMFS-2021-0018 | Amend 14 FMP text | Supporting & Related Material | 2021-05-19T04:00:00Z | 2021 | 5 | 2021-05-19T18:47:24Z | 0 | 0 | 0900006484b1d1bb | ||||
| NOAA-NMFS-2021-0018-0004 | NOAA | Amendment 14 to the Fishery Management Plan for the Salmon Fisheries in the EEZ Off Alaska NOAA-NMFS-2021-0018 | Fisheries of the Exclusive Economic Zone Off Alaska: Cook Inlet Salmon; Amendment 14 | Proposed Rule | 2021-05-18T04:00:00Z | 2021 | 5 | 2021-05-18T04:00:00Z | 2021-07-20T03:59:59Z | 2021-07-30T01:00:41Z | 2021-10450 | 0 | 0 | 0900006484b12f23 |
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;