documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NOAA-NMFS-2012-0004" and posted_year = 2012 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)
| 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-0004-0013 | NOAA | Framework Adjustment 47 to the Northeast Multispecies Fishery Management Plan NOAA-NMFS-2012-0004 | Fisheries of the Northeastern United States: Northeast Multispecies Fishery; White Hake Trimester Total Allowable Catch Area Closure for Common Pool Fishery | Rule | 2012-12-05T05:00:00Z | 2012 | 12 | 2012-12-05T05:00:00Z | 2012-12-17T18:03:42Z | 2012-29401 | 0 | 0 | 090000648117f6ce | ||
| NOAA-NMFS-2012-0004-0012 | NOAA | Framework Adjustment 47 to the Northeast Multispecies Fishery Management Plan NOAA-NMFS-2012-0004 | Fisheries of the Northeastern United States; Northeast Multispecies Fishery: Fishing Year 2012 Days-At-Sea Adjustment for Common Pool Fishery; Announcement of Fishing Year 2011 Sector Annual Catch Entitlement Carryover | Rule | 2012-09-26T04:00:00Z | 2012 | 9 | 2012-09-26T04:00:00Z | 2012-11-19T17:57:45Z | 2012-23734 | 0 | 0 | 0900006481128aed | ||
| NOAA-NMFS-2012-0004-0011 | NOAA | Framework Adjustment 47 to the Northeast Multispecies Fishery Management Plan NOAA-NMFS-2012-0004 | Fisheries of the Northeastern United States: Northeast Multispecies Fishery; White Hake Trimester Total Allowable Catch Area Closure for Common Pool Fishery | Rule | 2012-08-15T04:00:00Z | 2012 | 8 | 2012-08-15T04:00:00Z | 2012-11-13T12:28:04Z | 2012-20054 | 0 | 0 | 09000064810dab29 | ||
| NOAA-NMFS-2012-0004-0010 | NOAA | Framework Adjustment 47 to the Northeast Multispecies Fishery Management Plan NOAA-NMFS-2012-0004 | Fisheries of the Northeastern United States: Northeast Multispecies Fishery; Adjustment of Georges Bank Yellowtail Flounder Annual Catch Limits | Rule | 2012-07-16T04:00:00Z | 2012 | 7 | 2012-07-16T04:00:00Z | 2012-08-21T15:01:37Z | 2012-17245 | 0 | 0 | 090000648109bd92 | ||
| NOAA-NMFS-2012-0004-0009 | NOAA | Framework Adjustment 47 to the Northeast Multispecies Fishery Management Plan NOAA-NMFS-2012-0004 | Northeast Multispecies Fishery Management Plan and Sector Annual Catch Entitlements: Updated Annual Catch Limits for Sectors and the Common Pool for Fishing Year 2012 | Rule | 2012-06-25T04:00:00Z | 2012 | 6 | 2012-06-25T04:00:00Z | 2012-08-21T12:34:47Z | 2012-15448 | 0 | 0 | 0900006481063838 | ||
| NOAA-NMFS-2012-0004-0008 | NOAA | Framework Adjustment 47 to the Northeast Multispecies Fishery Management Plan NOAA-NMFS-2012-0004 | Fisheries of the Northeastern United States: Northeast Multispecies Fishery; Framework Adjustment 47 | Rule | 2012-05-02T04:00:00Z | 2012 | 5 | 2012-05-02T04:00:00Z | 2012-05-02T16:32:57Z | 2012-10526 | 0 | 0 | 09000064810033cd | ||
| NOAA-NMFS-2012-0004-0001 | NOAA | Framework Adjustment 47 to the Northeast Multispecies Fishery Management Plan NOAA-NMFS-2012-0004 | Fisheries of the Northeastern U.S.: Northeast Multispecies Fishery; Framework Adjustment 47 | Proposed Rule | 2012-03-27T04:00:00Z | 2012 | 3 | 2012-03-27T04:00:00Z | 2012-04-12T03:59:59Z | 2012-03-27T16:20:42Z | 2012-07075 | 0 | 0 | 0900006480fe1cff |
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;