documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "NOAA-NMFS-2012-0013" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2012-0013-0004 | NOAA | Environmental Impact Statement for Steller Sea Lion Protection Measures for Groundfish Fisheries in the Bering Sea and Aleutian Islands Management Area NOAA-NMFS-2012-0013 | Fisheries of the Exclusive Economic Zone Off Alaska: Groundfish Fisheries in the Bering Sea and Aleutian Islands Management Area | Proposed Rule | 2012-08-30T04:00:00Z | 2012 | 8 | 2012-08-30T04:00:00Z | 2012-10-16T03:59:59Z | 2012-11-07T03:01:04Z | 2012-21477 | 0 | 0 | 09000064810faf04 | |
| NOAA-NMFS-2012-0013-0003 | NOAA | Environmental Impact Statement for Steller Sea Lion Protection Measures for Groundfish Fisheries in the Bering Sea and Aleutian Islands Management Area NOAA-NMFS-2012-0013 | November 2010 Biological Opinion on the Effects of the Alaska Groundfish Fisheries on Steller Sea Lions and Other Endangered Species; Public Meeting | Notice | 2012-06-11T04:00:00Z | 2012 | 6 | 2012-06-11T04:00:00Z | 2012-06-11T16:52:58Z | 77 FR | 0 | 0 | 0900006481041550 | ||
| NOAA-NMFS-2012-0013-0002 | NOAA | Environmental Impact Statement for Steller Sea Lion Protection Measures for Groundfish Fisheries in the Bering Sea and Aleutian Islands Management Area NOAA-NMFS-2012-0013 | 2010 EA and BiOp for Stellar Sea Lion | Supporting & Related Material | 2012-04-17T04:00:00Z | 2012 | 4 | 2012-06-11T17:28:52Z | 0 | 0 | 0900006480ff2977 | ||||
| NOAA-NMFS-2012-0013-0001 | NOAA | Environmental Impact Statement for Steller Sea Lion Protection Measures for Groundfish Fisheries in the Bering Sea and Aleutian Islands Management Area NOAA-NMFS-2012-0013 | Fisheries of the Exclusive Economic Zone Off Alaska: Groundfish Fisheries in Bering Sea and Aleutian Islands | Proposed Rule | 2012-04-17T04:00:00Z | 2012 | 4 | 2012-04-17T04:00:00Z | 2012-10-16T03:59:59Z | 2012-10-17T02:00:55Z | 2012-09244 | 0 | 0 | 0900006480ff2791 |
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;