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-0004" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2018-0004-0074 | NOAA | Atlantic Highly Migratory Species; Atlantic Bluefin Tuna and North Atlantic Albacore Quotas NOAA-NMFS-2018-0004 | Atlantic Highly Migratory Species: Atlantic Bluefin Tuna Fisheries | Rule | 2022-07-01T04:00:00Z | 2022 | 7 | 2022-07-01T04:00:00Z | 2022-07-06T13:07:09Z | 2022-14142 | 0 | 0 | 09000064851ae624 | ||
| NOAA-NMFS-2018-0004-0073 | NOAA | Atlantic Highly Migratory Species; Atlantic Bluefin Tuna and North Atlantic Albacore Quotas NOAA-NMFS-2018-0004 | Atlantic Highly Migratory Species: Atlantic Bluefin Tuna Fisheries | Rule | 2022-06-29T04:00:00Z | 2022 | 6 | 2022-06-29T04:00:00Z | 2022-06-30T13:33:37Z | 2022-13831 | 0 | 0 | 09000064851a8f23 | ||
| NOAA-NMFS-2018-0004-0072 | NOAA | Atlantic Highly Migratory Species; Atlantic Bluefin Tuna and North Atlantic Albacore Quotas NOAA-NMFS-2018-0004 | Atlantic Highly Migratory Species: Atlantic Bluefin Tuna Fisheries | Rule | 2022-05-27T04:00:00Z | 2022 | 5 | 2022-05-27T04:00:00Z | 2022-06-01T14:06:52Z | 2022-11488 | 0 | 0 | 09000064850fd891 | ||
| NOAA-NMFS-2018-0004-0071 | NOAA | Atlantic Highly Migratory Species; Atlantic Bluefin Tuna and North Atlantic Albacore Quotas NOAA-NMFS-2018-0004 | Atlantic Highly Migratory Species: Atlantic Bluefin Tuna Fisheries | Rule | 2022-05-20T04:00:00Z | 2022 | 5 | 2022-05-20T04:00:00Z | 2022-05-23T14:29:45Z | 2022-10852 | 0 | 0 | 090000648509b5ee | ||
| NOAA-NMFS-2018-0004-0070 | NOAA | Atlantic Highly Migratory Species; Atlantic Bluefin Tuna and North Atlantic Albacore Quotas NOAA-NMFS-2018-0004 | Atlantic Highly Migratory Species: Atlantic Bluefin Tuna Fisheries | Rule | 2022-05-04T04:00:00Z | 2022 | 5 | 2022-05-04T04:00:00Z | 2022-05-04T20:05:26Z | 2022-09573 | 0 | 0 | 090000648504c433 | ||
| NOAA-NMFS-2018-0004-0069 | NOAA | Atlantic Highly Migratory Species; Atlantic Bluefin Tuna and North Atlantic Albacore Quotas NOAA-NMFS-2018-0004 | Atlantic Highly Migratory Species: Atlantic Bluefin Tuna Fisheries | Rule | 2022-02-17T05:00:00Z | 2022 | 2 | 2022-02-17T05:00:00Z | 2022-02-17T17:01:38Z | 2022-03389 | 0 | 0 | 0900006484f8140d | ||
| NOAA-NMFS-2018-0004-0068 | NOAA | Atlantic Highly Migratory Species; Atlantic Bluefin Tuna and North Atlantic Albacore Quotas NOAA-NMFS-2018-0004 | Atlantic Highly Migratory Species: Atlantic Bluefin Tuna Fisheries | Rule | 2022-02-15T05:00:00Z | 2022 | 2 | 2022-02-15T05:00:00Z | 2022-02-16T22:08:22Z | 2022-03236 | 0 | 0 | 0900006484f79302 | ||
| NOAA-NMFS-2018-0004-0067 | NOAA | Atlantic Highly Migratory Species; Atlantic Bluefin Tuna and North Atlantic Albacore Quotas NOAA-NMFS-2018-0004 | Atlantic Highly Migratory Species: Atlantic Bluefin Tuna Fisheries | Rule | 2022-02-02T05:00:00Z | 2022 | 2 | 2022-02-02T05:00:00Z | 2022-02-02T16:45:06Z | 2022-02123 | 0 | 0 | 0900006484f4d11d |
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;