documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "NOAA-NMFS-2020-0153" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, posted_date (date), comment_start_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-2020-0153-0006 | NOAA | Pacific Island Fisheries; 2020 U.S. Territorial Longline Bigeye Tuna Catch Limits for the Commonwealth of the Northern Mariana Islands NOAA-NMFS-2020-0153 | Pacific Island Fisheries: 2020 Territorial Longline Bigeye Tuna Catch Limits for the Commonwealth of the Northern Mariana Islands; Correction | Rule | 2020-12-02T05:00:00Z | 2020 | 12 | 2020-12-02T05:00:00Z | 2020-12-02T20:38:03Z | 2020-26363 | 0 | 0 | 09000064849814ab | ||
| NOAA-NMFS-2020-0153-0002 | NOAA | Pacific Island Fisheries; 2020 U.S. Territorial Longline Bigeye Tuna Catch Limits for the Commonwealth of the Northern Mariana Islands NOAA-NMFS-2020-0153 | 85 FR 50961 - Final Spec - 2020 Territorial BET Limits (2020-08-19) | Supporting & Related Material | 2020-11-23T05:00:00Z | 2020 | 11 | 2020-11-23T18:49:18Z | 0 | 0 | 090000648496d772 | ||||
| NOAA-NMFS-2020-0153-0005 | NOAA | Pacific Island Fisheries; 2020 U.S. Territorial Longline Bigeye Tuna Catch Limits for the Commonwealth of the Northern Mariana Islands NOAA-NMFS-2020-0153 | 2020-07-31 NEPA FONSI and Final Suppl EA RIR 2020 Territorial BET Limits 0648-XP010 w Appdx | Supporting & Related Material | 2020-11-23T05:00:00Z | 2020 | 11 | 2020-11-23T18:50:14Z | 0 | 0 | 090000648496e30c | ||||
| NOAA-NMFS-2020-0153-0004 | NOAA | Pacific Island Fisheries; 2020 U.S. Territorial Longline Bigeye Tuna Catch Limits for the Commonwealth of the Northern Mariana Islands NOAA-NMFS-2020-0153 | 2019-06-13 MP Specified Fishing Agreement+2020 Vessels | Supporting & Related Material | 2020-11-23T05:00:00Z | 2020 | 11 | 2020-11-23T18:49:55Z | 0 | 0 | 090000648496e30b | ||||
| NOAA-NMFS-2020-0153-0003 | NOAA | Pacific Island Fisheries; 2020 U.S. Territorial Longline Bigeye Tuna Catch Limits for the Commonwealth of the Northern Mariana Islands NOAA-NMFS-2020-0153 | 85 FR 63216 - Notice - 2020 Bigeye Tuna Limit AS (2020-10-07) | Supporting & Related Material | 2020-11-23T05:00:00Z | 2020 | 11 | 2020-11-23T18:49:38Z | 0 | 0 | 090000648496d773 | ||||
| NOAA-NMFS-2020-0153-0001 | NOAA | Pacific Island Fisheries; 2020 U.S. Territorial Longline Bigeye Tuna Catch Limits for the Commonwealth of the Northern Mariana Islands NOAA-NMFS-2020-0153 | Pacific Island Fisheries: 2020 U.S. Territorial Longline Bigeye Tuna Catch Limits for the Commonwealth of the Northern Mariana Islands | Rule | 2020-11-23T05:00:00Z | 2020 | 11 | 2020-11-23T05:00:00Z | 2020-11-23T18:32:06Z | 2020-25806 | 0 | 0 | 0900006484970668 |
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;