documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NOAA-NMFS-2015-0080" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, 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-0080-0284 | NOAA | Pacific Island Fisheries; Exemption for Large U.S. Longline Vessels To Fish in Portions of the American Samoa Large Vessel Prohibited Area NOAA-NMFS-2015-0080 | Pacific Island Pelagic Fisheries: Exemption for Large U.S. Longline Vessels to Fish in Portions of the American Samoa Large Vessel Prohibited Area | Rule | 2016-02-03T05:00:00Z | 2016 | 2 | 2016-02-03T05:00:00Z | 2016-02-03T16:02:00Z | 2016-01891 | 0 | 0 | 0900006481e4a04a | ||
| NOAA-NMFS-2015-0080-0283 | NOAA | Pacific Island Fisheries; Exemption for Large U.S. Longline Vessels To Fish in Portions of the American Samoa Large Vessel Prohibited Area NOAA-NMFS-2015-0080 | Van Houtan 2015 AS Longline Turtle Impacts | Supporting & Related Material | 2016-01-29T05:00:00Z | 2016 | 1 | 2016-01-29T18:01:24Z | 0 | 0 | 0900006481e0317a | ||||
| NOAA-NMFS-2015-0080-0282 | NOAA | Pacific Island Fisheries; Exemption for Large U.S. Longline Vessels To Fish in Portions of the American Samoa Large Vessel Prohibited Area NOAA-NMFS-2015-0080 | Van Houtan 2013 HI Deep Set Longline Consultation Analysis | Supporting & Related Material | 2016-01-29T05:00:00Z | 2016 | 1 | 2016-01-29T18:01:20Z | 0 | 0 | 0900006481e02ca5 | ||||
| NOAA-NMFS-2015-0080-0279 | NOAA | Pacific Island Fisheries; Exemption for Large U.S. Longline Vessels To Fish in Portions of the American Samoa Large Vessel Prohibited Area NOAA-NMFS-2015-0080 | NMFS 2015 ESA Biological Opinion AS Longline Fishery | Supporting & Related Material | 2016-01-29T05:00:00Z | 2016 | 1 | 2016-01-29T18:01:06Z | 0 | 0 | 0900006481e02ca2 | ||||
| NOAA-NMFS-2015-0080-0281 | NOAA | Pacific Island Fisheries; Exemption for Large U.S. Longline Vessels To Fish in Portions of the American Samoa Large Vessel Prohibited Area NOAA-NMFS-2015-0080 | USFWS 2014 Rose Atoll NWR Final Comp Cons Plan | Supporting & Related Material | 2016-01-29T05:00:00Z | 2016 | 1 | 2016-01-29T18:01:15Z | 0 | 0 | 0900006481e02ca4 | ||||
| NOAA-NMFS-2015-0080-0280 | NOAA | Pacific Island Fisheries; Exemption for Large U.S. Longline Vessels To Fish in Portions of the American Samoa Large Vessel Prohibited Area NOAA-NMFS-2015-0080 | Ryder et al. 2006 Post-Hook Turtle Mortality | Supporting & Related Material | 2016-01-29T05:00:00Z | 2016 | 1 | 2016-01-29T18:01:10Z | 0 | 0 | 0900006481e02ca3 | ||||
| NOAA-NMFS-2015-0080-0278 | NOAA | Pacific Island Fisheries; Exemption for Large U.S. Longline Vessels To Fish in Portions of the American Samoa Large Vessel Prohibited Area NOAA-NMFS-2015-0080 | Pacific Island Pelagic Fisheries; Exemption for Large U.S. Longline Vessels to Fish in Portions of the American Samoa Large Vessel Prohibited Area | Rule | 2016-01-29T00:00:00Z | 2016 | 1 | 2016-02-03T16:05:05Z | 0 | 1 | 0900006481e3b0d3 |
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;