documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "NOAA-NMFS-2015-0156" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, withdrawn, 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-2015-0156-0004 | NOAA | Pacific Island Fisheries; 2015 CNMI Longline Bigeye Tuna Fishery; Closure NOAA-NMFS-2015-0156 | Fisheries of the Western Pacific: Pacific Island Pelagic Fisheries; Commonwealth of the Northern Mariana Islands Longline Bigeye Tuna Fishery; Closure | Rule | 2015-11-27T05:00:00Z | 2015 | 11 | 2015-11-27T05:00:00Z | 2015-11-27T17:07:53Z | 2015-30193 | 0 | 0 | 0900006481d75ced | ||
| NOAA-NMFS-2015-0156-0003 | NOAA | Pacific Island Fisheries; 2015 CNMI Longline Bigeye Tuna Fishery; Closure NOAA-NMFS-2015-0156 | 80 FR 61767 - Final Specs - 2015 BET Limits MP ( 2015-10-14) | Supporting & Related Material | 2015-11-23T05:00:00Z | 2015 | 11 | 2015-11-23T22:18:21Z | 0 | 0 | 0900006481d6167e | ||||
| NOAA-NMFS-2015-0156-0002 | NOAA | Pacific Island Fisheries; 2015 CNMI Longline Bigeye Tuna Fishery; Closure NOAA-NMFS-2015-0156 | 80 FR 44883 - Temp Rule - Close WCP BET LL (2015-07-28) | Supporting & Related Material | 2015-11-23T05:00:00Z | 2015 | 11 | 2015-11-23T22:18:18Z | 0 | 0 | 0900006481d6167d | ||||
| NOAA-NMFS-2015-0156-0001 | NOAA | Pacific Island Fisheries; 2015 CNMI Longline Bigeye Tuna Fishery; Closure NOAA-NMFS-2015-0156 | Pacific Island Pelagic Fisheries; 2015 CNMI Longline Bigeye Tuna Fishery; Closure | Notice | 2015-11-23T00:00:00Z | 2015 | 11 | 2015-11-27T17:06:41Z | 0 | 1 | 0900006481d6b6c5 |
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;