documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "DOE", document_type = "Proposed Rule" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| DOE-EERE-OT-2009-0001-0001 | DOE | Production Incentives for Cellulosic Biofuels; Reverse Auction Procedures and Standards DOE-EERE-OT-2009-0001 | Production Incentives for Cellulosic Biofuels; Reverse Auction Procedures and Standards | Proposed Rule | 2008-12-23T05:00:00Z | 2008 | 12 | 2008-12-23T05:00:00Z | 2009-01-23T04:59:59Z | 2014-01-18T15:34:09Z | E8-30500 | 0 | 0 | 09000064807ed9cf | |
| DOE-HQ-2008-0022-0001 | DOE | Revision of Department of Energy’s Freedom of Information Act Regulations DOE-HQ-2008-0022 | Revision of Department of Energys Freedom of Information Act Regulations | Proposed Rule | 2008-12-09T05:00:00Z | 2008 | 12 | 2008-12-09T05:00:00Z | 2009-01-09T04:59:59Z | 2014-01-17T21:23:42Z | E8-28940 | 0 | 0 | 09000064807d3cb8 | |
| DOE-HQ-2008-0023-0001 | DOE | Conduct of Employees and Former Employees; Exemption From Post- Employment Restrictions for Communications; Furnishing Scientific or Technological Information DOE-HQ-2008-0023 | Conduct of Employees and Former Employees; Exemption From Post- Employment Restrictions for Communications; Furnishing Scientific or Technological Information | Proposed Rule | 2008-12-01T05:00:00Z | 2008 | 12 | 2008-12-01T05:00:00Z | 2009-01-01T04:59:59Z | 2014-01-18T18:44:03Z | E8-28267 | 0 | 0 | 09000064807c7032 | |
| DOE-2008-0002-0002 | DOE | Coordination of Federal Authorizations for Electric Transmission Facilities DOE-2008-0002 | Coordination of Federal Authorizations for Electric Transmission Facilities | Proposed Rule | 2008-09-19T04:00:00Z | 2008 | 9 | 2008-09-19T04:00:00Z | 2008-11-04T04:59:59Z | 2011-06-13T17:05:44Z | E8-21867 | 0 | 0 | 090000648070f529 | |
| DOE-2008-0010-0001 | DOE | Assistance Regulations DOE-2008-0010 | Assistance Regulations | Proposed Rule | 2008-05-16T04:00:00Z | 2008 | 5 | 2008-05-16T04:00:00Z | 2008-07-16T03:59:59Z | 2014-01-17T21:03:52Z | E8-11005 | 0 | 0 | 09000064805d52cf | |
| DOE-2008-0006-0001 | DOE | Procedural Rules for DOE Nuclear Activities DOE-2008-0006 | Procedural Rules for DOE Nuclear Activities | Proposed Rule | 2008-04-11T04:00:00Z | 2008 | 4 | 2008-04-11T04:00:00Z | 2008-05-28T03:59:59Z | 2014-01-18T17:30:05Z | E8-07763 | 0 | 0 | 09000064804a514b | |
| DOE-2008-0005-0001 | DOE | Draft Global Nuclear Energy Partnership Programmatic Environmental Impact Statement (Draft GNEP PEIS, DOE/EIS-0396). The official comment closing date is March 16, 2009. DOE-2008-0005 | Energy Conservation Program: Energy Conservation Standards for General Service Fluorescent Lamps and Incandescent Reflector Lamps | Proposed Rule | 2008-03-13T00:00:00Z | 2008 | 3 | 2009-04-21T21:14:10Z | 0 | 1 | 09000064803f4092 | ||||
| DOE-2008-0002-0001 | DOE | Coordination of Federal Authorizations for Electric Transmission Facilities DOE-2008-0002 | Energy Conservation Program: Test Procedures for General Service Fluorescent Lamps, Incandescent Reflector Lamps, and General Service Incandescent Lamps | Proposed Rule | 2008-03-13T00:00:00Z | 2008 | 3 | 2011-06-13T17:05:41Z | 0 | 1 | 09000064803f404b | ||||
| DOE-2008-0001-0001 | DOE | Defense Priorities and Allocations System DOE-2008-0001 | Defense Priorities and Allocations System | Proposed Rule | 2008-02-29T05:00:00Z | 2008 | 2 | 2008-02-29T05:00:00Z | 2008-04-01T03:59:59Z | 2014-01-17T20:41:35Z | E8-03776 | 0 | 0 | 09000064803d5113 | |
| DOE-2008-0003-0001 | DOE | Acquisition Regulation: Security Clause DOE-2008-0003 | Acquisition Regulation: Security Clause | Proposed Rule | 2008-02-19T05:00:00Z | 2008 | 2 | 2008-02-19T05:00:00Z | 2008-03-21T03:59:59Z | 2014-01-17T21:44:45Z | E8-03012 | 0 | 0 | 09000064803b79c7 |
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;