documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NOAA-NMFS-2016-0154" 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), 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-2016-0154-0017 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Integrating Electronic Monitoring Into the North Pacific Observer Program NOAA-NMFS-2016-0154 | June 2017 BSAI-114_GOA-104_EM_EARIR-Final | Supporting & Related Material | 2017-08-08T04:00:00Z | 2017 | 8 | 2017-08-08T16:07:09Z | 0 | 0 | 09000064829da480 | ||||
| NOAA-NMFS-2016-0154-0016 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Integrating Electronic Monitoring Into the North Pacific Observer Program NOAA-NMFS-2016-0154 | Fisheries of Exclusive Economic Zone Off Alaska: Integrating Electronic Monitoring into North Pacific Observer Program | Rule | 2017-08-08T04:00:00Z | 2017 | 8 | 2017-08-08T04:00:00Z | 2017-08-08T16:04:55Z | 2017-16703 | 0 | 0 | 09000064829d671e | ||
| NOAA-NMFS-2016-0154-0006 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Integrating Electronic Monitoring Into the North Pacific Observer Program NOAA-NMFS-2016-0154 | Fisheries of the Exclusive Economic Zone Off Alaska: Integrating Electronic Monitoring into North Pacific Observer Program | Proposed Rule | 2017-03-23T04:00:00Z | 2017 | 3 | 2017-03-23T04:00:00Z | 2017-05-23T03:59:59Z | 2017-05-09T01:00:25Z | 2017-05753 | 0 | 0 | 090000648251fb25 | |
| NOAA-NMFS-2016-0154-0004 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Integrating Electronic Monitoring Into the North Pacific Observer Program NOAA-NMFS-2016-0154 | GOA 104 FMP AMD text | Supporting & Related Material | 2017-03-10T05:00:00Z | 2017 | 3 | 2017-03-10T18:07:09Z | 0 | 0 | 090000648250058b | ||||
| NOAA-NMFS-2016-0154-0003 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Integrating Electronic Monitoring Into the North Pacific Observer Program NOAA-NMFS-2016-0154 | BSAI 114 FMP text | Supporting & Related Material | 2017-03-10T05:00:00Z | 2017 | 3 | 2017-03-10T18:06:52Z | 0 | 0 | 090000648250058a | ||||
| NOAA-NMFS-2016-0154-0001 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Integrating Electronic Monitoring Into the North Pacific Observer Program NOAA-NMFS-2016-0154 | Fisheries of the Exclusive Economic Zone Off Alaska: Integrating Electronic Monitoring into the North Pacific Observer Program; Public Hearing | Proposed Rule | 2017-03-10T05:00:00Z | 2017 | 3 | 2017-03-10T05:00:00Z | 2017-05-10T03:59:59Z | 2017-05-10T01:02:29Z | 2017-04716 | 0 | 0 | 09000064824fecd8 | |
| NOAA-NMFS-2016-0154-0005 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Integrating Electronic Monitoring Into the North Pacific Observer Program NOAA-NMFS-2016-0154 | March 2017 Draft EA RIR FMP 114-104 | Supporting & Related Material | 2017-03-10T05:00:00Z | 2017 | 3 | 2017-03-10T18:06:07Z | 0 | 0 | 090000648250047d | ||||
| NOAA-NMFS-2016-0154-0002 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Integrating Electronic Monitoring Into the North Pacific Observer Program NOAA-NMFS-2016-0154 | Jan 2017 Draft EA RIR | Supporting & Related Material | 2017-03-10T00:00:00Z | 2017 | 3 | 2017-03-10T18:05:31Z | 0 | 1 | 09000064825003d7 |
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;