documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "DOE", document_type = "Rule" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, posted_date (date), comment_start_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-2019-0037-0014 | DOE | Elemental Mercury Storage Fees DOE-HQ-2019-0037 | Elemental Mercury Management and Storage Fees | Rule | 2019-12-23T05:00:00Z | 2019 | 12 | 2019-12-23T05:00:00Z | 2019-12-23T16:16:40Z | 2019-27672 | 0 | 0 | 09000064842485d8 | ||
| DOE-HQ-2019-0039-0001 | DOE | Office of Hearings and Appeals Procedural Regulations DOE-HQ-2019-0039 | Office of Hearings and Appeals Procedural Regulations | Rule | 2019-10-30T04:00:00Z | 2019 | 10 | 2019-10-30T04:00:00Z | 2019-11-01T13:59:26Z | 2019-23509 | 0 | 0 | 090000648410943f | ||
| DOE-HQ-2019-0030-0001 | DOE | Inclusion of Early Stage Technology Demonstration in Authorized Technology Transfer Activities DOE-HQ-2019-0030 | Inclusion of Early Stage Technology Demonstration in Authorized Technology Transfer Activities | Rule | 2019-08-27T04:00:00Z | 2019 | 8 | 2019-08-27T04:00:00Z | 2019-08-27T13:20:10Z | 2019-18297 | 0 | 0 | 0900006483ecbc3a | ||
| DOE-OHA-2019-0017-0003 | DOE | Revisions to the DOE Contractor Employee Protection Program DOE-OHA-2019-0017 | 2019-08-02 Revisions to the DOE Contractor Employee Protection Program; Final rule | Rule | Final Rule | 2019-08-02T04:00:00Z | 2019 | 8 | 2019-08-02T04:00:00Z | 2019-08-02T13:29:55Z | 2019-16569 | 0 | 0 | 0900006483de7e3f | |
| DOE-HQ-2019-0015-0001 | DOE | Cost Sharing: Energy Policy Act DOE-HQ-2019-0015 | Cost Sharing: Energy Policy Act | Rule | 2019-04-01T04:00:00Z | 2019 | 4 | 2019-04-01T04:00:00Z | 2019-04-02T13:15:44Z | 2019-06263 | 0 | 0 | 0900006483b51394 | ||
| DOE-HQ-2019-0009-0038 | DOE | DOE FDMS Dump File DOE-HQ-2019-0009 | Strategic Petroleum Reserve Standard Sales Provisions | Rule | 2019-03-12T04:00:00Z | 2019 | 3 | 2019-03-12T04:00:00Z | 2019-04-12T15:22:46Z | 2019-04463 | 0 | 0 | 0900006483ad6d0f | ||
| DOE-HQ-2019-0013-0001 | DOE | Administrative Updates to Personnel References DOE-HQ-2019-0013 | Administrative Updates to Personnel References | Rule | 2019-02-21T05:00:00Z | 2019 | 2 | 2019-02-21T05:00:00Z | 2019-02-27T15:48:35Z | 2019-02805 | 0 | 0 | 0900006483a94098 |
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;