documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NOAA-NMFS-2011-0295" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, last_modified, 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-2011-0295-0015 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Pacific Salmon NOAA-NMFS-2011-0295 | Final EA RIR | Supporting & Related Material | 2012-12-21T05:00:00Z | 2012 | 12 | 2012-12-21T17:04:20Z | 0 | 0 | 0900006481195c17 | ||||
| NOAA-NMFS-2011-0295-0014 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Pacific Salmon NOAA-NMFS-2011-0295 | Fishery Management Plan | Supporting & Related Material | 2012-12-21T05:00:00Z | 2012 | 12 | 2012-12-21T17:04:20Z | 0 | 0 | 0900006481195ac8 | ||||
| NOAA-NMFS-2011-0295-0013 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Pacific Salmon NOAA-NMFS-2011-0295 | Fisheries of the Exclusive Economic Zone Off Alaska: Pacific Salmon | Rule | 2012-12-21T05:00:00Z | 2012 | 12 | 2012-12-21T05:00:00Z | 2012-12-21T16:42:28Z | 2012-30839 | 0 | 0 | 090000648119368f | ||
| NOAA-NMFS-2011-0295-0004 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Pacific Salmon NOAA-NMFS-2011-0295 | Fisheries of Exclusive Economic Zone Off Alaska: Pacific Salmon | Proposed Rule | 2012-04-11T04:00:00Z | 2012 | 4 | 2012-04-11T04:00:00Z | 2012-05-30T03:59:59Z | 2012-05-30T02:01:26Z | 2012-08750 | 0 | 0 | 0900006480fed5a6 | |
| NOAA-NMFS-2011-0295-0002 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Pacific Salmon NOAA-NMFS-2011-0295 | Draft EA/RIR for Amendment 12 | Supporting & Related Material | 2012-04-06T04:00:00Z | 2012 | 4 | 2012-04-06T18:13:55Z | 0 | 0 | 0900006480fe7d64 | ||||
| NOAA-NMFS-2011-0295-0003 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Pacific Salmon NOAA-NMFS-2011-0295 | Proposed Amendments 10, 11, and 12 to the Fishery Management Plan for the Salmon Fisheries in the EEZ off the Coast of Alaska | Supporting & Related Material | 2012-04-06T04:00:00Z | 2012 | 4 | 2012-04-06T18:13:55Z | 0 | 0 | 0900006480fe805a | ||||
| NOAA-NMFS-2011-0295-0001 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Pacific Salmon NOAA-NMFS-2011-0295 | Fisheries of the Exclusive Economic Zone Off Alaska: Pacific Salmon | Proposed Rule | 2012-04-02T04:00:00Z | 2012 | 4 | 2012-04-02T04:00:00Z | 2012-06-02T03:59:59Z | 2012-06-04T02:00:50Z | 2012-07854 | 0 | 0 | 0900006480fe6498 |
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;