documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "NOAA-NMFS-2014-0014" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, 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-2014-0014-0010 | NOAA | International Fisheries; Pacific Tuna Fisheries; Fishing Restrictions in the Eastern Pacific Ocean NOAA-NMFS-2014-0014 | 2014-10-24 Compliance Guide Close 2014 EPO BET 0648-XD504 | Supporting & Related Material | 2014-10-24T04:00:00Z | 2014 | 10 | 2014-10-25T00:28:39Z | 0 | 0 | 09000064818fba80 | ||||
| NOAA-NMFS-2014-0014-0008 | NOAA | International Fisheries; Pacific Tuna Fisheries; Fishing Restrictions in the Eastern Pacific Ocean NOAA-NMFS-2014-0014 | International Fisheries; Pacific Tuna Fisheries: 2014 Bigeye Tuna Longline Fishery Closure in the Eastern Pacific Ocean; Closure | Rule | 2014-10-24T04:00:00Z | 2014 | 10 | 2014-10-24T04:00:00Z | 2014-10-24T17:46:24Z | 2014-25293 | 0 | 0 | 09000064818fac7a | ||
| NOAA-NMFS-2014-0014-0009 | NOAA | International Fisheries; Pacific Tuna Fisheries; Fishing Restrictions in the Eastern Pacific Ocean NOAA-NMFS-2014-0014 | 2014-10-24 Compliance Guide Close 2014 EPO BET 0648-XD504 | Supporting & Related Material | 2014-10-24T00:00:00Z | 2014 | 10 | 2014-10-25T00:26:33Z | 0 | 1 | 09000064818fbf26 | ||||
| NOAA-NMFS-2014-0014-0007 | NOAA | International Fisheries; Pacific Tuna Fisheries; Fishing Restrictions in the Eastern Pacific Ocean NOAA-NMFS-2014-0014 | Frequently Asked Questions | Supporting & Related Material | 2014-04-11T04:00:00Z | 2014 | 4 | 2014-04-11T15:25:18Z | 0 | 0 | 09000064816af1c4 | ||||
| NOAA-NMFS-2014-0014-0005 | NOAA | International Fisheries; Pacific Tuna Fisheries; Fishing Restrictions in the Eastern Pacific Ocean NOAA-NMFS-2014-0014 | Regulatory Impact Review | Supporting & Related Material | 2014-04-09T04:00:00Z | 2014 | 4 | 2014-04-09T21:52:23Z | 0 | 0 | 09000064816abfdf | ||||
| NOAA-NMFS-2014-0014-0004 | NOAA | International Fisheries; Pacific Tuna Fisheries; Fishing Restrictions in the Eastern Pacific Ocean NOAA-NMFS-2014-0014 | International Fisheries: Pacific Tuna Fisheries; Fishing Restrictions in the Eastern Pacific Ocean | Rule | 2014-04-09T04:00:00Z | 2014 | 4 | 2014-04-09T04:00:00Z | 2014-04-09T18:00:57Z | 2014-07905 | 0 | 0 | 09000064816aad7b | ||
| NOAA-NMFS-2014-0014-0006 | NOAA | International Fisheries; Pacific Tuna Fisheries; Fishing Restrictions in the Eastern Pacific Ocean NOAA-NMFS-2014-0014 | Frequently Asked Questions | Supporting & Related Material | 2014-04-09T00:00:00Z | 2014 | 4 | 2014-04-10T23:04:28Z | 0 | 1 | 09000064816ac611 | ||||
| NOAA-NMFS-2014-0014-0011 | NOAA | International Fisheries; Pacific Tuna Fisheries; Fishing Restrictions in the Eastern Pacific Ocean NOAA-NMFS-2014-0014 | International Fisheries; Pacific Tuna Fisheries: Fishing Restrictions in the Eastern Pacific Ocean | Proposed Rule | 2014-02-11T05:00:00Z | 2014 | 2 | 2014-02-11T05:00:00Z | 2015-06-09T16:16:11Z | C1-2014-02333 | 0 | 0 | 090000648155a5e7 | ||
| NOAA-NMFS-2014-0014-0002 | NOAA | International Fisheries; Pacific Tuna Fisheries; Fishing Restrictions in the Eastern Pacific Ocean NOAA-NMFS-2014-0014 | Initial Regulatory Impact Review | Supporting & Related Material | 2014-02-05T05:00:00Z | 2014 | 2 | 2014-02-05T22:28:06Z | 0 | 0 | 090000648154a1ab | ||||
| NOAA-NMFS-2014-0014-0001 | NOAA | International Fisheries; Pacific Tuna Fisheries; Fishing Restrictions in the Eastern Pacific Ocean NOAA-NMFS-2014-0014 | International Fisheries; Pacific Tuna Fisheries: Fishing Restrictions in the Eastern Pacific Ocean | Proposed Rule | 2014-02-05T05:00:00Z | 2014 | 2 | 2014-02-05T05:00:00Z | 2014-02-26T04:59:59Z | 2014-02-27T02:03:12Z | 2014-02333 | 0 | 0 | 09000064815491ff |
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;