documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NOAA-NMFS-2013-0057" 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)
document_type 3
agency_id 1
- NOAA 8
| 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-0057-0007 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Bering Sea and Aleutian Islands Crab Rationalization Program NOAA-NMFS-2013-0057 | KTC 44 Categorical Exclusion | Supporting & Related Material | 2016-01-13T05:00:00Z | 2016 | 1 | 2016-01-13T17:25:52Z | 0 | 0 | 0900006481e05657 | ||||
| NOAA-NMFS-2013-0057-0008 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Bering Sea and Aleutian Islands Crab Rationalization Program NOAA-NMFS-2013-0057 | KTC 44 FINAL RIR_IRFA_Jan_2016 | Supporting & Related Material | 2016-01-13T05:00:00Z | 2016 | 1 | 2016-01-13T17:25:56Z | 0 | 0 | 0900006481e05658 | ||||
| NOAA-NMFS-2013-0057-0006 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Bering Sea and Aleutian Islands Crab Rationalization Program NOAA-NMFS-2013-0057 | Fisheries of the Exclusive Economic Zone Off Alaska: Bering Sea and Aleutian Islands Crab Rationalization Program | Rule | 2016-01-13T05:00:00Z | 2016 | 1 | 2016-01-13T05:00:00Z | 2016-01-13T17:28:27Z | 2016-00387 | 0 | 0 | 0900006481e07a0d | ||
| NOAA-NMFS-2013-0057-0005 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Bering Sea and Aleutian Islands Crab Rationalization Program NOAA-NMFS-2013-0057 | 2004 FinalCrabEIS_RIR_SIA | Supporting & Related Material | 2015-10-23T04:00:00Z | 2015 | 10 | 2015-10-23T23:16:50Z | 0 | 0 | 0900006481ce9d7b | ||||
| NOAA-NMFS-2013-0057-0004 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Bering Sea and Aleutian Islands Crab Rationalization Program NOAA-NMFS-2013-0057 | Fisheries of the Exclusive Economic Zone Off Alaska: Bering Sea and Aleutian Islands Crab Rationalization Program | Proposed Rule | 2015-10-22T04:00:00Z | 2015 | 10 | 2015-10-22T04:00:00Z | 2015-11-24T04:59:59Z | 2015-10-22T21:21:12Z | 2015-26844 | 0 | 0 | 0900006481ce3308 | |
| NOAA-NMFS-2013-0057-0001 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Bering Sea and Aleutian Islands Crab Rationalization Program NOAA-NMFS-2013-0057 | Fisheries of the Exclusive Economic Zone Off Alaska: Bering Sea and Aleutian Islands Crab Rationalization Program | Proposed Rule | 2015-10-09T04:00:00Z | 2015 | 10 | 2015-10-09T04:00:00Z | 2015-12-09T04:59:59Z | 2015-10-09T15:48:53Z | 2015-25677 | 0 | 0 | 0900006481cbe24a | |
| NOAA-NMFS-2013-0057-0003 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Bering Sea and Aleutian Islands Crab Rationalization Program NOAA-NMFS-2013-0057 | KTC 44 Draft Sept 2015 RIR_IRFA_RIR_BE98 | Supporting & Related Material | 2015-10-09T04:00:00Z | 2015 | 10 | 2015-10-27T23:23:44Z | 0 | 0 | 0900006481cbeeee | ||||
| NOAA-NMFS-2013-0057-0002 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Bering Sea and Aleutian Islands Crab Rationalization Program NOAA-NMFS-2013-0057 | KTC 44 FMP Text_BE98 | Supporting & Related Material | 2015-10-09T04:00:00Z | 2015 | 10 | 2015-10-09T15:54:13Z | 0 | 0 | 0900006481cbeeed |
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;