documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "NOAA-NMFS-2014-0088" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
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-2014-0088-0040 | NOAA | Information Collection Program for Surfclam and Ocean Quahog Fisheries NOAA-NMFS-2014-0088 | Fisheries of the Northeastern United States: Atlantic Surfclam and Ocean Quahog Fisheries | Rule | 2015-07-20T04:00:00Z | 2015 | 7 | 2015-07-20T04:00:00Z | 2015-11-10T18:14:00Z | 2015-17678 | 0 | 0 | 0900006481b92320 | ||
| NOAA-NMFS-2014-0088-0006 | NOAA | Information Collection Program for Surfclam and Ocean Quahog Fisheries NOAA-NMFS-2014-0088 | DRAFT SCOQ ITQ Ownership form | Supporting & Related Material | 2014-10-02T04:00:00Z | 2014 | 10 | 2014-10-02T14:41:38Z | 0 | 0 | 0900006481875995 | ||||
| NOAA-NMFS-2014-0088-0008 | NOAA | Information Collection Program for Surfclam and Ocean Quahog Fisheries NOAA-NMFS-2014-0088 | DRAFT SCOQ ITQ Transfer form | Supporting & Related Material | 2014-10-02T04:00:00Z | 2014 | 10 | 2014-10-02T14:41:48Z | 0 | 0 | 0900006481875997 | ||||
| NOAA-NMFS-2014-0088-0007 | NOAA | Information Collection Program for Surfclam and Ocean Quahog Fisheries NOAA-NMFS-2014-0088 | DRAFT SCOQ ITQ Permit Application | Supporting & Related Material | 2014-10-02T04:00:00Z | 2014 | 10 | 2014-10-02T14:41:43Z | 0 | 0 | 0900006481875996 | ||||
| NOAA-NMFS-2014-0088-0005 | NOAA | Information Collection Program for Surfclam and Ocean Quahog Fisheries NOAA-NMFS-2014-0088 | Fisheries of the Northeastern United States: Atlantic Surfclam and Ocean Quahog Fishery | Proposed Rule | 2014-10-02T04:00:00Z | 2014 | 10 | 2014-10-02T04:00:00Z | 2014-10-18T03:59:59Z | 2015-04-10T02:06:29Z | 2014-23432 | 0 | 0 | 09000064818a2bc1 | |
| NOAA-NMFS-2014-0088-0002 | NOAA | Information Collection Program for Surfclam and Ocean Quahog Fisheries NOAA-NMFS-2014-0088 | DRAFT SCOQ ITQ Permit Application | Supporting & Related Material | 2014-08-07T04:00:00Z | 2014 | 8 | 2014-08-07T20:52:03Z | 0 | 0 | 090000648180e19b | ||||
| NOAA-NMFS-2014-0088-0004 | NOAA | Information Collection Program for Surfclam and Ocean Quahog Fisheries NOAA-NMFS-2014-0088 | DRAFT SCOQ ITQ Ownership form | Supporting & Related Material | 2014-08-07T04:00:00Z | 2014 | 8 | 2014-08-07T20:52:20Z | 0 | 0 | 090000648180e19d | ||||
| NOAA-NMFS-2014-0088-0003 | NOAA | Information Collection Program for Surfclam and Ocean Quahog Fisheries NOAA-NMFS-2014-0088 | DRAFT SCOQ ITQ Transfer form | Supporting & Related Material | 2014-08-07T04:00:00Z | 2014 | 8 | 2014-08-07T20:52:14Z | 0 | 0 | 090000648180e19c | ||||
| NOAA-NMFS-2014-0088-0001 | NOAA | Information Collection Program for Surfclam and Ocean Quahog Fisheries NOAA-NMFS-2014-0088 | Fisheries of the Northeastern United States: Atlantic Surfclam and Ocean Quahog Fishery; Information Collection | Proposed Rule | 2014-08-07T04:00:00Z | 2014 | 8 | 2014-08-07T04:00:00Z | 2014-09-09T03:59:59Z | 2014-09-19T01:02:27Z | 2014-18676 | 0 | 0 | 090000648180bad8 |
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;