documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "NOAA-NMFS-2013-0117" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_end_date, withdrawn, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- NOAA 9
| 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-2013-0117-0011 | NOAA | International Fisheries; Pacific Tuna Fisheries; Program for the Establishment of Vessel Monitoring System in the Eastern Pacific Ocean NOAA-NMFS-2013-0117 | Categorical Exclusion; Implementation of the Inter-American Tropical Tuna Commission Resolution for a Vessel Monitoring System | Supporting & Related Material | 2015-10-07T04:00:00Z | 2015 | 10 | 2015-10-07T18:47:22Z | 0 | 0 | 0900006481cb86ca | ||||
| NOAA-NMFS-2013-0117-0010 | NOAA | International Fisheries; Pacific Tuna Fisheries; Program for the Establishment of Vessel Monitoring System in the Eastern Pacific Ocean NOAA-NMFS-2013-0117 | Small Entity Compliance Guide; Implementation of the Inter-American Tropical Tuna Commission Resolution on a Vessel Monitoring System | Supporting & Related Material | 2015-10-07T04:00:00Z | 2015 | 10 | 2015-10-07T17:43:41Z | 0 | 0 | 0900006481cb7c4e | ||||
| NOAA-NMFS-2013-0117-0012 | NOAA | International Fisheries; Pacific Tuna Fisheries; Program for the Establishment of Vessel Monitoring System in the Eastern Pacific Ocean NOAA-NMFS-2013-0117 | Final Regulatory Flexibility Analysis; Implementation of the Inter-American Tropical Tuna Commission Resolution for a Vessel Monitoring System | Supporting & Related Material | 2015-10-07T04:00:00Z | 2015 | 10 | 2015-10-07T18:47:29Z | 0 | 0 | 0900006481cb86cb | ||||
| NOAA-NMFS-2013-0117-0013 | NOAA | International Fisheries; Pacific Tuna Fisheries; Program for the Establishment of Vessel Monitoring System in the Eastern Pacific Ocean NOAA-NMFS-2013-0117 | Regulatory Impact Review; Implementation of the Inter-American Tropical Tuna Commission Resolution for a Vessel Monitoring System | Supporting & Related Material | 2015-10-07T04:00:00Z | 2015 | 10 | 2015-10-07T18:47:35Z | 0 | 0 | 0900006481cb87b8 | ||||
| NOAA-NMFS-2013-0117-0008 | NOAA | International Fisheries; Pacific Tuna Fisheries; Program for the Establishment of Vessel Monitoring System in the Eastern Pacific Ocean NOAA-NMFS-2013-0117 | International Fisheries; Pacific Tuna Fisheries; Establishment of Tuna Vessel Monitoring System in the Eastern Pacific Ocean | Rule | 2015-10-07T04:00:00Z | 2015 | 10 | 2015-10-07T04:00:00Z | 2015-10-07T16:24:14Z | 2015-25474 | 0 | 0 | 0900006481cb6290 | ||
| NOAA-NMFS-2013-0117-0009 | NOAA | International Fisheries; Pacific Tuna Fisheries; Program for the Establishment of Vessel Monitoring System in the Eastern Pacific Ocean NOAA-NMFS-2013-0117 | Categorical Exclusion; Implementation of the Inter-American Tropical Tuna Commission Resolution for a Vessel Monitoring System | Supporting & Related Material | 2015-10-07T00:00:00Z | 2015 | 10 | 2015-10-07T18:36:59Z | 0 | 1 | 0900006481cb79eb | ||||
| NOAA-NMFS-2013-0117-0005 | NOAA | International Fisheries; Pacific Tuna Fisheries; Program for the Establishment of Vessel Monitoring System in the Eastern Pacific Ocean NOAA-NMFS-2013-0117 | International Fisheries: Pacific Tuna Fisheries; Establishment of Tuna Vessel Monitoring System in the Eastern Pacific Ocean | Proposed Rule | 2015-05-19T04:00:00Z | 2015 | 5 | 2015-05-19T04:00:00Z | 2015-06-19T03:59:59Z | 2015-06-19T01:30:17Z | 2015-11991 | 0 | 0 | 0900006481ae805f | |
| NOAA-NMFS-2013-0117-0004 | NOAA | International Fisheries; Pacific Tuna Fisheries; Program for the Establishment of Vessel Monitoring System in the Eastern Pacific Ocean NOAA-NMFS-2013-0117 | International Fisheries: Pacific Tuna Fisheries; Establishment of Tuna Vessel Monitoring System in the Eastern Pacific Ocean; Correction | Proposed Rule | 2014-02-25T05:00:00Z | 2014 | 2 | 2014-02-25T05:00:00Z | 2014-03-11T03:59:59Z | 2014-07-25T18:16:15Z | 2014-03911 | 0 | 0 | 09000064815b150a | |
| NOAA-NMFS-2013-0117-0001 | NOAA | International Fisheries; Pacific Tuna Fisheries; Program for the Establishment of Vessel Monitoring System in the Eastern Pacific Ocean NOAA-NMFS-2013-0117 | International Fisheries; Pacific Tuna Fisheries: Tuna Vessel Monitoring System in the Eastern Pacific Ocean | Proposed Rule | 2014-02-06T05:00:00Z | 2014 | 2 | 2014-02-06T05:00:00Z | 2014-03-11T03:59:59Z | 2014-03-11T01:04:10Z | 2014-02598 | 0 | 0 | 090000648154c7ee |
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;