documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NOAA-NMFS-2018-0097" 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)
| 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-0097-0010 | NOAA | Establish Quotas, Opening Dates, and Retention Limits for the 2019 Atlantic Shark Commercial Fishing Year NOAA-NMFS-2018-0097 | Atlantic Highly Migratory Species: Commercial Aggregated Large Coastal Shark and Hammerhead Shark Management Group in the Atlantic Region; Retention Limit Adjustment | Rule | 2019-10-10T04:00:00Z | 2019 | 10 | 2019-10-10T04:00:00Z | 2019-10-11T14:45:16Z | 2019-21896 | 0 | 0 | 0900006484077d95 | ||
| NOAA-NMFS-2018-0097-0009 | NOAA | Establish Quotas, Opening Dates, and Retention Limits for the 2019 Atlantic Shark Commercial Fishing Year NOAA-NMFS-2018-0097 | Atlantic Highly Migratory Species: Atlantic Commercial Shark Fisheries | Rule | 2019-09-17T04:00:00Z | 2019 | 9 | 2019-09-17T04:00:00Z | 2019-09-17T15:40:42Z | 2019-20126 | 0 | 0 | 0900006483f806e3 | ||
| NOAA-NMFS-2018-0097-0007 | NOAA | Establish Quotas, Opening Dates, and Retention Limits for the 2019 Atlantic Shark Commercial Fishing Year NOAA-NMFS-2018-0097 | Atlantic Highly Migratory Species: Commercial Aggregated Large Coastal Shark and Hammerhead Shark Management Group in the Atlantic Region; Retention Limit Adjustment | Rule | 2019-08-19T04:00:00Z | 2019 | 8 | 2019-08-19T04:00:00Z | 2019-08-19T17:28:10Z | 2019-17754 | 0 | 0 | 0900006483e6b787 | ||
| NOAA-NMFS-2018-0097-0008 | NOAA | Establish Quotas, Opening Dates, and Retention Limits for the 2019 Atlantic Shark Commercial Fishing Year NOAA-NMFS-2018-0097 | Atlantic Highly Migratory Species: Commercial Blacktip Sharks, Aggregated Large Coastal Sharks, and Hammerhead Sharks in the Gulf of Mexico Region; Retention Limit Adjustment | Rule | 2019-08-12T04:00:00Z | 2019 | 8 | 2019-08-12T04:00:00Z | 2019-08-19T17:28:50Z | 2019-17139 | 0 | 0 | 0900006483e2d685 | ||
| NOAA-NMFS-2018-0097-0006 | NOAA | Establish Quotas, Opening Dates, and Retention Limits for the 2019 Atlantic Shark Commercial Fishing Year NOAA-NMFS-2018-0097 | Atlantic Highly Migratory Species: Commercial Aggregated Large Coastal Shark and Hammerhead Shark Management Group Retention Limit Adjustment | Rule | 2019-06-25T04:00:00Z | 2019 | 6 | 2019-06-25T04:00:00Z | 2019-06-26T13:18:30Z | 2019-13483 | 0 | 0 | 0900006483d3e33e | ||
| NOAA-NMFS-2018-0097-0005 | NOAA | Establish Quotas, Opening Dates, and Retention Limits for the 2019 Atlantic Shark Commercial Fishing Year NOAA-NMFS-2018-0097 | Atlantic Highly Migratory Species: Commercial Aggregated Large Coastal Shark and Hammerhead Shark Management Groups Retention Limit Adjustment | Rule | 2019-04-02T04:00:00Z | 2019 | 4 | 2019-04-02T04:00:00Z | 2019-04-02T18:17:42Z | 2019-06369 | 0 | 0 | 0900006483b57373 | ||
| NOAA-NMFS-2018-0097-0004 | NOAA | Establish Quotas, Opening Dates, and Retention Limits for the 2019 Atlantic Shark Commercial Fishing Year NOAA-NMFS-2018-0097 | Atlantic Highly Migratory Species: 2019 Atlantic Shark Commercial Fishing Year | Rule | 2018-11-27T05:00:00Z | 2018 | 11 | 2018-11-27T05:00:00Z | 2018-11-27T14:19:55Z | 2018-25744 | 0 | 0 | 09000064838fea96 | ||
| NOAA-NMFS-2018-0097-0001 | NOAA | Establish Quotas, Opening Dates, and Retention Limits for the 2019 Atlantic Shark Commercial Fishing Year NOAA-NMFS-2018-0097 | Atlantic Highly Migratory Species: 2019 Atlantic Shark Commercial Fishing Year | Proposed Rule | 2018-09-11T04:00:00Z | 2018 | 9 | 2018-09-11T04:00:00Z | 2018-10-12T03:59:59Z | 2018-09-25T01:04:38Z | 2018-19594 | 0 | 0 | 09000064836d3af1 |
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;