documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "EPA-HQ-RCRA-2000-0062" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, last_modified, 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-RCRA-2000-0062-0033 | EPA | None EPA-HQ-RCRA-2000-0062 | Names and Locations for 201 Sites in 3MRA Model Version 0.98r [F-2000-WH2A-S0003] | Supporting & Related Material | Other | 2000-08-03T04:00:00Z | 2000 | 8 | 2006-10-23T20:14:11Z | 0 | 0 | 09000064800e0810 | |||
| EPA-HQ-RCRA-2000-0062-0035 | EPA | None EPA-HQ-RCRA-2000-0062 | Three CDs: (1) 3MRA System Version 0.98r with Results, (2) 3MRA Version 0.98r mdb Files for 36 Chemicals; Aerated Tanks, Land Application Units, and Landfills, (3) 3MRA Version 0.98r mdb Files for 36 Chemicals; Surface Impoundments and Waste Piles [F-2000-WH2A-S0005] | Supporting & Related Material | Other | 2000-08-03T04:00:00Z | 2000 | 8 | 2006-10-23T20:14:11Z | 0 | 0 | 09000064800e081f | |||
| EPA-HQ-RCRA-2000-0062-0034 | EPA | None EPA-HQ-RCRA-2000-0062 | Letter to Dorothy Kellogg, CMAHQ, from Stephen Kroner, USEPA, re: HWIR Peer Review Plans [F-2000-WH2A-0004] | Supporting & Related Material | Letter, Memorandum, Email | 2000-08-03T04:00:00Z | 2000 | 8 | 2006-10-23T20:14:11Z | 0 | 0 | 09000064800e0814 | |||
| EPA-HQ-RCRA-2000-0062-0032 | EPA | None EPA-HQ-RCRA-2000-0062 | Summary of Modifications to the Multimedia, Multipathway and Multireceptor Risk Assessment (3MRA) Model, Versions 0.93 through 0.98r [F-2000-WH2A-S0002] | Supporting & Related Material | Other | 2000-07-19T04:00:00Z | 2000 | 7 | 2006-10-23T20:14:11Z | 0 | 0 | 09000064800e0809 | |||
| EPA-HQ-RCRA-2000-0062-0001 | EPA | None EPA-HQ-RCRA-2000-0062 | Hazardous Waste Identification Rule (HWIR): Identification and Listing of Hazardous Wastes; Notice of Data Availability and Request for Comments [F-2000-WH2A-FFFFF] | Proposed Rule | Federal Register Document | 2000-07-18T04:00:00Z | 2000 | 7 | 2025-06-27T20:44:04Z | 44491 | 0 | 0 | 09000064800e07a9 |
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;