documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "NOAA-NMFS-2020-0098" and posted_year = 2021 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-2020-0098-0025 | NOAA | Amendment 29 to the Pacific Coast Groundfish FMP to implement 2021-22 biennial harvest specifications NOAA-NMFS-2020-0098 | Fisheries Off West Coast States: Pacific Coast Groundfish Fishery; 2021-2022 Biennial Specifications and Management Measures; Inseason Adjustments | Rule | 2021-12-10T05:00:00Z | 2021 | 12 | 2021-12-10T05:00:00Z | 2021-12-17T20:13:09Z | 2021-26826 | 0 | 0 | 0900006484eb7faf | ||
| NOAA-NMFS-2020-0098-0024 | NOAA | Amendment 29 to the Pacific Coast Groundfish FMP to implement 2021-22 biennial harvest specifications NOAA-NMFS-2020-0098 | Fisheries off West Coast States: Magnuson-Stevens Act Provisions; Pacific Coast Groundfish Fishery; 2021-2022 Biennial Specifications and Management Measures; Inseason Adjustments | Rule | 2021-10-29T04:00:00Z | 2021 | 10 | 2021-10-29T04:00:00Z | 2021-10-29T15:50:38Z | 2021-23653 | 0 | 0 | 0900006484dff482 | ||
| NOAA-NMFS-2020-0098-0023 | NOAA | Amendment 29 to the Pacific Coast Groundfish FMP to implement 2021-22 biennial harvest specifications NOAA-NMFS-2020-0098 | Fisheries Off West Coast States: Pacific Coast Groundfish Fishery; 2021-2022 Biennial Specifications and Management Measures; Inseason Adjustments | Rule | 2021-06-09T04:00:00Z | 2021 | 6 | 2021-06-09T04:00:00Z | 2021-07-16T16:53:57Z | 2021-12107 | 0 | 0 | 0900006484b5fb32 | ||
| NOAA-NMFS-2020-0098-0022 | NOAA | Amendment 29 to the Pacific Coast Groundfish FMP to implement 2021-22 biennial harvest specifications NOAA-NMFS-2020-0098 | Fisheries off West Coast States: Pacific Coast Groundfish Fishery; 2021-2022 Biennial Specifications and Management Measures; Inseason Adjustments | Rule | 2021-06-01T04:00:00Z | 2021 | 6 | 2021-06-01T04:00:00Z | 2021-07-16T16:53:12Z | 2021-11417 | 0 | 0 | 0900006484b46b7b | ||
| NOAA-NMFS-2020-0098-0021 | NOAA | Amendment 29 to the Pacific Coast Groundfish FMP to implement 2021-22 biennial harvest specifications NOAA-NMFS-2020-0098 | Fisheries off West Coast States: Pacific Coast Groundfish Fishery; 2021-2022 Biennial Specifications and Management Measures; Correction | Rule | 2021-05-24T04:00:00Z | 2021 | 5 | 2021-05-24T04:00:00Z | 2021-05-26T17:44:55Z | 2021-10822 | 0 | 0 | 0900006484b2e29a | ||
| NOAA-NMFS-2020-0098-0020 | NOAA | Amendment 29 to the Pacific Coast Groundfish FMP to implement 2021-22 biennial harvest specifications NOAA-NMFS-2020-0098 | Fisheries off West Coast States: Magnuson-Stevens Act Provisions; Pacific Coast Groundfish Fishery; 2021-2022 Biennial Specifications and Management Measures; Correction | Rule | 2021-03-16T04:00:00Z | 2021 | 3 | 2021-03-16T04:00:00Z | 2021-03-16T16:50:13Z | 2021-05359 | 0 | 0 | 0900006484a6c563 |
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;