documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "NOAA-NMFS-2010-0188" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, comment_end_date, 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-2010-0188-0046 | NOAA | Atlantic Highly Migratory Species; Future of the Atlantic Shark Fishery; Amendment 6 NOAA-NMFS-2010-0188 | Atlantic Highly Migratory Species: Large Coastal and Small Coastal Atlantic Shark Management Measures | Rule | 2015-08-18T04:00:00Z | 2015 | 8 | 2015-08-18T04:00:00Z | 2015-08-18T17:19:04Z | 2015-19914 | 0 | 0 | 0900006481c2745e | ||
| NOAA-NMFS-2010-0188-0035 | NOAA | Atlantic Highly Migratory Species; Future of the Atlantic Shark Fishery; Amendment 6 NOAA-NMFS-2010-0188 | Atlantic Highly Migratory Species: Large Coastal and Small Coastal Atlantic Shark Management Measures; Rescheduled Public Hearing | Proposed Rule | 2015-03-09T04:00:00Z | 2015 | 3 | 2015-03-09T04:00:00Z | 2015-04-04T03:59:59Z | 2015-04-04T02:02:33Z | 2015-05380 | 0 | 0 | 0900006481a341ad | |
| NOAA-NMFS-2010-0188-0030 | NOAA | Atlantic Highly Migratory Species; Future of the Atlantic Shark Fishery; Amendment 6 NOAA-NMFS-2010-0188 | Atlantic Highly Migratory Species: Large Coastal and Small Coastal Atlantic Shark Management Measures | Proposed Rule | 2015-01-20T05:00:00Z | 2015 | 1 | 2015-01-20T05:00:00Z | 2015-04-04T03:59:59Z | 2015-04-07T02:04:31Z | 2015-00548 | 0 | 0 | 09000064819d22f2 | |
| NOAA-NMFS-2010-0188-0029 | NOAA | Atlantic Highly Migratory Species; Future of the Atlantic Shark Fishery; Amendment 6 NOAA-NMFS-2010-0188 | Atlantic Highly Migratory Species: Environmental Assessment for Amendment 6 to the 2006 Consolidated Fishery Management Plan | Proposed Rule | 2014-05-27T04:00:00Z | 2014 | 5 | 2014-05-27T04:00:00Z | 2014-05-28T17:21:34Z | 2014-11896 | 0 | 0 | 0900006481715499 | ||
| NOAA-NMFS-2010-0188-0014 | NOAA | Atlantic Highly Migratory Species; Future of the Atlantic Shark Fishery; Amendment 6 NOAA-NMFS-2010-0188 | Atlantic Highly Migratory Species: Atlantic Shark Management Measures | Notice | 2011-11-23T05:00:00Z | 2011 | 11 | 2011-11-23T05:00:00Z | 2012-04-01T03:59:59Z | 2011-12-06T20:58:10Z | 2011-30276 | 0 | 0 | 0900006480f720a0 | |
| NOAA-NMFS-2010-0188-0012 | NOAA | Atlantic Highly Migratory Species; Future of the Atlantic Shark Fishery; Amendment 6 NOAA-NMFS-2010-0188 | Future of the Atlantic Shakr Fisheries (Amendment 6) | Supporting & Related Material | 2011-09-19T04:00:00Z | 2011 | 9 | 2011-09-19T18:53:46Z | 0 | 0 | 0900006480f1ea0d | ||||
| NOAA-NMFS-2010-0188-0011 | NOAA | Atlantic Highly Migratory Species; Future of the Atlantic Shark Fishery; Amendment 6 NOAA-NMFS-2010-0188 | Atlantic Highly Migratory Species: Atlantic Shark Management Measures | Notice | 2011-09-16T04:00:00Z | 2011 | 9 | 2011-09-16T04:00:00Z | 2012-03-02T04:59:59Z | 2011-12-06T21:00:34Z | 2011-23877 | 0 | 0 | 0900006480f1eddd | |
| NOAA-NMFS-2010-0188-0002 | NOAA | Atlantic Highly Migratory Species; Future of the Atlantic Shark Fishery; Amendment 6 NOAA-NMFS-2010-0188 | Future of the Atlantic Shark Fishery Presentation | Supporting & Related Material | 2010-09-28T04:00:00Z | 2010 | 9 | 2011-06-11T15:19:07Z | 0 | 0 | 0900006480b620b8 | ||||
| NOAA-NMFS-2010-0188-0001 | NOAA | Atlantic Highly Migratory Species; Future of the Atlantic Shark Fishery; Amendment 6 NOAA-NMFS-2010-0188 | Atlantic Highly Migratory Species: Atlantic Shark Management Measures | Proposed Rule | 2010-09-20T04:00:00Z | 2010 | 9 | 2010-09-20T04:00:00Z | 2011-01-15T04:59:59Z | 2011-12-01T21:41:59Z | 2010-23438 | 0 | 0 | 0900006480b53329 |
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;