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-0119" and posted_year = 2021 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-2020-0119-0003 | NOAA | Pacific Island Fisheries; 2020-2023 Marianas Bottomfish Annual Catch Limits and Accountability Measures NOAA-NMFS-2020-0119 | Pacific Island Fisheries: Mariana Archipelago Bottomfish Annual Catch Limits and Accountability Measures | Rule | 2021-05-07T04:00:00Z | 2021 | 5 | 2021-05-07T04:00:00Z | 2021-05-07T16:45:02Z | 2021-09649 | 0 | 0 | 0900006484ad86b9 | ||
| NOAA-NMFS-2020-0119-0005 | NOAA | Pacific Island Fisheries; 2020-2023 Marianas Bottomfish Annual Catch Limits and Accountability Measures NOAA-NMFS-2020-0119 | 2021-04-14 NEPA Final EA and RIR Proposed 2020-2023 ACL Marianas Bottomfish 0648-BJ82 | Supporting & Related Material | 2021-05-07T04:00:00Z | 2021 | 5 | 2021-05-07T16:54:05Z | 0 | 0 | 0900006484ad888f | ||||
| NOAA-NMFS-2020-0119-0004 | NOAA | Pacific Island Fisheries; 2020-2023 Marianas Bottomfish Annual Catch Limits and Accountability Measures NOAA-NMFS-2020-0119 | 2021-04-15 NEPA FONSI 2020-2023 ACL Marianas Bottomfish 0648-BJ82 | Supporting & Related Material | 2021-05-07T04:00:00Z | 2021 | 5 | 2021-05-07T16:53:55Z | 0 | 0 | 0900006484ad888e | ||||
| NOAA-NMFS-2020-0119-0002 | NOAA | Pacific Island Fisheries; 2020-2023 Marianas Bottomfish Annual Catch Limits and Accountability Measures NOAA-NMFS-2020-0119 | Pacific Island Fisheries: Mariana Archipelago Bottomfish Annual Catch Limits and Accountability Measures | Proposed Rule | 2021-02-22T05:00:00Z | 2021 | 2 | 2021-02-22T05:00:00Z | 2021-03-16T03:59:59Z | 2021-02-22T17:14:39Z | 2021-03240 | 0 | 0 | 0900006484a465ed | |
| NOAA-NMFS-2020-0119-0001 | NOAA | Pacific Island Fisheries; 2020-2023 Marianas Bottomfish Annual Catch Limits and Accountability Measures NOAA-NMFS-2020-0119 | 2021-01-06 Draft Environmental Assessment and Regulatory Impact Review for Proposed 2020-2023 ACL Marianas Bottomfish (0648-BJ82) | Supporting & Related Material | 2021-02-22T05:00:00Z | 2021 | 2 | 2021-02-22T17:13:18Z | 0 | 0 | 09000064849df803 |
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;