documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NOAA-NMFS-2016-0123" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, comment_end_date, withdrawn, 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-2016-0123-0039 | NOAA | Fisheries off West Coast States; Highly Migratory Fisheries; California Drift Gillnet Fishery; Protected Species Hard Caps for the California/Oregon Large-Mesh Drift Gillnet Fishery NOAA-NMFS-2016-0123 | Fisheries off West Coast States: Highly Migratory Fisheries; California Drift Gillnet Fishery; Protected Species Hard Caps for the California/Oregon Large-Mesh Drift Gillnet Fishery | Proposed Rule | 2016-11-23T05:00:00Z | 2016 | 11 | 2016-11-23T05:00:00Z | 2016-12-29T04:59:59Z | 2022-12-29T14:51:34Z | 2016-28179 | 0 | 0 | 09000064823b9a52 | |
| NOAA-NMFS-2016-0123-0008 | NOAA | Fisheries off West Coast States; Highly Migratory Fisheries; California Drift Gillnet Fishery; Protected Species Hard Caps for the California/Oregon Large-Mesh Drift Gillnet Fishery NOAA-NMFS-2016-0123 | Extension of Public Comment Period | Notice | 2016-11-23T05:00:00Z | 2016 | 11 | 2016-11-23T05:00:00Z | 2016-11-23T20:00:17Z | 84546 | 0 | 0 | 09000064823bd27a | ||
| NOAA-NMFS-2016-0123-0006 | NOAA | Fisheries off West Coast States; Highly Migratory Fisheries; California Drift Gillnet Fishery; Protected Species Hard Caps for the California/Oregon Large-Mesh Drift Gillnet Fishery NOAA-NMFS-2016-0123 | Notice of Extension of Public Comment Period | Notice | 2016-11-11T00:00:00Z | 2016 | 11 | 2016-11-14T20:02:25Z | 0 | 1 | 090000648238ca58 | ||||
| NOAA-NMFS-2016-0123-0002 | NOAA | Fisheries off West Coast States; Highly Migratory Fisheries; California Drift Gillnet Fishery; Protected Species Hard Caps for the California/Oregon Large-Mesh Drift Gillnet Fishery NOAA-NMFS-2016-0123 | Draft Environmental Assessment for Strict Limits (Hard Caps) for Protected Species in the California/Oregon Large-Mesh Drift Gillnet (DGN) Fishery | Supporting & Related Material | 2016-10-13T04:00:00Z | 2016 | 10 | 2016-10-12T22:03:06Z | 0 | 0 | 09000064822f1538 | ||||
| NOAA-NMFS-2016-0123-0003 | NOAA | Fisheries off West Coast States; Highly Migratory Fisheries; California Drift Gillnet Fishery; Protected Species Hard Caps for the California/Oregon Large-Mesh Drift Gillnet Fishery NOAA-NMFS-2016-0123 | Regulatory Impact Review and Initial Regulatory Flexibility Analysis for the Protected Species Hard Caps for the California/Oregon Large-Mesh Drift Gillnet Fishery Proposed Rule | Supporting & Related Material | 2016-10-13T04:00:00Z | 2016 | 10 | 2016-10-18T23:43:40Z | 0 | 0 | 09000064822f1539 | ||||
| NOAA-NMFS-2016-0123-0038 | NOAA | Fisheries off West Coast States; Highly Migratory Fisheries; California Drift Gillnet Fishery; Protected Species Hard Caps for the California/Oregon Large-Mesh Drift Gillnet Fishery NOAA-NMFS-2016-0123 | Fisheries Off WestCoast States: Highly Migratory Fisheries; California Drift Gillnet Fishery: California/Oregon Large-Mesh Drift Gillnet Fishery; Protected Species Hard Caps | Proposed Rule | 2016-10-13T04:00:00Z | 2016 | 10 | 2016-10-13T04:00:00Z | 2016-11-29T04:59:59Z | 2022-12-29T14:49:18Z | 2016-24780 | 0 | 0 | 09000064822f2e65 | |
| NOAA-NMFS-2016-0123-0001 | NOAA | Fisheries off West Coast States; Highly Migratory Fisheries; California Drift Gillnet Fishery; Protected Species Hard Caps for the California/Oregon Large-Mesh Drift Gillnet Fishery NOAA-NMFS-2016-0123 | Proposed Rule: Fisheries off West Coast States; Highly Migratory Fisheries; California Drift Gillnet Fishery; Protected Species Hard Caps for the California/Oregon Large-Mesh Drift Gillnet Fishery | Proposed Rule | 2016-10-13T04:00:00Z | 2016 | 10 | 2016-10-12T04:00:00Z | 2016-12-29T04:59:59Z | 2016-12-30T02:01:50Z | 0 | 0 | 09000064822f1537 |
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;