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 = "Proposed Rule" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, 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-2019-0009-0167 | DOE | DOE FDMS Dump File DOE-HQ-2019-0009 | UA: Reg Flex Agenda | Proposed Rule | 2019-12-26T05:00:00Z | 2019 | 12 | 2019-12-26T05:00:00Z | 2019-12-27T14:29:18Z | 2019-26536 | 0 | 0 | 090000648424ff5b | ||
| DOE-HQ-2019-0044-0001 | DOE | Assistance to Foreign Atomic Energy Activities DOE-HQ-2019-0044 | Assistance to Foreign Atomic Energy Activities | Proposed Rule | 2019-11-04T05:00:00Z | 2019 | 11 | 2019-11-04T05:00:00Z | 2019-12-05T04:59:59Z | 2019-12-22T14:47:32Z | 2019-23922 | 0 | 0 | 090000648411a036 | |
| DOE-HQ-2019-0037-0001 | DOE | Elemental Mercury Storage Fees DOE-HQ-2019-0037 | Elemental Mercury Storage Fees | Proposed Rule | 2019-10-04T04:00:00Z | 2019 | 10 | 2019-10-04T04:00:00Z | 2019-10-26T03:59:59Z | 2019-10-28T15:47:54Z | 2019-21536 | 0 | 0 | 090000648401fd3f | |
| DOE-HQ-2019-0043-0001 | DOE | Assistance to Foreign Atomic Energy Activities DOE-HQ-2019-0043 | Assistance to Foreign Atomic Energy Activities | Proposed Rule | 2019-10-03T04:00:00Z | 2019 | 10 | 2019-10-03T04:00:00Z | 2019-11-05T04:59:59Z | 2022-06-25T01:00:49Z | 2019-21301 | 0 | 0 | 090000648400ea2b | |
| DOE-HQ-2020-0002-0001 | DOE | Petition for Rulemaking: Regulations Prohibiting Issuance, Reliance, or Defense of Improper Agency Guidance DOE-HQ-2020-0002 | Petition for Rulemaking: Regulations Prohibiting Issuance, Reliance, or Defense of Improper Agency Guidance | Proposed Rule | 2019-09-26T04:00:00Z | 2019 | 9 | 2019-09-26T04:00:00Z | 2019-12-27T04:59:59Z | 2020-01-06T17:01:56Z | 2019-20540 | 0 | 0 | 0900006483fcad98 | |
| DOE-OHA-2019-0024-0001 | DOE | Revisions to the Office of Hearings and Appeals Procedural Regulations DOE-OHA-2019-0024 | 2019-08-15 Revisions to the Office of Hearings and Appeals Procedural Regulations | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2019-08-15T04:00:00Z | 2019 | 8 | 2019-08-15T04:00:00Z | 2019-09-17T03:59:59Z | 2019-08-22T19:52:59Z | 2019-17207 | 0 | 0 | 0900006483e53b15 |
| DOE-HQ-2019-0041-0001 | DOE | Development of Nuclear Energy Technologies and Collaboration with States on Nuclear Development, Notice of Petitions for Rulemaking DOE-HQ-2019-0041 | Development of Nuclear Energy Technologies and Collaboration with States on Nuclear Development, Notice of Petitions for Rulemaking | Proposed Rule | 2019-08-15T04:00:00Z | 2019 | 8 | 2019-08-15T04:00:00Z | 2019-11-14T04:59:59Z | 2019-11-14T19:39:01Z | 2019-17205 | 0 | 0 | 0900006483e53a61 | |
| DOE-OHA-2019-0017-0001 | DOE | Revisions to the DOE Contractor Employee Protection Program DOE-OHA-2019-0017 | 2019-04-30 Revisions to the DOE Contractor Employee Protection Program; Notice of proposed rulemaking and request for comments | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2019-04-30T04:00:00Z | 2019 | 4 | 2019-04-30T04:00:00Z | 2019-05-31T03:59:59Z | 2019-06-04T01:04:53Z | 2019-08599 | 0 | 0 | 0900006483c1c839 |
| DOE-HQ-2019-0009-0059 | DOE | DOE FDMS Dump File DOE-HQ-2019-0009 | Acquisition Regulation: Patents, Data and Copyrights; Withdrawal | Proposed Rule | 2019-04-19T04:00:00Z | 2019 | 4 | 2019-04-19T04:00:00Z | 2019-05-01T14:39:28Z | 2019-07913 | 0 | 0 | 0900006483bc4b8a |
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;