documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where agency_id = "DOI" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_date, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| DOI-2008-0006-0002 | DOI | Semiannual Regulatory Agenda - Fall 2008 DOI-2008-0006 | Regulatory Plan - Fall 2008 | Other | 2008-11-23T16:04:55Z | 2008 | 11 | 2010-05-29T14:07:24Z | 0 | 0 | 09000064807ba938 | ||||
| DOI-2008-0006-0001 | DOI | Semiannual Regulatory Agenda - Fall 2008 DOI-2008-0006 | Semiannual Regulatory Agenda - Fall 2008 | Other | 2008-11-23T16:04:29Z | 2008 | 11 | 2010-05-29T14:07:23Z | 0 | 0 | 09000064807ba937 | ||||
| DOI-2008-0004-0001 | DOI | Indian Trust Management Reform DOI-2008-0004 | Indian Trust Management Reform | Rule | 2008-11-13T05:00:00Z | 2008 | 11 | 2008-11-13T05:00:00Z | 2011-06-11T17:09:59Z | E8-26487 | 0 | 0 | 09000064807a6ec9 | ||
| DOI-2008-0003-0022 | DOI | Natural Resource Damages for Hazardous Substances DOI-2008-0003 | Natural Resource Damages for Hazardous Substances | Rule | 2008-11-03T05:00:00Z | 2008 | 11 | 2008-11-03T05:00:00Z | 2011-06-11T17:09:43Z | E8-26248 | 0 | 0 | 090000648078cbcd | ||
| DOI-2008-0002-0055 | DOI | Implementation of the National Environmental Policy Act (NEPA) of 1969 DOI-2008-0002 | Implementation of the National Environmental Policy Act (NEPA) of 1969 | Rule | 2008-10-15T04:00:00Z | 2008 | 10 | 2008-10-15T04:00:00Z | 2011-06-11T17:09:28Z | E8-23474 | 0 | 0 | 090000648075c2bf | ||
| DOI-2008-0003-0021 | DOI | Natural Resource Damages for Hazardous Substances DOI-2008-0003 | Natural Resource Damages for Hazardous Substances | Rule | 2008-10-02T04:00:00Z | 2008 | 10 | 2008-10-02T04:00:00Z | 2011-06-11T17:09:54Z | E8-23225 | 0 | 0 | 0900006480733430 | ||
| DOI-2008-0005-0001 | DOI | Semiannual Regulatory Agenda - Spring 2008 DOI-2008-0005 | Semiannual Regulatory Agenda - Spring 2008 | Other | 2008-05-06T23:08:59Z | 2008 | 5 | 2010-05-29T14:07:57Z | 0 | 0 | 090000648054de6b | ||||
| DOI-2008-0002-0054 | DOI | Implementation of the National Environmental Policy Act (NEPA) of 1969 DOI-2008-0002 | Comment On | Supporting & Related Material | 2008-04-07T04:00:00Z | 2008 | 4 | 2008-04-07T17:53:54Z | 0 | 0 | 09000064803f13f5 | ||||
| DOI-2008-0002-0004 | DOI | Implementation of the National Environmental Policy Act (NEPA) of 1969 DOI-2008-0002 | Regulatory Analysis | Supporting & Related Material | 2008-03-06T05:00:00Z | 2008 | 3 | 2011-06-11T17:09:24Z | 0 | 0 | 09000064803ea13a | ||||
| DOI-2008-0002-0005 | DOI | Implementation of the National Environmental Policy Act (NEPA) of 1969 DOI-2008-0002 | National Environmental Conflict Resolution Advisory Committee Final Report | Supporting & Related Material | 2008-03-06T05:00:00Z | 2008 | 3 | 2011-06-11T17:09:33Z | 0 | 0 | 09000064803a6130 | ||||
| DOI-2008-0003-0001 | DOI | Natural Resource Damages for Hazardous Substances DOI-2008-0003 | Natural Resource Damages for Hazardous Substances | Proposed Rule | 2008-02-29T05:00:00Z | 2008 | 2 | 2008-02-29T05:00:00Z | 2008-05-30T03:59:59Z | 2011-06-11T17:09:50Z | E8-03683 | 0 | 0 | 09000064803d50f0 | |
| DOI-2008-0002-0001 | DOI | Implementation of the National Environmental Policy Act (NEPA) of 1969 DOI-2008-0002 | Implementation of the National Environmental Policy Act (NEPA) of 1969 | Proposed Rule | 2008-01-02T05:00:00Z | 2008 | 1 | 2008-01-02T05:00:00Z | 2008-03-04T04:59:59Z | 2011-06-11T17:09:38Z | E7-25484 | 0 | 0 | 0900006480381597 |
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;