documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "DOE", document_type = "Rule" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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-HQ-2015-0003-0011 | DOE | This docket contains Federal Register Notices from the DOE FDMS Sandbox. DOE-HQ-2015-0003 | Uniform Administrative Requirements, Cost Principles, and Audit Requirements for Federal Awards: Federal Awarding Agency Regulatory Implementation | Rule | 2014-12-19T05:00:00Z | 2014 | 12 | 2014-12-19T05:00:00Z | 2015-02-18T04:59:59Z | 2015-03-08T21:17:05Z | 2014-28697 | 0 | 0 | 0900006481985f47 | |
| DOE-HQ-2014-0001-0256 | DOE | This docket contains Federal Register Notices from the DOE FDMS Sandbox. DOE-HQ-2014-0001 | Procedures for Changes in Control Affecting Applications and Authorizations to Import or Export Natural Gas | Rule | 2014-11-05T05:00:00Z | 2014 | 11 | 2014-11-05T05:00:00Z | 2015-01-12T19:53:44Z | 2014-25143 | 0 | 0 | 0900006481915495 | ||
| DOE-EERE-OT-2010-0007-0084 | DOE | Energy Efficiency and Sustainable Design Standards for New Federal Buildings (See also EERE-2006-BC-0108) [Legacy ID EE-RM/STD-02-112] DOE-EERE-OT-2010-0007 | 2014-10-14 Green Building Certification Systems for Federal Buildings; Final Rule. | Rule | 2014-10-14T04:00:00Z | 2014 | 10 | 2014-10-14T13:50:05Z | 2014-24150 | 0 | 0 | 09000064818bcb1c | |||
| DOE-HQ-2014-0001-0195 | DOE | This docket contains Federal Register Notices from the DOE FDMS Sandbox. DOE-HQ-2014-0001 | Final Principles of Integrated Resource Planning for Use in Resource Acquisition and Transmission Planning | Rule | 2014-09-22T04:00:00Z | 2014 | 9 | 2014-09-22T04:00:00Z | 2014-12-04T15:34:09Z | 2014-22367 | 0 | 0 | 0900006481885b99 | ||
| DOE-HQ-2014-0001-0196 | DOE | This docket contains Federal Register Notices from the DOE FDMS Sandbox. DOE-HQ-2014-0001 | Acquisition Regulation: Access to and Ownership of Records | Rule | 2014-09-19T04:00:00Z | 2014 | 9 | 2014-09-19T04:00:00Z | 2014-12-04T15:34:54Z | 2014-22283 | 0 | 0 | 090000648187ed8c | ||
| DOE-HQ-2008-0022-0016 | DOE | Revision of Department of Energy’s Freedom of Information Act Regulations DOE-HQ-2008-0022 | Freedom of Information Act Regulations; Revisions | Rule | 2014-04-25T04:00:00Z | 2014 | 4 | 2014-04-25T04:00:00Z | 2014-09-16T16:09:05Z | 2014-07449 | 0 | 0 | 09000064816cb3aa | ||
| DOE-HQ-2014-0001-0058 | DOE | This docket contains Federal Register Notices from the DOE FDMS Sandbox. DOE-HQ-2014-0001 | Alternative Fuel Transportation Program: Alternative Fueled Vehicle Credit Program Modification and Other Amendments | Rule | 2014-03-21T04:00:00Z | 2014 | 3 | 2014-03-21T04:00:00Z | 2014-05-07T18:17:02Z | 2014-06044 | 0 | 0 | 0900006481674c06 | ||
| DOE-HQ-2015-0003-0164 | DOE | This docket contains Federal Register Notices from the DOE FDMS Sandbox. DOE-HQ-2015-0003 | Energy Conservation Program: Test Procedures for Residential Furnace Fans | Rule | 2014-01-03T00:00:00Z | 2014 | 1 | 2015-08-20T13:19:21Z | 0 | 1 | 09000064814eaaba | ||||
| DOE-HQ-2014-0002-0001 | DOE | Inflation Adjustment of Civil Monetary Penalties DOE-HQ-2014-0002 | Inflation Adjustment of Civil Monetary Penalties | Rule | 2014-01-02T05:00:00Z | 2014 | 1 | 2014-01-02T05:00:00Z | 2014-02-03T22:47:02Z | 2013-31326 | 0 | 0 | 09000064814e7180 |
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;