documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NOAA-NOS-2007-0844" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, last_modified, fr_doc_num, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
agency_id 1
- NOAA 8
| 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-NOS-2007-0844-0013 | NOAA | None NOAA-NOS-2007-0844 | Notice of Effective Date | Notice | 2009-03-24T04:00:00Z | 2009 | 3 | 2009-03-24T04:00:00Z | 2011-06-11T15:21:38Z | 0803023558141502 | 0 | 0 | 090000648092b10e | ||
| NOAA-NOS-2007-0844-0011 | NOAA | None NOAA-NOS-2007-0844 | Gulf of the Farallones National Marine | Rule | 2008-11-25T05:00:00Z | 2008 | 11 | 2008-11-25T05:00:00Z | 2011-06-11T15:21:38Z | 0803023558141502 | 0 | 0 | 09000064807bf636 | ||
| NOAA-NOS-2007-0844-0012 | NOAA | None NOAA-NOS-2007-0844 | Gulf of the Farallones National Marine Sanctuary Regulations; Monterey Bay National Marine Sanctuary Regulations; and Cordell Bank National Marine Sanctuary Regulations | Rule | 2008-11-20T05:00:00Z | 2008 | 11 | 2008-11-20T05:00:00Z | 2011-06-11T15:21:37Z | E8-27220 | 0 | 0 | 09000064807b3695 | ||
| NOAA-NOS-2007-0844-0010 | NOAA | None NOAA-NOS-2007-0844 | Final Environmental Impact Statement for the JMPR management plan review and regulations | Supporting & Related Material | 2008-11-03T05:00:00Z | 2008 | 11 | 2011-06-11T15:21:39Z | 0 | 0 | 0900006480792d01 | ||||
| NOAA-NOS-2007-0844-0007 | NOAA | None NOAA-NOS-2007-0844 | Monterey Bay National Marine Sanctuary Regulations | Proposed Rule | 2008-09-30T04:00:00Z | 2008 | 9 | 2008-09-30T04:00:00Z | 2007-01-06T04:59:59Z | 2011-06-11T15:21:38Z | 0 | 0 | 090000648040bb46 | ||
| NOAA-NOS-2007-0844-0009 | NOAA | None NOAA-NOS-2007-0844 | Final Environmental Impact Statement for the Joint Management Plan Review of CB, GF, and MBNMS | Supporting & Related Material | 2008-09-26T20:43:36Z | 2008 | 9 | 2011-06-11T15:21:37Z | 0 | 0 | 090000648072eef9 | ||||
| NOAA-NOS-2007-0844-0002 | NOAA | None NOAA-NOS-2007-0844 | Office of National Marine Sanctuaries Regulations | Proposed Rule | 2008-03-27T04:00:00Z | 2008 | 3 | 2008-03-27T04:00:00Z | 2008-05-10T03:59:59Z | 2011-06-11T15:21:38Z | E8-06189 | 0 | 0 | 090000648040b138 | |
| NOAA-NOS-2007-0844-0001 | NOAA | None NOAA-NOS-2007-0844 | Notice of Intent To Prepare a Supplemental Draft Environmental Impact Statement for a Proposed Rule Limiting Discharges From Vessels in Cordell Bank, Gulf of the Farallones, and Monterey Bay National Marine Sanctuaries | Notice | 2007-11-21T05:00:00Z | 2007 | 11 | 2007-11-21T05:00:00Z | 2008-03-27T14:49:31Z | E7-22710 | 0 | 0 | 0900006480366d48 |
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;