documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "NOAA-NMFS-2020-0099" 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)
document_type 3
agency_id 1
- NOAA 9
| 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-0099-0012 | NOAA | Pacific Island Fisheries; Interim Measures for American Samoa Bottomfish NOAA-NMFS-2020-0099 | 2021-05-27 NEPA FONSI Temp Rule AS Bottomfish ICL 2021 0648-BK62 | Supporting & Related Material | 2021-06-21T04:00:00Z | 2021 | 6 | 2021-06-21T16:48:13Z | 0 | 0 | 0900006484b81c66 | ||||
| NOAA-NMFS-2020-0099-0013 | NOAA | Pacific Island Fisheries; Interim Measures for American Samoa Bottomfish NOAA-NMFS-2020-0099 | 2021-05-27 NEPA SIR Temp Rule AS Bottomfish ICL 2021 0648-BK62 | Supporting & Related Material | 2021-06-21T04:00:00Z | 2021 | 6 | 2021-06-21T16:48:21Z | 0 | 0 | 0900006484b81c69 | ||||
| NOAA-NMFS-2020-0099-0014 | NOAA | Pacific Island Fisheries; Interim Measures for American Samoa Bottomfish NOAA-NMFS-2020-0099 | Pacific Island Fisheries: Interim Measures for American Samoa Bottomfish | Rule | 2021-06-21T04:00:00Z | 2021 | 6 | 2021-06-21T04:00:00Z | 2021-06-21T16:53:49Z | 2021-12931 | 0 | 0 | 0900006484b9b1cc | ||
| NOAA-NMFS-2020-0099-0009 | NOAA | Pacific Island Fisheries; Interim Measures for American Samoa Bottomfish NOAA-NMFS-2020-0099 | Pacific Island Fisheries: Interim Measures for American Samoa Bottomfish | Rule | 2020-11-16T05:00:00Z | 2020 | 11 | 2020-11-16T05:00:00Z | 2020-11-16T16:25:56Z | 2020-25200 | 0 | 0 | 09000064849604f2 | ||
| NOAA-NMFS-2020-0099-0010 | NOAA | Pacific Island Fisheries; Interim Measures for American Samoa Bottomfish NOAA-NMFS-2020-0099 | 2020-10-16 NEPA Final EA 2020 AS Bottomfish 0648-BJ94 | Supporting & Related Material | 2020-11-16T05:00:00Z | 2020 | 11 | 2020-11-16T16:32:06Z | 0 | 0 | 090000648496160c | ||||
| NOAA-NMFS-2020-0099-0011 | NOAA | Pacific Island Fisheries; Interim Measures for American Samoa Bottomfish NOAA-NMFS-2020-0099 | 2020-10-19 NEPA FONSI 2020 AS Bottomfish 0648-BJ94 | Supporting & Related Material | 2020-11-16T05:00:00Z | 2020 | 11 | 2020-11-16T16:32:13Z | 0 | 0 | 090000648496160d | ||||
| NOAA-NMFS-2020-0099-0003 | NOAA | Pacific Island Fisheries; Interim Measures for American Samoa Bottomfish NOAA-NMFS-2020-0099 | 2020-08-20 Draft Environmental Assessment 0648-BJ94 | Supporting & Related Material | 2020-09-11T04:00:00Z | 2020 | 9 | 2020-10-02T00:13:02Z | 0 | 0 | 0900006484817761 | ||||
| NOAA-NMFS-2020-0099-0001 | NOAA | Pacific Island Fisheries; Interim Measures for American Samoa Bottomfish NOAA-NMFS-2020-0099 | Pacific Island Fisheries: Interim Measures for American Samoa Bottomfish | Proposed Rule | 2020-09-11T04:00:00Z | 2020 | 9 | 2020-09-11T04:00:00Z | 2020-09-29T03:59:59Z | 2020-09-26T01:00:54Z | 2020-19953 | 0 | 0 | 0900006484851fd6 | |
| NOAA-NMFS-2020-0099-0002 | NOAA | Pacific Island Fisheries; Interim Measures for American Samoa Bottomfish NOAA-NMFS-2020-0099 | 2019 Stock Assessment - Territorial Bottomfish | Supporting & Related Material | 2020-09-11T04:00:00Z | 2020 | 9 | 2020-09-11T16:22:31Z | 0 | 0 | 0900006484817760 |
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;