documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "EPA-HQ-OAR-2001-0007" and posted_year = 1995 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| EPA-HQ-OAR-2001-0007-0029 | EPA | Public Health and Environmental Radiation Protection Standards for Yucca Mountain, Nevada Legacy Docket ID #: A-95-12 EPA-HQ-OAR-2001-0007 | Environmental Radiation Protection Standards for Yucca Mountain, NV: Notice of Availability, Request for Comments, and Announcement of Public Meeting [A-95-12-I-1] | Proposed Rule | Federal Register Document | 1995-09-11T04:00:00Z | 1995 | 9 | 1995-09-11T04:00:00Z | 1995-10-27T03:59:59Z | 2025-06-20T22:21:24Z | 47172 | 0 | 0 | 09000064800e28e3 |
| EPA-HQ-OAR-2001-0007-0001 | EPA | Public Health and Environmental Radiation Protection Standards for Yucca Mountain, Nevada Legacy Docket ID #: A-95-12 EPA-HQ-OAR-2001-0007 | Technical Bases for Yucca Mountain Standards [A-95-12-II-A-1] | Supporting & Related Material | Report | 1995-08-29T04:00:00Z | 1995 | 8 | 2017-04-19T16:47:41Z | 0 | 0 | 09000064800e2722 | |||
| EPA-HQ-OAR-2001-0007-0039 | EPA | Public Health and Environmental Radiation Protection Standards for Yucca Mountain, Nevada Legacy Docket ID #: A-95-12 EPA-HQ-OAR-2001-0007 | Preparation of an Environmental Impact Statement for a Geologic Repository for Disposal of Spent Nuclear Fuel and High-level Radioactive Waste at Yucca Mountain, Nye County, NV [A-95-12-III-C-9] | Notice | Federal Register Document | 1995-08-07T04:00:00Z | 1995 | 8 | 1995-08-07T04:00:00Z | 1995-12-06T04:59:59Z | 2025-06-20T22:38:21Z | 40164 | 0 | 0 | 09000064800e2976 |
| EPA-HQ-OAR-2001-0007-0111 | EPA | Public Health and Environmental Radiation Protection Standards for Yucca Mountain, Nevada Legacy Docket ID #: A-95-12 EPA-HQ-OAR-2001-0007 | Response to comments regarding Public Health and Environmental Radiation Protection Standards for Yucca Mountain, Nevada (40 CFR Part 197) Final Rule (Part 5 of 5) [A-95-12-V-C-1] | Supporting & Related Material | Comment Response | 1995-06-13T04:00:00Z | 1995 | 6 | 2017-04-19T21:11:38Z | 0 | 0 | 09000064800e2d93 |
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;