documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "NOAA-NMFS-2011-0017" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, last_modified, withdrawn, 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-0017-0026 | NOAA | Comprehensive Annual catch limit (ACL) for the U.S. Caribbean NOAA-NMFS-2011-0017 | Management Plans of Puerto Rico and the U.S. Virgin Islands: Reef Fish, Spiny Lobster, Queen Conch and Coral and Reef Associated Plants and Invertebrates Fishery; Amendments | Rule | 2011-12-30T05:00:00Z | 2011 | 12 | 2011-12-30T05:00:00Z | 2011-12-30T13:44:00Z | 2011-33515 | 0 | 0 | 0900006480f8b752 | ||
| NOAA-NMFS-2011-0017-0022 | NOAA | Comprehensive Annual catch limit (ACL) for the U.S. Caribbean NOAA-NMFS-2011-0017 | 2011 Caribbean ACL Amendment Dear Reviewer Letter | Other | 2011-11-23T05:00:00Z | 2011 | 11 | 2011-11-23T05:00:00Z | 2011-11-23T15:42:10Z | 0 | 0 | 0900006480f7238c | |||
| NOAA-NMFS-2011-0017-0023 | NOAA | Comprehensive Annual catch limit (ACL) for the U.S. Caribbean NOAA-NMFS-2011-0017 | 2011 Caribbean ACL Amendment EPA Federal Register Notice FEIS | Other | 2011-11-23T05:00:00Z | 2011 | 11 | 2011-11-23T05:00:00Z | 2011-11-23T15:42:10Z | 0 | 0 | 0900006480f7238d | |||
| NOAA-NMFS-2011-0017-0018 | NOAA | Comprehensive Annual catch limit (ACL) for the U.S. Caribbean NOAA-NMFS-2011-0017 | Fishery Management Plans of Puerto Rico and the U.S. Virgin Islands: Amendments to the Reef Fish, Spiny Lobster, Queen Conch and Coral and Reef Associated Plants and Invertebrates | Proposed Rule | 2011-11-07T05:00:00Z | 2011 | 11 | 2011-11-07T05:00:00Z | 2011-11-23T04:59:59Z | 2012-03-24T19:34:43Z | 2011-28761 | 0 | 0 | 0900006480f67082 | |
| NOAA-NMFS-2011-0017-0016 | NOAA | Comprehensive Annual catch limit (ACL) for the U.S. Caribbean NOAA-NMFS-2011-0017 | Fishery Management Plans of Puerto Rico and U.S. Virgin Islands: Reef Fish, Spiny Lobster, Queen Conch and Coral and Reef Associated Plants and Invertebrates | Proposed Rule | 2011-09-26T04:00:00Z | 2011 | 9 | 2011-09-26T04:00:00Z | 2011-11-26T04:59:59Z | 2011-12-01T21:43:33Z | 2011-24700 | 0 | 0 | 0900006480f2bddb | |
| NOAA-NMFS-2011-0017-0017 | NOAA | Comprehensive Annual catch limit (ACL) for the U.S. Caribbean NOAA-NMFS-2011-0017 | 2011 Caribbean ACL Amendment | Supporting & Related Material | 2011-09-26T04:00:00Z | 2011 | 9 | 2011-09-26T14:57:12Z | 0 | 0 | 0900006480f28ac1 | ||||
| NOAA-NMFS-2011-0017-0004 | NOAA | Comprehensive Annual catch limit (ACL) for the U.S. Caribbean NOAA-NMFS-2011-0017 | Notice for Comprehensive Annual catch limit (ACL) for the U.S. Caribbean | Notice | 2011-07-15T04:00:00Z | 2011 | 7 | 2011-07-15T04:00:00Z | 2013-08-29T19:04:38Z | 0 | 0 | 0900006480ec3199 | |||
| NOAA-NMFS-2011-0017-0003 | NOAA | Comprehensive Annual catch limit (ACL) for the U.S. Caribbean NOAA-NMFS-2011-0017 | Draft Environmental Impact Statement (DEIS) for the 2011 Caribbean Annual Catch Limit (ACL) Amendment | Supporting & Related Material | 2011-07-12T04:00:00Z | 2011 | 7 | 2011-07-12T18:33:49Z | 0 | 0 | 0900006480ec0c53 | ||||
| NOAA-NMFS-2011-0017-0001 | NOAA | Comprehensive Annual catch limit (ACL) for the U.S. Caribbean NOAA-NMFS-2011-0017 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic; Comprehensive Annual Catch Limit Amendment for the U.S. Caribbean | Notice | 2011-01-28T00:00:00Z | 2011 | 1 | 2011-07-18T15:10:20Z | 0 | 1 | 0900006480bd48d1 | ||||
| NOAA-NMFS-2011-0017-0002 | NOAA | Comprehensive Annual catch limit (ACL) for the U.S. Caribbean NOAA-NMFS-2011-0017 | Scoping Document for 2011 Draft Environmental Impact Statement | Supporting & Related Material | 2011-01-28T00:00:00Z | 2011 | 1 | 2011-02-02T16:05:21Z | 0 | 1 | 0900006480bd559d |
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;