documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "NOAA-NMFS-2012-0003" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
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-2012-0003-0011 | NOAA | 2012 Bluefish Specifications NOAA-NMFS-2012-0003 | 2012 Atlantic Bluefish Specifications Environmental Assessment | Supporting & Related Material | 2013-04-26T04:00:00Z | 2013 | 4 | 2013-04-26T16:14:22Z | 0 | 0 | 09000064812a97e3 | ||||
| NOAA-NMFS-2012-0003-0010 | NOAA | 2012 Bluefish Specifications NOAA-NMFS-2012-0003 | Fisheries of the Northeastern United States: Bluefish Fishery; Quota Transfer | Rule | 2012-12-28T05:00:00Z | 2012 | 12 | 2012-12-28T05:00:00Z | 2012-12-31T14:09:16Z | 2012-31216 | 0 | 0 | 090000648119dc78 | ||
| NOAA-NMFS-2012-0003-0009 | NOAA | 2012 Bluefish Specifications NOAA-NMFS-2012-0003 | Fisheries of the Northeastern United States: Bluefish Fishery; Quota Transfer | Rule | 2012-09-25T04:00:00Z | 2012 | 9 | 2012-09-25T04:00:00Z | 2012-09-27T18:12:18Z | 2012-23605 | 0 | 0 | 09000064811265db | ||
| NOAA-NMFS-2012-0003-0008 | NOAA | 2012 Bluefish Specifications NOAA-NMFS-2012-0003 | Fisheries of the Northeastern United States: Bluefish Fishery; Commercial Quota Harvested for Commonwealth of Massachusetts | Rule | 2012-09-19T04:00:00Z | 2012 | 9 | 2012-09-19T04:00:00Z | 2012-09-27T18:11:52Z | 2012-23142 | 0 | 0 | 090000648111dd69 | ||
| NOAA-NMFS-2012-0003-0007 | NOAA | 2012 Bluefish Specifications NOAA-NMFS-2012-0003 | Fisheries of the Northeastern United States: Atlantic Bluefish Fishery; 2012 Specifications | Rule | 2012-04-27T04:00:00Z | 2012 | 4 | 2012-04-27T04:00:00Z | 2012-05-14T15:14:40Z | 2012-10242 | 0 | 0 | 0900006480ffec07 | ||
| NOAA-NMFS-2012-0003-0001 | NOAA | 2012 Bluefish Specifications NOAA-NMFS-2012-0003 | Fisheries of Northeastern United States: Atlantic Bluefish Fishery; 2012 Specifications | Proposed Rule | 2012-02-15T05:00:00Z | 2012 | 2 | 2012-02-15T05:00:00Z | 2012-03-02T04:59:59Z | 2012-02-15T14:59:47Z | 2012-03563 | 0 | 0 | 0900006480fb7265 |
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;