documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "NOAA-NMFS-2021-0107" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-2021-0107-0008 | NOAA | Fisheries of the Northeastern United States; Atlantic Bluefish Fishery; 2022-2023 Bluefish Specifications NOAA-NMFS-2021-0107 | Fisheries of the Northeastern United States: Atlantic Bluefish Fishery; Quota Transfers from Maine to Rhode Island | Rule | 2023-10-13T04:00:00Z | 2023 | 10 | 2023-10-13T04:00:00Z | 2023-10-13T22:59:01Z | 2022-26236 | 0 | 0 | 0900006485511bce | ||
| NOAA-NMFS-2021-0107-0007 | NOAA | Fisheries of the Northeastern United States; Atlantic Bluefish Fishery; 2022-2023 Bluefish Specifications NOAA-NMFS-2021-0107 | Fisheries of the Northeastern United States: Atlantic Bluefish Fishery; Quota Transfers from MD to RI | Rule | 2022-08-09T04:00:00Z | 2022 | 8 | 2022-08-09T04:00:00Z | 2022-12-05T23:34:37Z | 2022-17010 | 0 | 0 | 09000064852266bb | ||
| NOAA-NMFS-2021-0107-0006 | NOAA | Fisheries of the Northeastern United States; Atlantic Bluefish Fishery; 2022-2023 Bluefish Specifications NOAA-NMFS-2021-0107 | Fisheries of the Northeastern United States: Atlantic Bluefish Fishery; Quota Transfers From Virginia to New York and Rhode Island | Rule | 2022-07-20T04:00:00Z | 2022 | 7 | 2022-07-20T04:00:00Z | 2022-12-05T23:33:56Z | 2022-15509 | 0 | 0 | 09000064851d42ca | ||
| NOAA-NMFS-2021-0107-0005 | NOAA | Fisheries of the Northeastern United States; Atlantic Bluefish Fishery; 2022-2023 Bluefish Specifications NOAA-NMFS-2021-0107 | Fisheries of the Northeastern United States: Atlantic Bluefish Fishery; Quota Transfer from Maryland to North Carolina | Rule | 2022-03-30T04:00:00Z | 2022 | 3 | 2022-03-30T04:00:00Z | 2022-12-05T23:31:15Z | 2022-06723 | 0 | 0 | 0900006484fedb8e | ||
| NOAA-NMFS-2021-0107-0004 | NOAA | Fisheries of the Northeastern United States; Atlantic Bluefish Fishery; 2022-2023 Bluefish Specifications NOAA-NMFS-2021-0107 | Fisheries of the Northeastern United States: Atlantic Bluefish Fishery; 2022 and Projected 2023 Specifications | Rule | 2022-02-02T05:00:00Z | 2022 | 2 | 2022-02-02T05:00:00Z | 2022-12-05T23:28:31Z | 2022-01996 | 0 | 0 | 0900006484f4d163 | ||
| NOAA-NMFS-2021-0107-0001 | NOAA | Fisheries of the Northeastern United States; Atlantic Bluefish Fishery; 2022-2023 Bluefish Specifications NOAA-NMFS-2021-0107 | Fisheries of the Northeastern United States: Atlantic Bluefish Fishery; 2022 and Projected 2023 Specifications | Proposed Rule | 2021-12-02T05:00:00Z | 2021 | 12 | 2021-12-02T05:00:00Z | 2021-12-18T04:59:59Z | 2021-12-18T02:00:26Z | 2021-25901 | 0 | 0 | 0900006484e935da |
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;