documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "DOE", document_type = "Rule" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| DOE-HQ-2008-0020-0001 | DOE | Advanced Technology Vehicles Manufacturing Incentive Program DOE-HQ-2008-0020 | Advanced Technology Vehicles Manufacturing Incentive Program | Rule | 2008-11-12T05:00:00Z | 2008 | 11 | 2008-11-12T05:00:00Z | 2008-12-13T04:59:59Z | 2014-01-18T15:29:13Z | E8-26832 | 0 | 0 | 09000064807a4e8a | |
| DOE-2008-0002-0003 | DOE | Coordination of Federal Authorizations for Electric Transmission Facilities DOE-2008-0002 | Coordination of Federal Authorizations for Electric Transmission Facilities | Rule | 2008-09-19T04:00:00Z | 2008 | 9 | 2008-09-19T04:00:00Z | 2008-10-21T03:59:59Z | 2011-06-13T17:05:44Z | E8-21866 | 0 | 0 | 090000648070f5b5 | |
| DOE-2007-0003-0004 | DOE | Identification and Protection of Unclassified Controlled Nuclear Information DOE-2007-0003 | Identification and Protection of Unclassified Controlled Nuclear Information | Rule | 2008-06-10T04:00:00Z | 2008 | 6 | 2008-06-10T04:00:00Z | 2014-01-17T22:16:51Z | E8-12978 | 0 | 0 | 090000648061be79 | ||
| DOE-2008-0004-0001 | DOE | Defense Priorities and Allocations System DOE-2008-0004 | Defense Priorities and Allocations System | Rule | 2008-02-29T05:00:00Z | 2008 | 2 | 2008-02-29T05:00:00Z | 2008-04-01T03:59:59Z | 2014-01-17T20:41:35Z | E8-03773 | 0 | 0 | 09000064803d505e | |
| DOE-HQ-2009-0005-0001 | DOE | Workplace Substance Abuse Programs at DOE Sites DOE-HQ-2009-0005 | Workplace Substance Abuse Programs at DOE Sites | Rule | 2008-01-23T05:00:00Z | 2008 | 1 | 2008-01-23T05:00:00Z | 2014-01-18T17:25:01Z | E8-01084 | 0 | 0 | 09000064803a0d62 | ||
| DOE-2007-0002-0050 | DOE | Loan Guarantees for Projects that Employ Innovative Technologies DOE-2007-0002 | Loan Guarantees for Projects That Employ Innovative Technologies | Rule | 2008-01-11T05:00:00Z | 2008 | 1 | 2008-01-11T05:00:00Z | 2011-06-11T17:08:22Z | E8-00325 | 0 | 0 | 090000648039935d |
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;