documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-HQ-OAR-2005-0083" and posted_year = 2007 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, posted_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| EPA-HQ-OAR-2005-0083-0402 | EPA | Amendment of 40 CFR Part 197, the Public Health and Environmental Radiation Protection Standards for Yucca Mountain, NV Legacy Docket ID #: A-95-12 EPA-HQ-OAR-2005-0083 | Prepared Statement of Robert Fri to the Senate Environment and Public Works Committee, March 1, 2006 | Supporting & Related Material | Public Hearing Transcript, Deposition, Testimony | 2007-06-20T04:00:00Z | 2007 | 6 | 2007-06-20T15:02:43Z | 0 | 0 | 0900006480253df1 | |||
| EPA-HQ-OAR-2005-0083-0400 | EPA | Amendment of 40 CFR Part 197, the Public Health and Environmental Radiation Protection Standards for Yucca Mountain, NV Legacy Docket ID #: A-95-12 EPA-HQ-OAR-2005-0083 | Quality Assurance Audit Report (QAAR-3-06) | Supporting & Related Material | Report | 2007-05-17T04:00:00Z | 2007 | 5 | 2007-05-17T18:31:43Z | 0 | 0 | 090000648023ddf9 | |||
| EPA-HQ-OAR-2005-0083-0398 | EPA | Amendment of 40 CFR Part 197, the Public Health and Environmental Radiation Protection Standards for Yucca Mountain, NV Legacy Docket ID #: A-95-12 EPA-HQ-OAR-2005-0083 | EPA Uncertainty Model Player DVD | Supporting & Related Material | Fact/Data Sheet | 2007-03-20T04:00:00Z | 2007 | 3 | 2013-07-29T16:28:10Z | 0 | 0 | 0900006480216bd5 | |||
| EPA-HQ-OAR-2005-0083-0397 | EPA | Amendment of 40 CFR Part 197, the Public Health and Environmental Radiation Protection Standards for Yucca Mountain, NV Legacy Docket ID #: A-95-12 EPA-HQ-OAR-2005-0083 | Estimating Radiogenic Cancer Risks (1994) [EPA 402-R-93-076] | Supporting & Related Material | Publication - USEPA | 2007-01-23T05:00:00Z | 2007 | 1 | 2007-01-23T15:04:53Z | 0 | 0 | 09000064801f51e4 | |||
| EPA-HQ-OAR-2005-0083-0395 | EPA | Amendment of 40 CFR Part 197, the Public Health and Environmental Radiation Protection Standards for Yucca Mountain, NV Legacy Docket ID #: A-95-12 EPA-HQ-OAR-2005-0083 | Nuclear Waste Technical Review Board: June 2006 Report to the U.S. Congress and Secretary of Energy | Supporting & Related Material | Report | 2007-01-08T05:00:00Z | 2007 | 1 | 2007-01-08T14:05:28Z | 0 | 0 | 09000064801f222d | |||
| EPA-HQ-OAR-2005-0083-0394 | EPA | Amendment of 40 CFR Part 197, the Public Health and Environmental Radiation Protection Standards for Yucca Mountain, NV Legacy Docket ID #: A-95-12 EPA-HQ-OAR-2005-0083 | Bone Cancer Risk Estimates | Supporting & Related Material | Publication - Copyrighted Materials | 2007-01-03T05:00:00Z | 2007 | 1 | 2011-11-02T16:28:50Z | 0 | 0 | 09000064801f0dd5 |
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;