documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "NOAA-NMFS-2007-0786" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- NOAA 5
| 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-2007-0786-0006 | NOAA | Fisheries in the Western Pacific; Bottomfish & Seamount Groundfish; Management Measures for the Northern Mariana Islands NOAA-NMFS-2007-0786 | Fisheries in the Western Pacific: Bottomfish and Seamount Groundfish; Management Measures for the Northern Mariana Islands | Rule | 2009-04-06T04:00:00Z | 2009 | 4 | 2009-04-06T04:00:00Z | 2011-06-11T15:05:35Z | E9-07707 | 0 | 0 | 0900006480944097 | ||
| NOAA-NMFS-2007-0786-0005 | NOAA | Fisheries in the Western Pacific; Bottomfish & Seamount Groundfish; Management Measures for the Northern Mariana Islands NOAA-NMFS-2007-0786 | Fisheries in the Western Pacific; Bottomfish and Seamount Groundfish Fisheries; Management Measures for the Northern Mariana Islands | Rule | 2008-12-12T05:00:00Z | 2008 | 12 | 2008-12-12T05:00:00Z | 2011-06-11T15:05:36Z | E8-29512 | 0 | 0 | 09000064807d882d | ||
| NOAA-NMFS-2007-0786-0003 | NOAA | Fisheries in the Western Pacific; Bottomfish & Seamount Groundfish; Management Measures for the Northern Mariana Islands NOAA-NMFS-2007-0786 | Fisheries in the Western Pacific; Bottomfish and Seamount Groundfish Fisheries; Management Measures for the Northern Mariana Islands | Proposed Rule | 2008-09-08T04:00:00Z | 2008 | 9 | 2008-09-08T04:00:00Z | 2008-10-24T03:59:59Z | 2011-06-11T15:05:35Z | E8-20774 | 0 | 0 | 09000064806f830a | |
| NOAA-NMFS-2007-0786-0001 | NOAA | Fisheries in the Western Pacific; Bottomfish & Seamount Groundfish; Management Measures for the Northern Mariana Islands NOAA-NMFS-2007-0786 | Fisheries in the Western Pacific; Bottomfish and Seamount Groundfish Fisheries; Management Measures for the Northern Mariana Islands | Proposed Rule | 2008-08-20T04:00:00Z | 2008 | 8 | 2008-08-20T04:00:00Z | 2008-10-21T03:59:59Z | 2011-06-11T15:05:35Z | E8-19337 | 0 | 0 | 09000064806cf156 | |
| NOAA-NMFS-2007-0786-0002 | NOAA | Fisheries in the Western Pacific; Bottomfish & Seamount Groundfish; Management Measures for the Northern Mariana Islands NOAA-NMFS-2007-0786 | Bottomfish Amendment 10; Measures for the CNMI | Supporting & Related Material | 2008-08-20T04:00:00Z | 2008 | 8 | 2008-08-20T16:14:48Z | 0 | 0 | 09000064806cff5c |
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;