documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NOAA_FRDOC_0001" and posted_year = 2020 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_FRDOC_0001-5625 | NOAA | None NOAA_FRDOC_0001 | Atlantic Highly Migratory Species: Atlantic Billfish Fisheries | Rule | 2020-09-16T04:00:00Z | 2020 | 9 | 2020-09-16T04:00:00Z | 2020-09-16T11:44:19Z | 2020-20409 | 0 | 0 | 090000648485c5ee | ||
| NOAA_FRDOC_0001-5622 | NOAA | None NOAA_FRDOC_0001 | General Provisions for Domestic Fisheries: Pacific Coast Groundfish Fishery; Application for an Exempted Fishing Permit | Proposed Rule | 2020-09-14T04:00:00Z | 2020 | 9 | 2020-09-14T04:00:00Z | 2020-09-30T03:59:59Z | 2020-09-22T01:00:28Z | 2020-19060 | 0 | 0 | 09000064848562c8 | |
| NOAA_FRDOC_0001-5620 | NOAA | None NOAA_FRDOC_0001 | Magnuson-Stevens Fishery Conservation and Management Act Provisions: Regional Fishery Management Council Membership; Financial Disclosure and Recusal | Rule | 2020-09-11T04:00:00Z | 2020 | 9 | 2020-09-11T04:00:00Z | 2020-09-11T11:48:21Z | 2020-20019 | 0 | 0 | 0900006484851fd5 | ||
| NOAA_FRDOC_0001-5596 | NOAA | None NOAA_FRDOC_0001 | Fisheries of the Northeastern United States: Amendment 21 to the Atlantic Mackerel, Squid, and Butterfish Fishery Management Plan; Correction | Rule | 2020-08-18T04:00:00Z | 2020 | 8 | 2020-08-18T04:00:00Z | 2020-08-18T11:48:30Z | 2020-18032 | 0 | 0 | 090000648480cdf8 | ||
| NOAA_FRDOC_0001-5576 | NOAA | None NOAA_FRDOC_0001 | Fisheries of the Northeastern United States: Amendment 21 to the Atlantic Mackerel, Squid, and Butterfish Fishery Management Plan | Rule | 2020-08-04T04:00:00Z | 2020 | 8 | 2020-08-04T04:00:00Z | 2020-08-04T11:56:32Z | 2020-15969 | 0 | 0 | 09000064847d25f0 | ||
| NOAA_FRDOC_0001-5543 | NOAA | None NOAA_FRDOC_0001 | Vessel Monitoring Systems: Requirements for Type-Approval of Cellular Transceiver Units | Rule | 2020-07-08T04:00:00Z | 2020 | 7 | 2020-07-08T04:00:00Z | 2020-07-08T11:51:08Z | 2020-14600 | 0 | 0 | 0900006484730ba6 | ||
| NOAA_FRDOC_0001-5399 | NOAA | None NOAA_FRDOC_0001 | Fisheries of the Northeastern United States: Magnuson-Stevens Fishery Conservation and Management Act Provisions; Industry-Funded Monitoring | Rule | 2020-02-07T05:00:00Z | 2020 | 2 | 2020-02-07T05:00:00Z | 2020-02-07T12:49:22Z | 2020-00881 | 0 | 0 | 090000648433b81f |
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;