documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
3 rows where docket_id = "NOAA-NMFS-2017-0102" 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-2017-0102-0004 | NOAA | Changing Pacific Whiting At-Sea Sector Darkblotched and Pacific Ocean Perch Allocations to Set-Asides, Amendment 21-3 to the Pacific Coast Groundfish Fishery Management Plan NOAA-NMFS-2017-0102 | Fisheries off West Coast States: Pacific Coast Groundfish Fishery; Pacific Whiting; Pacific Coast Groundfish Fishery Management Plan; Amendment 21-3; Trawl Rationalization Program | Rule | 2018-01-08T05:00:00Z | 2018 | 1 | 2018-01-08T05:00:00Z | 2018-01-24T18:47:49Z | 2018-00135 | 0 | 0 | 0900006482db13e2 | ||
| NOAA-NMFS-2017-0102-0002 | NOAA | Changing Pacific Whiting At-Sea Sector Darkblotched and Pacific Ocean Perch Allocations to Set-Asides, Amendment 21-3 to the Pacific Coast Groundfish Fishery Management Plan NOAA-NMFS-2017-0102 | Fisheries off West Coast States: Pacific Coast Groundfish Fishery; Pacific whiting; Pacific Coast Groundfish Fishery Management Plan; Amendment 21-3; Trawl Rationalization Program | Proposed Rule | 2017-10-30T04:00:00Z | 2017 | 10 | 2017-10-30T04:00:00Z | 2017-11-28T04:59:59Z | 2017-11-28T17:12:19Z | 2017-23456 | 0 | 0 | 0900006482c21d63 | |
| NOAA-NMFS-2017-0102-0001 | NOAA | Changing Pacific Whiting At-Sea Sector Darkblotched and Pacific Ocean Perch Allocations to Set-Asides, Amendment 21-3 to the Pacific Coast Groundfish Fishery Management Plan NOAA-NMFS-2017-0102 | Fisheries off West Coast States: Pacific Coast Groundfish Fishery; Pacific whiting; Pacific Coast Groundfish Fishery Management Plan; Amendment 21-3; Trawl Rationalization Program | Proposed Rule | 2017-09-27T04:00:00Z | 2017 | 9 | 2017-09-27T04:00:00Z | 2017-11-28T04:59:59Z | 2017-11-23T02:00:51Z | 2017-20692 | 0 | 0 | 0900006482b811b6 |
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;