documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "NOAA-NMFS-2018-0011" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_end_date, 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-2018-0011-0068 | NOAA | Atlantic Highly Migratory Species; Shortfin Mako Shark Management Measures NOAA-NMFS-2018-0011 | Atlantic Highly Migratory Species: Shortfin Mako Shark Management Measures; Final Amendment 11 | Rule | 2019-02-21T05:00:00Z | 2019 | 2 | 2019-02-21T05:00:00Z | 2019-02-21T19:01:55Z | 2019-02946 | 0 | 0 | 0900006483a93fd5 | ||
| NOAA-NMFS-2018-0011-0035 | NOAA | Atlantic Highly Migratory Species; Shortfin Mako Shark Management Measures NOAA-NMFS-2018-0011 | Atlantic Highly Migratory Species: Shortfin Mako Shark Management Measures; Proposed Amendment 11 | Proposed Rule | 2018-09-20T04:00:00Z | 2018 | 9 | 2018-09-20T04:00:00Z | 2018-10-09T03:59:59Z | 2018-10-10T01:10:27Z | 2018-20457 | 0 | 0 | 0900006483735bb8 | |
| NOAA-NMFS-2018-0011-0034 | NOAA | Atlantic Highly Migratory Species; Shortfin Mako Shark Management Measures NOAA-NMFS-2018-0011 | Extension of Emergency Measures To Address Overfishing of Atlantic Shortfin Mako Shark | Rule | 2018-08-22T04:00:00Z | 2018 | 8 | 2018-08-22T04:00:00Z | 2018-09-20T16:58:16Z | 2018-18095 | 0 | 0 | 0900006483642416 | ||
| NOAA-NMFS-2018-0011-0029 | NOAA | Atlantic Highly Migratory Species; Shortfin Mako Shark Management Measures NOAA-NMFS-2018-0011 | Draft Amendment 11 to the 2006 Consolidated Atlantic Highly Migratory Species Fishery Management Plan | Supporting & Related Material | 2018-07-27T04:00:00Z | 2018 | 7 | 2018-07-27T13:21:34Z | 0 | 0 | 09000064835681a4 | ||||
| NOAA-NMFS-2018-0011-0030 | NOAA | Atlantic Highly Migratory Species; Shortfin Mako Shark Management Measures NOAA-NMFS-2018-0011 | Amendment 11 Proposed Rule Presentation | Supporting & Related Material | 2018-07-27T04:00:00Z | 2018 | 7 | 2018-07-27T13:22:10Z | 0 | 0 | 09000064835681a5 | ||||
| NOAA-NMFS-2018-0011-0028 | NOAA | Atlantic Highly Migratory Species; Shortfin Mako Shark Management Measures NOAA-NMFS-2018-0011 | Atlantic Highly Migratory Species: Shortfin Mako Shark Management Measures; Proposed Amendment 11 | Proposed Rule | 2018-07-27T04:00:00Z | 2018 | 7 | 2018-07-27T04:00:00Z | 2018-10-09T03:59:59Z | 2018-10-10T01:10:30Z | 2018-15822 | 0 | 0 | 0900006483567d24 | |
| NOAA-NMFS-2018-0011-0013 | NOAA | Atlantic Highly Migratory Species; Shortfin Mako Shark Management Measures NOAA-NMFS-2018-0011 | Amendment 11 Issues and Options Paper | Supporting & Related Material | 2018-03-29T04:00:00Z | 2018 | 3 | 2018-03-29T11:32:06Z | 0 | 0 | 090000648306147e | ||||
| NOAA-NMFS-2018-0011-0012 | NOAA | Atlantic Highly Migratory Species; Shortfin Mako Shark Management Measures NOAA-NMFS-2018-0011 | Atlantic Highly Migratory Species: Atlantic Bluefin Tuna Fisheries; Pelagic Longline Fishery Management and Shortfin Mako Shark Management Measures | Proposed Rule | 2018-03-21T04:00:00Z | 2018 | 3 | 2018-03-21T04:00:00Z | 2018-03-23T13:54:06Z | 2018-05702 | 0 | 0 | 0900006483035dd5 | ||
| NOAA-NMFS-2018-0011-0001 | NOAA | Atlantic Highly Migratory Species; Shortfin Mako Shark Management Measures NOAA-NMFS-2018-0011 | Atlantic Highly Migratory Species: Shortfin Mako Shark Management Measures | Proposed Rule | 2018-03-05T05:00:00Z | 2018 | 3 | 2018-03-05T05:00:00Z | 2018-05-08T03:59:59Z | 2018-04-28T01:02:36Z | 2018-04430 | 0 | 0 | 0900006482f8fa4f |
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;