documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "NOAA-NMFS-2011-0223" 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)
document_type 4
agency_id 1
- NOAA 9
| 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-0223-0022 | NOAA | Amendment 11 to the Fishery Management Plan for Spiny Lobster in the Gulf of Mexico and South Atlantic NOAA-NMFS-2011-0223 | Spiny Lobster Fishery of the Gulf of Mexico and South Atlantic: Amendment 11; Correction | Rule | 2012-08-22T04:00:00Z | 2012 | 8 | 2012-08-22T04:00:00Z | 2012-09-06T14:30:44Z | 2012-20674 | 0 | 0 | 09000064810e99d4 | ||
| NOAA-NMFS-2011-0223-0021 | NOAA | Amendment 11 to the Fishery Management Plan for Spiny Lobster in the Gulf of Mexico and South Atlantic NOAA-NMFS-2011-0223 | Spiny Lobster Fishery of the Gulf of Mexico and South Atlantic; Amendment 11 | Rule | 2012-07-27T04:00:00Z | 2012 | 7 | 2012-07-27T04:00:00Z | 2012-07-27T13:57:53Z | 2012-18303 | 0 | 0 | 09000064810b4410 | ||
| NOAA-NMFS-2011-0223-0014 | NOAA | Amendment 11 to the Fishery Management Plan for Spiny Lobster in the Gulf of Mexico and South Atlantic NOAA-NMFS-2011-0223 | Spiny Lobster Fishery of Gulf of Mexico and South Atlantic; Amendment 11 | Proposed Rule | 2012-05-15T04:00:00Z | 2012 | 5 | 2012-05-15T04:00:00Z | 2012-06-15T03:59:59Z | 2015-09-22T01:30:24Z | 2012-11673 | 0 | 0 | 090000648100ee0a | |
| NOAA-NMFS-2011-0223-0012 | NOAA | Amendment 11 to the Fishery Management Plan for Spiny Lobster in the Gulf of Mexico and South Atlantic NOAA-NMFS-2011-0223 | Final Spiny Lobster Amendment 11 | Supporting & Related Material | 2012-04-27T04:00:00Z | 2012 | 4 | 2012-04-27T12:56:13Z | 0 | 0 | 0900006480ff7655 | ||||
| NOAA-NMFS-2011-0223-0013 | NOAA | Amendment 11 to the Fishery Management Plan for Spiny Lobster in the Gulf of Mexico and South Atlantic NOAA-NMFS-2011-0223 | Final Spiny Lobster Amendment 11 Appendices | Supporting & Related Material | 2012-04-27T04:00:00Z | 2012 | 4 | 2012-04-27T12:56:20Z | 0 | 0 | 0900006480ff790e | ||||
| NOAA-NMFS-2011-0223-0011 | NOAA | Amendment 11 to the Fishery Management Plan for Spiny Lobster in the Gulf of Mexico and South Atlantic NOAA-NMFS-2011-0223 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Spiny Lobster Fishery of Gulf of Mexico and South Atlantic; Amendment 11 | Proposed Rule | 2012-04-27T04:00:00Z | 2012 | 4 | 2012-04-27T04:00:00Z | 2012-06-27T03:59:59Z | 2012-06-19T02:01:19Z | 2012-10248 | 0 | 0 | 0900006480ffebed | |
| NOAA-NMFS-2011-0223-0005 | NOAA | Amendment 11 to the Fishery Management Plan for Spiny Lobster in the Gulf of Mexico and South Atlantic NOAA-NMFS-2011-0223 | Lobster 11 DSEIS | Supporting & Related Material | 2012-02-03T05:00:00Z | 2012 | 2 | 2012-02-03T15:21:15Z | 0 | 0 | 0900006480facfd1 | ||||
| NOAA-NMFS-2011-0223-0004 | NOAA | Amendment 11 to the Fishery Management Plan for Spiny Lobster in the Gulf of Mexico and South Atlantic NOAA-NMFS-2011-0223 | EPA Notice of Availability | Notice | 2012-02-03T05:00:00Z | 2012 | 2 | 2012-02-03T05:00:00Z | 2012-03-20T03:59:59Z | 2012-02-03T15:16:28Z | 0 | 0 | 0900006480facfa9 | ||
| NOAA-NMFS-2011-0223-0001 | NOAA | Amendment 11 to the Fishery Management Plan for Spiny Lobster in the Gulf of Mexico and South Atlantic NOAA-NMFS-2011-0223 | NOI Lobster 11 | Notice | 2011-09-19T04:00:00Z | 2011 | 9 | 2011-09-19T04:00:00Z | 2011-10-20T03:59:59Z | 2011-09-19T14:41:42Z | 0 | 0 | 0900006480f22292 |
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;