documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NOAA-NMFS-2019-0056" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2019-0056-0012 | NOAA | International Fisheries; Western and Central Pacific Fisheries for Highly Migratory Species; Fishing Restrictions in Purse Seine Fisheries NOAA-NMFS-2019-0056 | International Fisheries: Western and Central Pacific Fisheries for Highly Migratory Species; Reopening and Closing of the Purse Seine Fishery in the ELAPS in 2019 | Rule | 2019-11-29T05:00:00Z | 2019 | 11 | 2019-11-29T05:00:00Z | 2019-11-29T18:52:35Z | 2019-25780 | 0 | 0 | 09000064841c8871 | ||
| NOAA-NMFS-2019-0056-0010 | NOAA | International Fisheries; Western and Central Pacific Fisheries for Highly Migratory Species; Fishing Restrictions in Purse Seine Fisheries NOAA-NMFS-2019-0056 | International Fisheries: Western and Central Pacific Fisheries for Highly Migratory Species; Closure of Purse Seine Fishery in the Effort Limit Area for Purse Seine in 2019 | Rule | 2019-10-01T04:00:00Z | 2019 | 10 | 2019-10-01T04:00:00Z | 2019-10-01T17:42:29Z | 2019-20998 | 0 | 0 | 0900006483ff1fcf | ||
| NOAA-NMFS-2019-0056-0003 | NOAA | International Fisheries; Western and Central Pacific Fisheries for Highly Migratory Species; Fishing Restrictions in Purse Seine Fisheries NOAA-NMFS-2019-0056 | BI78 - Supplemental Environmental Assessment: Fishing Restrictions in Purse Seine Fisheries | Supporting & Related Material | 2019-07-31T04:00:00Z | 2019 | 7 | 2019-07-31T18:00:34Z | 0 | 0 | 0900006483dd80c2 | ||||
| NOAA-NMFS-2019-0056-0005 | NOAA | International Fisheries; Western and Central Pacific Fisheries for Highly Migratory Species; Fishing Restrictions in Purse Seine Fisheries NOAA-NMFS-2019-0056 | BI78 -Appendix A for Supplemental EA_2015 PEA | Supporting & Related Material | 2019-07-31T04:00:00Z | 2019 | 7 | 2019-07-31T18:00:06Z | 0 | 0 | 0900006483dd8472 | ||||
| NOAA-NMFS-2019-0056-0001 | NOAA | International Fisheries; Western and Central Pacific Fisheries for Highly Migratory Species; Fishing Restrictions in Purse Seine Fisheries NOAA-NMFS-2019-0056 | International Fisheries: Western and Central Pacific Fisheries for Highly Migratory Species; Fishing Restrictions in Purse Seine Fisheries | Rule | 2019-07-31T04:00:00Z | 2019 | 7 | 2019-07-31T04:00:00Z | 2019-08-31T03:59:59Z | 2019-10-18T01:05:34Z | 2019-16284 | 0 | 0 | 0900006483dd48b0 | |
| NOAA-NMFS-2019-0056-0004 | NOAA | International Fisheries; Western and Central Pacific Fisheries for Highly Migratory Species; Fishing Restrictions in Purse Seine Fisheries NOAA-NMFS-2019-0056 | BI78 - Finding of No Significant Impact: Fishing Restrictions in Purse Seine Fisheries | Supporting & Related Material | 2019-07-31T04:00:00Z | 2019 | 7 | 2019-07-31T18:00:45Z | 0 | 0 | 0900006483dd857d | ||||
| NOAA-NMFS-2019-0056-0006 | NOAA | International Fisheries; Western and Central Pacific Fisheries for Highly Migratory Species; Fishing Restrictions in Purse Seine Fisheries NOAA-NMFS-2019-0056 | BI78 - Compliance Guide | Supporting & Related Material | 2019-07-31T04:00:00Z | 2019 | 7 | 2019-07-31T18:03:39Z | 0 | 0 | 0900006483dd896c | ||||
| NOAA-NMFS-2019-0056-0002 | NOAA | International Fisheries; Western and Central Pacific Fisheries for Highly Migratory Species; Fishing Restrictions in Purse Seine Fisheries NOAA-NMFS-2019-0056 | BI78 - Regulatory Impact Review: Fishing Restrictions in Purse Seine Fisheries | Supporting & Related Material | 2019-07-31T04:00:00Z | 2019 | 7 | 2019-07-31T18:00:22Z | 0 | 0 | 0900006483dd8336 |
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;