documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NOAA-NMFS-2019-0139" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2019-0139-0009 | NOAA | Fisheries Off West Coast States; West Coast Salmon Fisheries; 2020 Management Measures NOAA-NMFS-2019-0139 | Fisheries Off West Coast States: Modifications of the West Coast Commercial and Recreational Salmon Fisheries; Inseason Actions Nos. 10 through 16 | Rule | 2021-05-05T04:00:00Z | 2021 | 5 | 2021-05-05T04:00:00Z | 2021-06-04T22:51:06Z | 2021-09427 | 0 | 0 | 0900006484ace0c2 | ||
| NOAA-NMFS-2019-0139-0008 | NOAA | Fisheries Off West Coast States; West Coast Salmon Fisheries; 2020 Management Measures NOAA-NMFS-2019-0139 | Fisheries Off West Coast States: Modifications of the West Coast Commercial and Recreational Salmon Fisheries; Inseason Actions 1 through 9 | Rule | 2021-03-30T04:00:00Z | 2021 | 3 | 2021-03-30T04:00:00Z | 2021-06-04T22:50:27Z | 2021-06516 | 0 | 0 | 0900006484a87574 | ||
| NOAA-NMFS-2019-0139-0007 | NOAA | Fisheries Off West Coast States; West Coast Salmon Fisheries; 2020 Management Measures NOAA-NMFS-2019-0139 | Fisheries off West Coast States: Modifications of the West Coast Commercial and Recreational Salmon Fisheries; Inseason Actions 8 through 15 | Rule | 2021-03-11T05:00:00Z | 2021 | 3 | 2021-03-11T05:00:00Z | 2021-06-04T22:49:45Z | 2021-05076 | 0 | 0 | 0900006484a67426 | ||
| NOAA-NMFS-2019-0139-0006 | NOAA | Fisheries Off West Coast States; West Coast Salmon Fisheries; 2020 Management Measures NOAA-NMFS-2019-0139 | Fisheries off West Coast States: Modifications of the West Coast Commercial Salmon Fisheries; Inseason Action No. 7 | Rule | 2020-09-10T04:00:00Z | 2020 | 9 | 2020-09-10T04:00:00Z | 2021-06-04T22:48:52Z | 2020-19996 | 0 | 0 | 090000648484f311 | ||
| NOAA-NMFS-2019-0139-0005 | NOAA | Fisheries Off West Coast States; West Coast Salmon Fisheries; 2020 Management Measures NOAA-NMFS-2019-0139 | Fisheries Off West Coast States: Modifications of the West Coast Commercial Salmon Fisheries; Inseason Action No. 6 | Rule | 2020-05-27T04:00:00Z | 2020 | 5 | 2020-05-27T04:00:00Z | 2021-06-04T22:47:27Z | 2020-11358 | 0 | 0 | 09000064846b1954 | ||
| NOAA-NMFS-2019-0139-0004 | NOAA | Fisheries Off West Coast States; West Coast Salmon Fisheries; 2020 Management Measures NOAA-NMFS-2019-0139 | Fisheries Off West Coast States: Modifications of the West Coast Recreational and Commercial Salmon Fisheries; Inseason Actions #1 through #5 | Rule | 2020-05-11T04:00:00Z | 2020 | 5 | 2020-05-11T04:00:00Z | 2021-06-04T22:46:43Z | 2020-10029 | 0 | 0 | 09000064845b54ff | ||
| NOAA-NMFS-2019-0139-0003 | NOAA | Fisheries Off West Coast States; West Coast Salmon Fisheries; 2020 Management Measures NOAA-NMFS-2019-0139 | Fisheries Off West Coast States: West Coast Salmon Fisheries; 2020 Management Measures | Rule | 2020-05-08T04:00:00Z | 2020 | 5 | 2020-05-08T04:00:00Z | 2021-06-04T22:45:54Z | 2020-09903 | 0 | 0 | 09000064845858f2 | ||
| NOAA-NMFS-2019-0139-0001 | NOAA | Fisheries Off West Coast States; West Coast Salmon Fisheries; 2020 Management Measures NOAA-NMFS-2019-0139 | Pacific Fishery Management Council; Public Meetings and Hearings | Notice | 2020-02-12T05:00:00Z | 2020 | 2 | 2020-03-19T04:00:00Z | 2020-03-28T03:59:59Z | 2020-03-28T01:01:51Z | 2020-02737 | 0 | 0 | 0900006484457d27 |
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;