documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "NOAA-NMFS-2019-0102" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, 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-2019-0102-0035 | NOAA | 2020 and 2021 Harvest Specifications for Groundfish NOAA-NMFS-2019-0102 | Fisheries of the Exclusive Economic Zone off Alaska: Pacific Cod by Catcher Vessels Less Than 50 Feet (15.2 Meters) Length Overall Using Hook-and-Line Gear in the Central Regulatory Area of the Gulf of Alaska | Rule | 2021-02-09T05:00:00Z | 2021 | 2 | 2021-02-09T05:00:00Z | 2023-02-03T18:45:09Z | 2021-02639 | 0 | 0 | 0900006484a21b88 | ||
| NOAA-NMFS-2019-0102-0034 | NOAA | 2020 and 2021 Harvest Specifications for Groundfish NOAA-NMFS-2019-0102 | Fisheries of the Exclusive Economic Zone Off Alaska: Pacific Cod by Vessels Using Pot Gear in the Western Regulatory Area of the Gulf of Alaska | Rule | 2021-02-05T05:00:00Z | 2021 | 2 | 2021-02-05T05:00:00Z | 2023-02-03T18:44:45Z | 2021-02451 | 0 | 0 | 0900006484a1defb | ||
| NOAA-NMFS-2019-0102-0033 | NOAA | 2020 and 2021 Harvest Specifications for Groundfish NOAA-NMFS-2019-0102 | Fisheries of the Exclusive Economic Zone Off Alaska: Pacific Cod by Vessels Using Pot Gear in the Central Regulatory Area of the Gulf of Alaska; Closure | Rule | 2021-02-02T05:00:00Z | 2021 | 2 | 2021-02-02T05:00:00Z | 2023-02-03T18:44:22Z | 2021-02121 | 0 | 0 | 0900006484a13e8b | ||
| NOAA-NMFS-2019-0102-0032 | NOAA | 2020 and 2021 Harvest Specifications for Groundfish NOAA-NMFS-2019-0102 | Fisheries of the Exclusive Economic Zone Off Alaska: Pacific Cod by Catcher Vessels using Trawl Gear in the Western Regulatory Area of the Gulf of Alaska | Rule | 2021-01-25T05:00:00Z | 2021 | 1 | 2021-01-25T05:00:00Z | 2021-02-04T04:59:59Z | 2022-12-15T20:42:58Z | 2021-01434 | 0 | 0 | 09000064849fec5e | |
| NOAA-NMFS-2019-0102-0029 | NOAA | 2020 and 2021 Harvest Specifications for Groundfish NOAA-NMFS-2019-0102 | Fisheries of the Exclusive Economic Zone Off Alaska: Reallocation of Pacific Cod in the Bering Sea and Aleutian Islands Management Area | Rule | 2021-01-08T05:00:00Z | 2021 | 1 | 2021-01-08T05:00:00Z | 2022-11-02T19:00:00Z | 2021-00079 | 0 | 0 | 09000064849e8996 | ||
| NOAA-NMFS-2019-0102-0031 | NOAA | 2020 and 2021 Harvest Specifications for Groundfish NOAA-NMFS-2019-0102 | Fisheries of the Exclusive Economic Zone Off Alaska: Pollock in Statistical Area 610 in the Gulf of Alaska | Rule | 2021-01-08T05:00:00Z | 2021 | 1 | 2021-01-08T05:00:00Z | 2022-12-15T01:37:41Z | 2021-00109 | 0 | 0 | 09000064849e89ed |
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;