documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "NOAA-NMFS-2020-0120" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-0120-0003 | NOAA | Pacific Island Fisheries; 2020 U.S. Territorial Longline Bigeye Tuna Catch Limits for American Samoa NOAA-NMFS-2020-0120 | 2019-06-19 AS-HLA Specified Fishing Agreement | Supporting & Related Material | 2020-10-07T04:00:00Z | 2020 | 10 | 2020-10-07T18:28:58Z | 0 | 0 | 090000648481ee30 | ||||
| NOAA-NMFS-2020-0120-0001 | NOAA | Pacific Island Fisheries; 2020 U.S. Territorial Longline Bigeye Tuna Catch Limits for American Samoa NOAA-NMFS-2020-0120 | Pacific Island Fisheries: 2020 Territorial Longline Bigeye Tuna Catch Limits for American Samoa | Rule | 2020-10-07T04:00:00Z | 2020 | 10 | 2020-10-07T04:00:00Z | 2020-10-07T17:42:15Z | 2020-19890 | 0 | 0 | 09000064848e54d4 | ||
| NOAA-NMFS-2020-0120-0004 | NOAA | Pacific Island Fisheries; 2020 U.S. Territorial Longline Bigeye Tuna Catch Limits for American Samoa NOAA-NMFS-2020-0120 | 2020-07-31 NEPA FONSI and Final Suppl EA RIR 2020 Territorial BET Limits 0648-XP010 w Appdx | Supporting & Related Material | 2020-10-07T04:00:00Z | 2020 | 10 | 2020-10-07T18:29:03Z | 0 | 0 | 090000648481ee31 | ||||
| NOAA-NMFS-2020-0120-0005 | NOAA | Pacific Island Fisheries; 2020 U.S. Territorial Longline Bigeye Tuna Catch Limits for American Samoa NOAA-NMFS-2020-0120 | 85 FR 50961 - Final Spec - 2020 Territorial BET Limits (2020-08-19) | Supporting & Related Material | 2020-10-07T04:00:00Z | 2020 | 10 | 2020-10-07T18:29:07Z | 0 | 0 | 090000648483c8e4 | ||||
| NOAA-NMFS-2020-0120-0002 | NOAA | Pacific Island Fisheries; 2020 U.S. Territorial Longline Bigeye Tuna Catch Limits for American Samoa NOAA-NMFS-2020-0120 | 84 FR 57653 - Notice - 2019 AS Agreement (2019-10-28) | Supporting & Related Material | 2020-10-07T04:00:00Z | 2020 | 10 | 2020-10-07T18:28:55Z | 0 | 0 | 090000648481ee2f |
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;