documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "DOE", document_type = "Rule" and posted_year = 2016 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-2016-0002-0240 | DOE | This docket contains Federal Register Notices from the DOE FDMS Sandbox. DOE-HQ-2016-0002 | Inflation Adjustment of Civil Monetary Penalties | Rule | 2016-12-30T05:00:00Z | 2016 | 12 | 2016-12-30T05:00:00Z | 2017-01-19T20:22:44Z | 2016-31035 | 0 | 0 | 090000648244148c | ||
| DOE-HQ-2017-0001-0015 | DOE | This docket contains Federal Register Notices from the DOE FDMS Sandbox. DOE-HQ-2017-0001 | Procedural Rules for Nuclear Activities | Rule | 2016-12-27T05:00:00Z | 2016 | 12 | 2016-12-27T05:00:00Z | 2017-02-10T15:56:17Z | 2016-31150 | 0 | 0 | 0900006482437344 | ||
| DOE-HQ-2016-0002-0246 | DOE | This docket contains Federal Register Notices from the DOE FDMS Sandbox. DOE-HQ-2016-0002 | Freedom of Information Act Regulations; Revisions | Rule | 2016-12-27T05:00:00Z | 2016 | 12 | 2016-12-27T05:00:00Z | 2017-01-27T18:17:04Z | 2016-31337 | 0 | 0 | 09000064824373d4 | ||
| DOE-HQ-2017-0001-0003 | DOE | This docket contains Federal Register Notices from the DOE FDMS Sandbox. DOE-HQ-2017-0001 | Loan Guarantees for Projects that Employ Innovative Technologies | Rule | 2016-12-15T05:00:00Z | 2016 | 12 | 2016-12-15T05:00:00Z | 2017-02-03T18:45:45Z | 2016-30006 | 0 | 0 | 090000648240b6ba | ||
| DOE-HQ-2016-0002-0195 | DOE | This docket contains Federal Register Notices from the DOE FDMS Sandbox. DOE-HQ-2016-0002 | Procedures for Determining Eligibility for Access toClassified Matter or Special Nuclear Material | Rule | 2016-10-17T04:00:00Z | 2016 | 10 | 2016-10-17T04:00:00Z | 2016-11-10T19:00:32Z | 2016-24469 | 0 | 0 | 09000064823030bf | ||
| DOE-HQ-2016-0002-0215 | DOE | This docket contains Federal Register Notices from the DOE FDMS Sandbox. DOE-HQ-2016-0002 | Coordination of Federal Authorizations for Electric Transmission Facilities | Rule | 2016-09-28T04:00:00Z | 2016 | 9 | 2016-09-28T04:00:00Z | 2016-12-05T20:33:52Z | 2016-23285 | 0 | 0 | 090000648227b234 | ||
| DOE-HQ-2016-0030-0025 | DOE | Department of Energy Property Management Regulations DOE-HQ-2016-0030 | Department of Energy Property Management Regulations | Rule | 2016-09-14T04:00:00Z | 2016 | 9 | 2016-09-14T04:00:00Z | 2018-12-28T16:50:00Z | 2016-21309 | 0 | 0 | 090000648220a108 | ||
| DOE-HQ-2016-0002-0146 | DOE | This docket contains Federal Register Notices from the DOE FDMS Sandbox. DOE-HQ-2016-0002 | Applications and Authorizations for the In-Transit Movement of Natural Gas: Revised Procedures | Rule | 2016-08-30T04:00:00Z | 2016 | 8 | 2016-08-30T04:00:00Z | 2016-09-09T18:25:06Z | 2016-20802 | 0 | 0 | 09000064821ae07b | ||
| DOE-HQ-2016-0002-0157 | DOE | This docket contains Federal Register Notices from the DOE FDMS Sandbox. DOE-HQ-2016-0002 | Acquisition Regulations | Rule | 2016-07-15T04:00:00Z | 2016 | 7 | 2016-07-15T04:00:00Z | 2016-09-14T16:26:30Z | 2016-16768 | 0 | 0 | 09000064820b3db0 | ||
| DOE-HQ-2016-0002-0142 | DOE | This docket contains Federal Register Notices from the DOE FDMS Sandbox. DOE-HQ-2016-0002 | Inflation Adjustments of Civil Monetary Penalties | Rule | 2016-06-28T04:00:00Z | 2016 | 6 | 2016-06-28T04:00:00Z | 2016-07-29T03:59:59Z | 2016-08-22T16:58:19Z | 2016-15148 | 0 | 0 | 090000648207412e |
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;