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-0032" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, 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-2021-0032-0006 | NOAA | Rulemaking to Modify the 2021 Halibut Individual Fishing Quota (IFQ) Vessel Harvest Limitations in IFQ Regulatory Areas 4A, 4B, 4C, and 4D. NOAA-NMFS-2021-0032 | halibut-vessel-caps-ce | Supporting & Related Material | 2021-05-28T04:00:00Z | 2021 | 5 | 2021-05-28T17:52:11Z | 0 | 0 | 0900006484b42d06 | ||||
| NOAA-NMFS-2021-0032-0005 | NOAA | Rulemaking to Modify the 2021 Halibut Individual Fishing Quota (IFQ) Vessel Harvest Limitations in IFQ Regulatory Areas 4A, 4B, 4C, and 4D. NOAA-NMFS-2021-0032 | Halibut Vess Use Caps rir | Supporting & Related Material | 2021-05-28T04:00:00Z | 2021 | 5 | 2021-05-28T17:52:07Z | 0 | 0 | 0900006484b41d94 | ||||
| NOAA-NMFS-2021-0032-0007 | NOAA | Rulemaking to Modify the 2021 Halibut Individual Fishing Quota (IFQ) Vessel Harvest Limitations in IFQ Regulatory Areas 4A, 4B, 4C, and 4D. NOAA-NMFS-2021-0032 | Pacific Halibut Fisheries: Catch Sharing Plan | Rule | 2021-05-26T04:00:00Z | 2021 | 5 | 2021-05-26T04:00:00Z | 2023-08-04T20:34:17Z | 2021-11087 | 0 | 0 | 0900006484b380ca | ||
| NOAA-NMFS-2021-0032-0002 | NOAA | Rulemaking to Modify the 2021 Halibut Individual Fishing Quota (IFQ) Vessel Harvest Limitations in IFQ Regulatory Areas 4A, 4B, 4C, and 4D. NOAA-NMFS-2021-0032 | Draft Categorical Exclusion (CE) for the Proposed Rule to Modify the 2021 Halibut Individual Fishing Quota Vessel Harvest Limitations in IFQ Regulatory Areas 4A, 4B, 4C and 4DHalibut Vess Use Caps Draft CE | Supporting & Related Material | 2021-04-21T04:00:00Z | 2021 | 4 | 2021-04-21T18:01:05Z | 0 | 0 | 0900006484ab1c11 | ||||
| NOAA-NMFS-2021-0032-0003 | NOAA | Rulemaking to Modify the 2021 Halibut Individual Fishing Quota (IFQ) Vessel Harvest Limitations in IFQ Regulatory Areas 4A, 4B, 4C, and 4D. NOAA-NMFS-2021-0032 | Regulatory Impact Review For a proposed/ final rule to remove vessel cap limitations for IFQ halibut harvested in IPHC regulatory Areas 4A, 4B, 4C, and 4D for the remainder of the 2021 IFQ fishing season | Supporting & Related Material | 2021-04-21T04:00:00Z | 2021 | 4 | 2021-04-21T18:01:19Z | 0 | 0 | 0900006484ab1c12 | ||||
| NOAA-NMFS-2021-0032-0001 | NOAA | Rulemaking to Modify the 2021 Halibut Individual Fishing Quota (IFQ) Vessel Harvest Limitations in IFQ Regulatory Areas 4A, 4B, 4C, and 4D. NOAA-NMFS-2021-0032 | Pacific Halibut Fisheries; Catch Sharing Plan | Proposed Rule | 2021-04-13T04:00:00Z | 2021 | 4 | 2021-04-13T04:00:00Z | 2021-04-29T03:59:59Z | 2021-04-29T20:48:45Z | 2021-07520 | 0 | 0 | 0900006484aa4848 |
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;