documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NOAA-NMFS-2013-0101" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, posted_date (date), comment_start_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-2013-0101-2341 | NOAA | Atlantic Highly Migratory Species Bluefin Tuna Management, Amendment 7 NOAA-NMFS-2013-0101 | Atlantic Highly Migratory Species: Atlantic Bluefin Tuna Fisheries | Rule | 2015-08-27T04:00:00Z | 2015 | 8 | 2015-08-27T04:00:00Z | 2015-08-27T17:35:17Z | 2015-21251 | 0 | 0 | 0900006481c3d3a6 | ||
| NOAA-NMFS-2013-0101-2340 | NOAA | Atlantic Highly Migratory Species Bluefin Tuna Management, Amendment 7 NOAA-NMFS-2013-0101 | Atlantic Highly Migratory Species: Atlantic Bluefin Tuna Fisheries | Rule | 2015-08-05T04:00:00Z | 2015 | 8 | 2015-08-05T04:00:00Z | 2015-08-06T12:59:29Z | 2015-19156 | 0 | 0 | 0900006481bc491e | ||
| NOAA-NMFS-2013-0101-2339 | NOAA | Atlantic Highly Migratory Species Bluefin Tuna Management, Amendment 7 NOAA-NMFS-2013-0101 | Atlantic Highly Migratory Species: Atlantic Bluefin Tuna Fisheries | Rule | 2015-07-29T04:00:00Z | 2015 | 7 | 2015-07-29T04:00:00Z | 2015-07-29T14:09:46Z | 2015-18584 | 0 | 0 | 0900006481bad579 | ||
| NOAA-NMFS-2013-0101-2338 | NOAA | Atlantic Highly Migratory Species Bluefin Tuna Management, Amendment 7 NOAA-NMFS-2013-0101 | Atlantic Highly Migratory Species: Atlantic Bluefin Tuna Fisheries; Closure | Rule | 2015-06-09T04:00:00Z | 2015 | 6 | 2015-06-09T04:00:00Z | 2015-06-10T17:03:24Z | 2015-13988 | 0 | 0 | 0900006481b24b52 | ||
| NOAA-NMFS-2013-0101-2337 | NOAA | Atlantic Highly Migratory Species Bluefin Tuna Management, Amendment 7 NOAA-NMFS-2013-0101 | Atlantic Highly Migratory Species: Atlantic Bluefin Tuna Fisheries | Rule | 2015-05-15T04:00:00Z | 2015 | 5 | 2015-05-15T04:00:00Z | 2015-05-18T16:06:07Z | 2015-11791 | 0 | 0 | 0900006481ae2a98 | ||
| NOAA-NMFS-2013-0101-2336 | NOAA | Atlantic Highly Migratory Species Bluefin Tuna Management, Amendment 7 NOAA-NMFS-2013-0101 | Atlantic Highly Migratory Species; 2006 Consolidated HMS Fishery Management Plan; Amendments | Rule | 2015-05-07T04:00:00Z | 2015 | 5 | 2015-05-07T04:00:00Z | 2015-05-13T19:17:22Z | 2015-10960 | 0 | 0 | 0900006481ad28c2 | ||
| NOAA-NMFS-2013-0101-2335 | NOAA | Atlantic Highly Migratory Species Bluefin Tuna Management, Amendment 7 NOAA-NMFS-2013-0101 | Atlantic Highly Migratory Species: Atlantic Bluefin Tuna Fisheries; Temporary rule; annual adjustment of Atlantic bluefin tuna Purse Seine and Reserve category quotas. | Rule | 2015-02-11T05:00:00Z | 2015 | 2 | 2015-02-11T05:00:00Z | 2015-02-12T20:45:49Z | 2015-02809 | 0 | 0 | 09000064819fe3e4 | ||
| NOAA-NMFS-2013-0101-2334 | NOAA | Atlantic Highly Migratory Species Bluefin Tuna Management, Amendment 7 NOAA-NMFS-2013-0101 | Atlantic Highly Migratory Species: 2006 Consolidated Atlantic Highly Migratory Species Fishery Management Plan; Amendment 7; Correction | Rule | 2015-02-04T05:00:00Z | 2015 | 2 | 2015-02-04T05:00:00Z | 2015-02-12T20:36:04Z | 2015-01952 | 0 | 0 | 09000064819f2aec |
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;