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 = "Rule" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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-2015-0003-0233 | DOE | This docket contains Federal Register Notices from the DOE FDMS Sandbox. DOE-HQ-2015-0003 | Worker Safety and Health Program | Rule | 2015-11-10T05:00:00Z | 2015 | 11 | 2015-11-10T05:00:00Z | 2015-11-23T21:03:03Z | 2015-28575 | 0 | 0 | 0900006481d2def8 | ||
| DOE-HQ-2015-0003-0239 | DOE | This docket contains Federal Register Notices from the DOE FDMS Sandbox. DOE-HQ-2015-0003 | Acquisition Regulations: Export Control | Rule | 2015-10-23T04:00:00Z | 2015 | 10 | 2015-10-23T04:00:00Z | 2015-12-18T16:26:51Z | 2015-26476 | 0 | 0 | 0900006481ce4c82 | ||
| DOE-HQ-2015-0003-0213 | 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 | Rule | 2015-09-24T04:00:00Z | 2015 | 9 | 2015-09-24T04:00:00Z | 2015-10-30T20:30:44Z | 2015-24276 | 0 | 0 | 0900006481c927aa | ||
| DOE-HQ-2012-0002-0032 | DOE | Protective Force Personnel Medical, Physical Readiness, Training, and Access Authorization Standards DOE-HQ-2012-0002 | Medical, Physical Readiness, Training, and Access Authorization Standards for Protective Force Personnel | Rule | 2015-09-22T04:00:00Z | 2015 | 9 | 2015-09-22T04:00:00Z | 2015-10-20T18:14:25Z | 2015-24083 | 0 | 0 | 0900006481c8b392 | ||
| DOE-HQ-2015-0003-0199 | DOE | This docket contains Federal Register Notices from the DOE FDMS Sandbox. DOE-HQ-2015-0003 | Administrative Requirements for Grants and Cooperative Agreements | Rule | 2015-09-03T04:00:00Z | 2015 | 9 | 2015-09-03T04:00:00Z | 2015-10-20T21:06:22Z | 2015-21693 | 0 | 0 | 0900006481c5334a | ||
| DOE-HQ-2015-0003-0113 | DOE | This docket contains Federal Register Notices from the DOE FDMS Sandbox. DOE-HQ-2015-0003 | Authority of DOE Protective Force Officers That are Federal Employees To Make Arrests Without a Warrant for Certain Crimes | Rule | 2015-04-29T04:00:00Z | 2015 | 4 | 2015-04-29T04:00:00Z | 2015-06-29T20:42:01Z | 2015-10042 | 0 | 0 | 0900006481ac202b | ||
| DOE-HQ-2015-0003-0104 | DOE | This docket contains Federal Register Notices from the DOE FDMS Sandbox. DOE-HQ-2015-0003 | Acquisition Regulations: Technical and Administrative Changes | Rule | 2015-03-24T04:00:00Z | 2015 | 3 | 2015-03-24T04:00:00Z | 2015-06-29T15:30:51Z | 2015-06572 | 0 | 0 | 0900006481a5cd1f | ||
| DOE-HQ-2015-0003-0136 | DOE | This docket contains Federal Register Notices from the DOE FDMS Sandbox. DOE-HQ-2015-0003 | Transfer of Office Functions | Rule | 2015-01-30T05:00:00Z | 2015 | 1 | 2015-01-30T05:00:00Z | 2015-08-18T13:49:13Z | 2015-01778 | 0 | 0 | 09000064819e8cd2 |
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;