documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "NOAA-NMFS-2011-0219" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
- Rule 4
- Notice 1
- Proposed Rule 1
agency_id 1
- NOAA 6
| 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-0219-0006 | NOAA | Comprehensive Ecosystem Based Amendment 2 NOAA-NMFS-2011-0219 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Comprehensive Ecosystem-Based Amendment 2 for the South Atlantic Region; Correction | Rule | 2022-04-19T04:00:00Z | 2022 | 4 | 2022-04-19T04:00:00Z | 2024-04-16T17:21:10Z | 2022-08057 | 0 | 0 | 0900006485023754 | ||
| NOAA-NMFS-2011-0219-0005 | NOAA | Comprehensive Ecosystem Based Amendment 2 NOAA-NMFS-2011-0219 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Comprehensive Ecosystem-Based Amendment 2 for the South Atlantic Region; Correction | Rule | 2012-05-18T04:00:00Z | 2012 | 5 | 2012-05-18T04:00:00Z | 2012-06-11T16:59:17Z | 2012-12156 | 0 | 0 | 0900006481013e91 | ||
| NOAA-NMFS-2011-0219-0004 | NOAA | Comprehensive Ecosystem Based Amendment 2 NOAA-NMFS-2011-0219 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Comprehensive Ecosystem-Based Amendment 2 for the South Atlantic Region; Correction | Rule | 2012-01-30T05:00:00Z | 2012 | 1 | 2012-01-30T05:00:00Z | 2012-03-07T15:19:11Z | 2012-01943 | 0 | 0 | 0900006480fa8db7 | ||
| NOAA-NMFS-2011-0219-0003 | NOAA | Comprehensive Ecosystem Based Amendment 2 NOAA-NMFS-2011-0219 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Comprehensive Ecosystem-Based Amendment 2 for the South Atlantic Region | Rule | 2011-12-30T05:00:00Z | 2011 | 12 | 2011-12-30T05:00:00Z | 2012-03-07T15:17:49Z | 2011-33300 | 0 | 0 | 0900006480f8b707 | ||
| NOAA-NMFS-2011-0219-0002 | NOAA | Comprehensive Ecosystem Based Amendment 2 NOAA-NMFS-2011-0219 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Comprehensive Ecosystem-Based Amendment 2 for the South Atlantic Region | Proposed Rule | 2011-11-08T05:00:00Z | 2011 | 11 | 2011-11-08T05:00:00Z | 2011-11-26T04:59:59Z | 2011-12-01T21:43:37Z | 2011-28924 | 0 | 0 | 0900006480f681cb | |
| NOAA-NMFS-2011-0219-0001 | NOAA | Comprehensive Ecosystem Based Amendment 2 NOAA-NMFS-2011-0219 | Fisheries of Caribbean, Gulf of Mexico, and South Atlantic: Comprehensive Ecosystem-Based Amendment 2 | Notice | 2011-09-26T04:00:00Z | 2011 | 9 | 2011-09-26T04:00:00Z | 2011-11-26T04:59:59Z | 2011-12-01T21:43:32Z | 2011-24677 | 0 | 0 | 0900006480f2bd34 |
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;