documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NOAA-NMFS-2017-0052" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, comment_end_date, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 5
agency_id 1
- NOAA 8
| 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-0052-0027 | NOAA | Implementation of a Federal Limited Entry Permit for the California/Oregon Large-Mesh Drift Gillnet Fishery NOAA-NMFS-2017-0052 | Final Rule to Implement a Federal Limited Entry Permit in the California/Oregon Large-Mesh Drift Gillnet Fishery | Rule | 2018-03-15T04:00:00Z | 2018 | 3 | 2018-03-15T04:00:00Z | 2018-03-15T18:01:18Z | 0 | 0 | 0900006483018c12 | |||
| NOAA-NMFS-2017-0052-0030 | NOAA | Implementation of a Federal Limited Entry Permit for the California/Oregon Large-Mesh Drift Gillnet Fishery NOAA-NMFS-2017-0052 | Fisheries off West Coast States: Highly Migratory Fisheries; California Drift Gillnet Fishery; Implementation of Federal Limited Entry Drift Gillnet Permit | Rule | 2018-03-14T04:00:00Z | 2018 | 3 | 2018-03-14T04:00:00Z | 2022-12-29T14:59:40Z | 2018-05186 | 0 | 0 | 090000648300e607 | ||
| NOAA-NMFS-2017-0052-0004 | NOAA | Implementation of a Federal Limited Entry Permit for the California/Oregon Large-Mesh Drift Gillnet Fishery NOAA-NMFS-2017-0052 | Regulatory Impact Review for the Implementation of a Federal Permit the California/Oregon Large-Mesh Drift Gillnet Fishery Proposed Rule | Supporting & Related Material | 2017-10-31T04:00:00Z | 2017 | 10 | 2017-10-31T17:23:39Z | 0 | 0 | 0900006482c2a748 | ||||
| NOAA-NMFS-2017-0052-0029 | NOAA | Implementation of a Federal Limited Entry Permit for the California/Oregon Large-Mesh Drift Gillnet Fishery NOAA-NMFS-2017-0052 | Fisheries Off West Coast States: Highly Migratory Fisheries; California Drift Gillnet Fishery; Implementation of a Federal Limited Entry Drift Gillnet Permit | Proposed Rule | 2017-10-31T04:00:00Z | 2017 | 10 | 2017-10-31T04:00:00Z | 2017-12-16T04:59:59Z | 2022-12-29T14:55:20Z | 2017-23571 | 0 | 0 | 0900006482c2880e | |
| NOAA-NMFS-2017-0052-0003 | NOAA | Implementation of a Federal Limited Entry Permit for the California/Oregon Large-Mesh Drift Gillnet Fishery NOAA-NMFS-2017-0052 | Proposed Rule to Implement a Federal Limited Entry Permit in the California/Oregon Large-Mesh Drift Gillnet Fishery | Proposed Rule | 2017-10-31T04:00:00Z | 2017 | 10 | 2017-10-31T04:00:00Z | 2017-12-16T04:59:59Z | 2018-01-03T02:03:54Z | 2017–23571 | 0 | 0 | 0900006482c2a745 | |
| NOAA-NMFS-2017-0052-0001 | NOAA | Implementation of a Federal Limited Entry Permit for the California/Oregon Large-Mesh Drift Gillnet Fishery NOAA-NMFS-2017-0052 | Notice of availability of Amendment 5 to the Highly Migratory Species Fishery Management Plan; California Drift Gillnet Fishery; Implementation of a Federal Limited Entry Drift Gillnet Permit | Notice | 2017-09-15T04:00:00Z | 2017 | 9 | 2017-09-15T04:00:00Z | 2017-11-15T04:59:59Z | 2017-11-15T02:05:13Z | 0 | 0 | 0900006482b4177a | ||
| NOAA-NMFS-2017-0052-0002 | NOAA | Implementation of a Federal Limited Entry Permit for the California/Oregon Large-Mesh Drift Gillnet Fishery NOAA-NMFS-2017-0052 | HMS FMP Amendment 5 Language: Drift Gillnet Limited Entry Permit | Other | 2017-09-15T04:00:00Z | 2017 | 9 | 2017-09-15T04:00:00Z | 2017-11-15T04:59:59Z | 2017-11-15T02:08:30Z | 0 | 0 | 0900006482b4177b | ||
| NOAA-NMFS-2017-0052-0028 | NOAA | Implementation of a Federal Limited Entry Permit for the California/Oregon Large-Mesh Drift Gillnet Fishery NOAA-NMFS-2017-0052 | Fisheries off West Coast States: Highly Migratory Fisheries; Amendment 5 to the Highly Migratory Species Fishery Management Plan; California Drift Gillnet Fishery; Implementation of a Federal Limited Entry Drift Gillnet Permit | Proposed Rule | 2017-09-15T04:00:00Z | 2017 | 9 | 2017-09-15T04:00:00Z | 2017-11-15T04:59:59Z | 2022-12-29T14:54:05Z | 2017-19662 | 0 | 0 | 0900006482b3b7bc |
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;