documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "EPA-HQ-RCRA-2000-0056" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, last_modified, 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-RCRA-2000-0056-0017 | EPA | None EPA-HQ-RCRA-2000-0056 | Screening Level Ecological Risk Assessment Protocol for Hazardous Waste Combustion Facilities, Volume I. [EPA530-D-99-001A] (part 3 of 3 | Supporting & Related Material | Publication | 2000-02-11T05:00:00Z | 2000 | 2 | 2006-10-23T20:07:42Z | 0 | 0 | 09000064800dfe9b | |||
| EPA-HQ-RCRA-2000-0056-0018 | EPA | None EPA-HQ-RCRA-2000-0056 | Screening Level Ecological Risk Assessment Protocol for Hazardous Waste Combustion Facilities, Volume II, Appendix A. [EPA530-D-99-001B] | Supporting & Related Material | Publication | 2000-02-11T05:00:00Z | 2000 | 2 | 2006-10-23T20:07:42Z | 0 | 0 | 09000064800dfea1 | |||
| EPA-HQ-RCRA-2000-0056-0016 | EPA | None EPA-HQ-RCRA-2000-0056 | Screening Level Ecological Risk Assessment Protocol for Hazardous Waste Combustion Facilites, Volume I. [EPA530-D-99-001A] (part 2 of 3) | Supporting & Related Material | Publication | 2000-02-11T05:00:00Z | 2000 | 2 | 2006-10-23T20:07:42Z | 0 | 0 | 09000064800dfe95 | |||
| EPA-HQ-RCRA-2000-0056-0023 | EPA | None EPA-HQ-RCRA-2000-0056 | Screening Level Ecological Risk Assessment Protocol for Hazardous Waste Combustion Facilities, Volume III, Appendices G-H, [EPA530-D-99-001C] (part 5 of 5) | Supporting & Related Material | Publication | 2000-02-11T05:00:00Z | 2000 | 2 | 2006-10-23T20:07:42Z | 0 | 0 | 09000064800dfebb | |||
| EPA-HQ-RCRA-2000-0056-0001 | EPA | None EPA-HQ-RCRA-2000-0056 | Notice of Availability: Announcing the Availability of a New Draft Guidance Document entitled Screening Level Ecological Risk Assessment Protocol for Hazardous Waste Combustion Facilities | Notice | Federal Register Document | 2000-02-11T05:00:00Z | 2000 | 2 | 2000-02-11T05:00:00Z | 2000-08-10T03:59:59Z | 2008-01-08T21:13:32Z | 7012 | 0 | 0 | 09000064800dfe44 |
| EPA-HQ-RCRA-2000-0056-0020 | EPA | None EPA-HQ-RCRA-2000-0056 | Screening Level Ecological Risk Assessment Protocol for Hazardous Waste Combustion Facilities, Volume III, Appendix C, [EPA-530-D-99-001C] (part 2 of 5) | Supporting & Related Material | Publication | 2000-02-11T05:00:00Z | 2000 | 2 | 2006-10-23T20:07:42Z | 0 | 0 | 09000064800dfead | |||
| EPA-HQ-RCRA-2000-0056-0022 | EPA | None EPA-HQ-RCRA-2000-0056 | Screening Level Ecological Risk Assessment Protocol for Hazardous Waste Combustion Facilities, Volume III, Appendix F, [EPA530-D-99-001C] (part 4 of 5) | Supporting & Related Material | Publication | 2000-02-11T05:00:00Z | 2000 | 2 | 2006-10-23T20:07:42Z | 0 | 0 | 09000064800dfeb6 | |||
| EPA-HQ-RCRA-2000-0056-0015 | EPA | None EPA-HQ-RCRA-2000-0056 | Screening Level Ecological Risk Assessment Protocol for Hazardous Waste Combustion Facilities, Volume I. [EPA530-D-99-001A] (part 1 of 3) | Supporting & Related Material | Publication | 2000-02-11T05:00:00Z | 2000 | 2 | 2006-10-23T20:07:42Z | 0 | 0 | 09000064800dfe8f | |||
| EPA-HQ-RCRA-2000-0056-0019 | EPA | None EPA-HQ-RCRA-2000-0056 | Screening Level Ecological Risk Assessment Protocol for Hazardous Waste Combustion Facilities, Volume III, Appendix B, [EPA530-D-99-001C] (part 1 of 5) | Supporting & Related Material | Publication | 2000-02-11T05:00:00Z | 2000 | 2 | 2006-10-23T20:07:42Z | 0 | 0 | 09000064800dfea8 | |||
| EPA-HQ-RCRA-2000-0056-0021 | EPA | None EPA-HQ-RCRA-2000-0056 | Screening Level Ecological Risk Assessment Protocol for Hazardous Waste Combustion Facilities, Volume III, Appendices D-E, [EPA530-D-99-001C] (part 3 of 5) | Supporting & Related Material | Publication | 2000-02-11T05:00:00Z | 2000 | 2 | 2006-10-23T20:07:42Z | 0 | 0 | 09000064800dfeb1 |
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;