documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "NOAA-NMFS-2015-0080" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2015-0080-0005 | 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 | 2015-08-10 DRAFT Environmental Assessment and Regulatory Impact Review, AS LVPA Exemption 0648-BF22 | Supporting & Related Material | 2015-08-25T04:00:00Z | 2015 | 8 | 2015-08-25T16:06:06Z | 0 | 0 | 0900006481c28592 | ||||
| NOAA-NMFS-2015-0080-0003 | 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 | 67 FR 4369 - Final Rule - AS Large Vessel Closed Areas (2002-01-30) | Supporting & Related Material | 2015-08-25T04:00:00Z | 2015 | 8 | 2015-08-25T16:04:26Z | 0 | 0 | 0900006481b9c647 | ||||
| NOAA-NMFS-2015-0080-0001 | 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 | Proposed Rule | 2015-08-25T04:00:00Z | 2015 | 8 | 2015-08-25T04:00:00Z | 2015-09-25T03:59:59Z | 2016-01-29T18:25:36Z | 2015-20962 | 0 | 0 | 0900006481c36e56 | |
| NOAA-NMFS-2015-0080-0002 | 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 | 66 FR 39475 - PR - AS Longline Closed Areas (2001-07-31) | Supporting & Related Material | 2015-08-25T04:00:00Z | 2015 | 8 | 2015-08-25T16:04:21Z | 0 | 0 | 0900006481b9c323 | ||||
| NOAA-NMFS-2015-0080-0004 | 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 | 77 FR 34260 - Final Rule - AS Large Vessel Prohibited Areas (2012-06-11) | Supporting & Related Material | 2015-08-25T04:00:00Z | 2015 | 8 | 2015-08-25T16:04:31Z | 0 | 0 | 0900006481b9c648 |
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;