documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "DOE", document_type = "Proposed Rule" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_date, posted_month, comment_start_date, 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-2015-0003-0010 | DOE | This docket contains Federal Register Notices from the DOE FDMS Sandbox. DOE-HQ-2015-0003 | Convention on Supplementary Compensation for Nuclear Damage Contingent Cost Allocation | Proposed Rule | 2014-12-17T05:00:00Z | 2014 | 12 | 2014-12-17T05:00:00Z | 2015-03-18T03:59:59Z | 2015-03-08T20:54:38Z | 2014-29434 | 0 | 0 | 090000648197e98d | |
| DOE-HQ-2014-0001-0113 | DOE | This docket contains Federal Register Notices from the DOE FDMS Sandbox. DOE-HQ-2014-0001 | Reducing Regulatory Burden | Proposed Rule | 2014-07-03T04:00:00Z | 2014 | 7 | 2014-07-03T04:00:00Z | 2014-07-19T03:59:59Z | 2014-07-25T16:01:17Z | 2014-15644 | 0 | 0 | 090000648178eb9d | |
| DOE-HQ-2014-0001-0089 | DOE | This docket contains Federal Register Notices from the DOE FDMS Sandbox. DOE-HQ-2014-0001 | Energy Standard for Buildings, Except Low-Rise Residential Buildings: Preliminary Determination Regarding Energy Efficiency Improvements in ANSI/ASHRAE/IES Standard 90.1-2013 | Proposed Rule | 2014-05-15T04:00:00Z | 2014 | 5 | 2014-05-15T04:00:00Z | 2014-06-17T03:59:59Z | 2014-07-11T23:09:23Z | 2014-11218 | 0 | 0 | 09000064816fbf9f | |
| DOE-HQ-2014-0001-0135 | DOE | This docket contains Federal Register Notices from the DOE FDMS Sandbox. DOE-HQ-2014-0001 | Administrative Requirements for Grants and Cooperative Agreements | Proposed Rule | 2014-05-15T04:00:00Z | 2014 | 5 | 2014-05-15T04:00:00Z | 2014-07-15T03:59:59Z | 2014-08-13T17:27:22Z | 2014-11117 | 0 | 0 | 09000064816fc5a4 | |
| DOE-HQ-2014-0005-0001 | DOE | Acquisition Regulations: Contractor Business Systems; Definition and Administration DOE-HQ-2014-0005 | Acquisition Regulations: Contractor Business Systems; Definition and Administration | Proposed Rule | 2014-04-01T04:00:00Z | 2014 | 4 | 2014-04-01T04:00:00Z | 2014-06-03T03:59:59Z | 2014-06-03T16:51:46Z | 2014-07086 | 0 | 0 | 0900006481694b24 | |
| DOE-HQ-2011-0035-0082 | DOE | Assistance to Foreign Atomic Energy Activities DOE-HQ-2011-0035 | Assistance to Foreign Atomic Energy Activities | Proposed Rule | 2014-03-25T04:00:00Z | 2014 | 3 | 2014-03-25T04:00:00Z | 2014-04-03T03:59:59Z | 2016-01-30T21:12:43Z | 2014-06547 | 0 | 0 | 090000648167c8cb | |
| DOE-HQ-2014-0001-0210 | DOE | This docket contains Federal Register Notices from the DOE FDMS Sandbox. DOE-HQ-2014-0001 | Energy Conservation Program: Energy Conservation Standards for Commercial and Industrial Electric Motors | Proposed Rule | 2014-02-14T05:00:00Z | 2014 | 2 | 2014-02-14T05:00:00Z | 2014-12-15T16:03:37Z | C1-2013-28776 | 0 | 0 | 09000064815661b6 | ||
| DOE-HQ-2014-0001-0263 | DOE | This docket contains Federal Register Notices from the DOE FDMS Sandbox. DOE-HQ-2014-0001 | Semiannual Regulatory Agenda | Proposed Rule | 2014-01-07T05:00:00Z | 2014 | 1 | 2014-01-07T05:00:00Z | 2015-08-13T13:55:00Z | 2013-29631 | 0 | 0 | 09000064814f137f |
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;