documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "NOAA-NMFS-2013-0161" and posted_year = 2014 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-2013-0161-0010 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Amendment 96 to the Gulf of Alaska Fishery Management Plan; Management of Community Quota Entities NOAA-NMFS-2013-0161 | Fisheries of the Exclusive Economic Zone Off Alaska: Amendment 96 to Gulf of Alaska Fishery Management Plan; Management of Community Quota Entities | Rule | 2014-11-07T05:00:00Z | 2014 | 11 | 2014-11-07T05:00:00Z | 2014-11-07T17:01:09Z | 2014-26466 | 0 | 0 | 090000648191e8ae | ||
| NOAA-NMFS-2013-0161-0011 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Amendment 96 to the Gulf of Alaska Fishery Management Plan; Management of Community Quota Entities NOAA-NMFS-2013-0161 | GOA 96 CQE SmallBlock. FMP Text | Supporting & Related Material | 2014-11-07T05:00:00Z | 2014 | 11 | 2014-11-07T17:50:48Z | 0 | 0 | 090000648191f762 | ||||
| NOAA-NMFS-2013-0161-0012 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Amendment 96 to the Gulf of Alaska Fishery Management Plan; Management of Community Quota Entities NOAA-NMFS-2013-0161 | October 2014 GOA FMP 96 CQE Small Block RIR | Supporting & Related Material | 2014-11-07T05:00:00Z | 2014 | 11 | 2014-11-07T17:52:01Z | 0 | 0 | 090000648191f78b | ||||
| NOAA-NMFS-2013-0161-0006 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Amendment 96 to the Gulf of Alaska Fishery Management Plan; Management of Community Quota Entities NOAA-NMFS-2013-0161 | GOA 96 CQE SmallBlock.FMP Text | Supporting & Related Material | 2014-08-11T04:00:00Z | 2014 | 8 | 2014-08-11T17:00:08Z | 0 | 0 | 0900006481818b95 | ||||
| NOAA-NMFS-2013-0161-0005 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Amendment 96 to the Gulf of Alaska Fishery Management Plan; Management of Community Quota Entities NOAA-NMFS-2013-0161 | RIR/IRFA GOA 96 CQE Small Block SOC 022014 | Supporting & Related Material | 2014-08-11T04:00:00Z | 2014 | 8 | 2014-08-11T16:59:51Z | 0 | 0 | 0900006481818b94 | ||||
| NOAA-NMFS-2013-0161-0004 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Amendment 96 to the Gulf of Alaska Fishery Management Plan; Management of Community Quota Entities NOAA-NMFS-2013-0161 | Fisheries of the Exclusive Economic Zone Off Alaska: Amendment 96 to the Gulf of Alaska Fishery Management Plan; Management of Community Quota Entities | Proposed Rule | 2014-08-07T04:00:00Z | 2014 | 8 | 2014-08-07T04:00:00Z | 2014-09-09T03:59:59Z | 2014-08-28T01:03:32Z | 2014-18678 | 0 | 0 | 090000648180badb | |
| NOAA-NMFS-2013-0161-0002 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Amendment 96 to the Gulf of Alaska Fishery Management Plan; Management of Community Quota Entities NOAA-NMFS-2013-0161 | RIR/IRFA GOA 96 CQE Small Block SOC 022014 | Supporting & Related Material | 2014-07-29T04:00:00Z | 2014 | 7 | 2014-07-29T17:00:31Z | 0 | 0 | 09000064817eaea7 | ||||
| NOAA-NMFS-2013-0161-0003 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Amendment 96 to the Gulf of Alaska Fishery Management Plan; Management of Community Quota Entities NOAA-NMFS-2013-0161 | GOA 96 CQE SmallBlock.FMP Text | Supporting & Related Material | 2014-07-29T04:00:00Z | 2014 | 7 | 2014-07-29T17:01:07Z | 0 | 0 | 09000064817eaffc | ||||
| NOAA-NMFS-2013-0161-0001 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Amendment 96 to the Gulf of Alaska Fishery Management Plan; Management of Community Quota Entities NOAA-NMFS-2013-0161 | Fisheries of the Exclusive Economic Zone Off Alaska: Fishery Management Plan for Groundfish of the Gulf of Alaska | Proposed Rule | 2014-07-25T04:00:00Z | 2014 | 7 | 2014-07-25T04:00:00Z | 2014-09-24T03:59:59Z | 2014-07-29T16:54:22Z | 2014-17556 | 0 | 0 | 09000064817e15e2 |
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;