documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "DOE", document_type = "Proposed Rule" and posted_year = 2006 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_month, 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-2009-0003-0588 | DOE | This docket contains Federal Register Notices from the DOE FDMS Sandbox. DOE-HQ-2009-0003 | Semi-annual agenda | Proposed Rule | 2006-12-11T05:00:00Z | 2006 | 12 | 2006-12-11T05:00:00Z | 2009-07-10T16:38:45Z | 06-08150 | 0 | 0 | 09000064801eac45 | ||
| DOE-2006-0003-0001 | DOE | Procedural Rules for DOE Nuclear Activities and Occupational Radition Protection DOE-2006-0003 | Procedural Rules for DOE Nuclear Activities and Occupational Radiation Protection | Proposed Rule | 2006-08-10T21:49:36Z | 2006 | 8 | 2006-08-10T21:49:36Z | 2006-10-11T03:59:59Z | 2011-06-11T17:08:21Z | 06-06579 | 0 | 0 | 09000064801b3a6e | |
| DOE-HQ-2009-0013-0001 | DOE | Acquisition Regulation: Implementation of DOE’s Cooperative Audit Strategy for Its Management and Operating Contracts DOE-HQ-2009-0013 | Acquisition Regulation: Implementation of DOEs Cooperative Audit Strategy for Its Management and Operating Contracts | Proposed Rule | 2006-05-08T04:00:00Z | 2006 | 5 | 2006-05-08T04:00:00Z | 2011-06-11T17:08:37Z | E6-06736 | 0 | 0 | 090000648016d975 | ||
| DOE-2006-0001-0001 | DOE | Procedures for the Acquisition of Petroleum for the Strategic Petroleum Reserve DOE-2006-0001 | Procedures for the Acquisition of Petroleum for the Strategic Petroleum Reserve | Proposed Rule | 2006-04-24T14:34:25Z | 2006 | 4 | 2006-04-24T14:34:25Z | 2006-05-25T03:59:59Z | 2011-06-11T17:08:20Z | E6-06102 | 0 | 0 | 0900006480163bf1 | |
| DOE-HQ-2009-0003-0587 | DOE | This docket contains Federal Register Notices from the DOE FDMS Sandbox. DOE-HQ-2009-0003 | Semi-annual agenda | Proposed Rule | 2006-04-24T04:00:00Z | 2006 | 4 | 2006-04-24T04:00:00Z | 2009-07-10T16:38:13Z | 06-02951 | 0 | 0 | 0900006480163d02 |
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;