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-0081" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-2016-0081-0010 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Bering Sea and Aleutian Islands Crab Rationalization Program, FMP KTC 47 NOAA-NMFS-2016-0081 | Fisheries of the Exclusive Economic Zone Off Alaska: Bering Sea and Aleutian Islands Crab Rationalization Program | Rule | 2016-12-20T05:00:00Z | 2016 | 12 | 2016-12-20T05:00:00Z | 2016-12-20T17:01:32Z | 2016-30068 | 0 | 0 | 0900006482428ee7 | ||
| NOAA-NMFS-2016-0081-0011 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Bering Sea and Aleutian Islands Crab Rationalization Program, FMP KTC 47 NOAA-NMFS-2016-0081 | 10-2016 KTC FMP 47 IPQ USE CAPS Final RIR | Supporting & Related Material | 2016-12-20T05:00:00Z | 2016 | 12 | 2016-12-20T17:03:12Z | 0 | 0 | 090000648242a92f | ||||
| NOAA-NMFS-2016-0081-0012 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Bering Sea and Aleutian Islands Crab Rationalization Program, FMP KTC 47 NOAA-NMFS-2016-0081 | CE KTC FMP 47 | Supporting & Related Material | 2016-12-20T05:00:00Z | 2016 | 12 | 2016-12-20T17:03:48Z | 0 | 0 | 090000648242a930 | ||||
| NOAA-NMFS-2016-0081-0005 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Bering Sea and Aleutian Islands Crab Rationalization Program, FMP KTC 47 NOAA-NMFS-2016-0081 | Fisheries of the Exclusive Economic Zone Off Alaska: Bering Sea and Aleutian Islands Crab Rationalization Program | Proposed Rule | 2016-09-23T04:00:00Z | 2016 | 9 | 2016-09-23T04:00:00Z | 2016-10-25T03:59:59Z | 2016-10-25T01:02:02Z | 2016-22911 | 0 | 0 | 090000648225ae66 | |
| NOAA-NMFS-2016-0081-0004 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Bering Sea and Aleutian Islands Crab Rationalization Program, FMP KTC 47 NOAA-NMFS-2016-0081 | 2004 Final Crab Environmental Impact Statement (Program EIS), RIR (Program RIR), Final Regulatory Flexibility Analysis (Program FRFA), and Social Impact Assessment | Supporting & Related Material | 2016-09-14T04:00:00Z | 2016 | 9 | 2016-09-14T19:55:25Z | 0 | 0 | 090000648220dd37 | ||||
| NOAA-NMFS-2016-0081-0003 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Bering Sea and Aleutian Islands Crab Rationalization Program, FMP KTC 47 NOAA-NMFS-2016-0081 | June 2016 Secretarial Review Draft KTC 47 IPQ Use Caps RIR-IRFA | Supporting & Related Material | 2016-09-14T04:00:00Z | 2016 | 9 | 2016-09-14T19:52:13Z | 0 | 0 | 090000648220dd39 | ||||
| NOAA-NMFS-2016-0081-0002 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Bering Sea and Aleutian Islands Crab Rationalization Program, FMP KTC 47 NOAA-NMFS-2016-0081 | KTC 47 FMP text | Supporting & Related Material | 2016-09-14T04:00:00Z | 2016 | 9 | 2016-09-14T19:52:23Z | 0 | 0 | 090000648220dd38 | ||||
| NOAA-NMFS-2016-0081-0001 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Bering Sea and Aleutian Islands Crab Rationalization Program, FMP KTC 47 NOAA-NMFS-2016-0081 | Fisheries of the Exclusive Economic Zone Off Alaska: Bering Sea and Aleutian Islands Crab Rationalization Program | Proposed Rule | 2016-09-13T04:00:00Z | 2016 | 9 | 2016-09-13T04:00:00Z | 2016-11-15T04:59:59Z | 2016-09-13T16:10:49Z | 2016-21824 | 0 | 0 | 090000648220271e |
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;