documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "NOAA-NMFS-2021-0076" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, withdrawn, 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-0076-0009 | NOAA | Pacific Island Fisheries; 2022 U.S. Territorial Longline Bigeye Tuna Catch Limits NOAA-NMFS-2021-0076 | Pacific Island Pelagic Fisheries: 2022 U.S. Territorial Longline Bigeye Tuna Catch Limits | Rule | 2021-12-29T05:00:00Z | 2021 | 12 | 2021-12-29T19:10:27Z | 2021-28107 | 0 | 0 | 0900006484effb9f | |||
| NOAA-NMFS-2021-0076-0005 | NOAA | Pacific Island Fisheries; 2022 U.S. Territorial Longline Bigeye Tuna Catch Limits NOAA-NMFS-2021-0076 | Pacific Island Pelagic Fisheries: 2022 U.S. Territorial Longline Bigeye Tuna Catch Limits | Proposed Rule | 2021-10-27T10:00:00Z | 2021 | 10 | 2021-10-27T04:00:00Z | 2021-11-13T04:59:59Z | 2021-11-14T02:00:42Z | 2021-23356 | 0 | 0 | 0900006484dfa50b | |
| NOAA-NMFS-2021-0076-0001 | NOAA | Pacific Island Fisheries; 2022 U.S. Territorial Longline Bigeye Tuna Catch Limits NOAA-NMFS-2021-0076 | Pacific Island Fisheries: 2022 Territorial Longline Bigeye Tuna Catch Limits | Proposed Rule | 2021-10-27T06:00:00Z | 2021 | 10 | 2021-10-27T22:36:21Z | 0 | 1 | 0900006484dfadca | ||||
| NOAA-NMFS-2021-0076-0003 | NOAA | Pacific Island Fisheries; 2022 U.S. Territorial Longline Bigeye Tuna Catch Limits NOAA-NMFS-2021-0076 | 2020-07-31 NEPA Final Suppl EA and RIR 2020 Territorial BET Limits 0648-XP010 with 2019 EA Appdx | Supporting & Related Material | 2021-10-27T04:00:00Z | 2021 | 10 | 2021-10-27T19:58:03Z | 0 | 0 | 0900006484dfadd8 | ||||
| NOAA-NMFS-2021-0076-0002 | NOAA | Pacific Island Fisheries; 2022 U.S. Territorial Longline Bigeye Tuna Catch Limits NOAA-NMFS-2021-0076 | 2021-10-08 NEPA SIR Proposed 2022 Territorial BET Limits 0648-XP016 | Supporting & Related Material | 2021-10-27T04:00:00Z | 2021 | 10 | 2021-10-27T19:27:54Z | 0 | 0 | 0900006484dfadd3 | ||||
| NOAA-NMFS-2021-0076-0004 | NOAA | Pacific Island Fisheries; 2022 U.S. Territorial Longline Bigeye Tuna Catch Limits NOAA-NMFS-2021-0076 | 2020-10-26 NEPA SIR Proposed 2021 Territorial BET Limits 0648-XP014 | Supporting & Related Material | 2021-10-27T04:00:00Z | 2021 | 10 | 2021-10-27T20:03:31Z | 0 | 0 | 0900006484dfb12e |
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;