documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-HQ-RCRA-2000-0047" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, 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-0047-0001 | EPA | None EPA-HQ-RCRA-2000-0047 | Deferral of Phase IV Standards for PCBs as an Underlying Hazardous Constituent in Soil | Proposed Rule | Federal Register Document | 2000-02-16T05:00:00Z | 2000 | 2 | 2000-02-16T05:00:00Z | 2000-04-04T03:59:59Z | 2008-01-08T21:15:06Z | 7809 | 0 | 0 | 09000064800e06e3 |
| EPA-HQ-RCRA-2000-0047-0014 | EPA | None EPA-HQ-RCRA-2000-0047 | Memorandum to Timothy Fischer, USEPA, from Duncan Campbell, USEPA, Re: Land Disposal Restiction (LDR) Concern for Corps of Engineers [F-2000-PCBP-S0004] | Supporting & Related Material | Letter, Memorandum, Email | 2000-01-03T05:00:00Z | 2000 | 1 | 2006-10-23T20:13:41Z | 0 | 0 | 09000064800e070a | |||
| EPA-HQ-RCRA-2000-0047-0018 | EPA | None EPA-HQ-RCRA-2000-0047 | Letter to Leo Arbaugh, from Duncan Campbell, USEPA, Re: IN-SITU Treatment [F-2000-PCBP-S0008] | Supporting & Related Material | Letter, Memorandum, Email | 2000-01-03T05:00:00Z | 2000 | 1 | 2006-10-23T20:13:41Z | 0 | 0 | 09000064800e0714 | |||
| EPA-HQ-RCRA-2000-0047-0015 | EPA | None EPA-HQ-RCRA-2000-0047 | Letter to Steven E. Silverman, Esp. Office of General Counsel, USEPA, from Philip L. Comella, Seyfarth, Shaw, Fairweather & Geraldson, Re: Phase IV-PCB/TC Metal Waste [F-2000-PCBP-S0005] | Supporting & Related Material | Letter, Memorandum, Email | 2000-01-03T05:00:00Z | 2000 | 1 | 2006-10-23T20:13:41Z | 0 | 0 | 09000064800e070c | |||
| EPA-HQ-RCRA-2000-0047-0012 | EPA | None EPA-HQ-RCRA-2000-0047 | Memorandum to Sue Slotnick, USEPA, from Duncan Campbell, USEPA, Re: Dilution as a means to Avoid Treatment of PCBs via the use of Concrete [F-2000-PCBP-S0002] | Supporting & Related Material | Letter, Memorandum, Email | 2000-01-03T05:00:00Z | 2000 | 1 | 2006-10-23T20:13:41Z | 0 | 0 | 09000064800e0706 | |||
| EPA-HQ-RCRA-2000-0047-0016 | EPA | None EPA-HQ-RCRA-2000-0047 | Memorandum to Robin Anderson, USEPA, from Duncan Campbell, USEPA, Re: Clarification [F-2000-PCBP-S0006] | Supporting & Related Material | Letter, Memorandum, Email | 2000-01-03T05:00:00Z | 2000 | 1 | 2006-10-23T20:13:41Z | 0 | 0 | 09000064800e070f | |||
| EPA-HQ-RCRA-2000-0047-0017 | EPA | None EPA-HQ-RCRA-2000-0047 | Memorandum to Dawn Messier, USEPA, from Duncan Campbell, USEPA, Re: Lead and PCB Soil [F-2000-PCBP-S0007] | Supporting & Related Material | Letter, Memorandum, Email | 2000-01-03T05:00:00Z | 2000 | 1 | 2006-10-23T20:13:41Z | 0 | 0 | 09000064800e0712 | |||
| EPA-HQ-RCRA-2000-0047-0011 | EPA | None EPA-HQ-RCRA-2000-0047 | Memorandum to Docket F-2000-PCBP-FFFF, from Ernesto Brown, CAPB, USEPA, Re: Deferral of Phase IV Standards for PCB's as an Underlying Hazardous Constituent in Soil [F-2000-PCBP-S0001] | Supporting & Related Material | Letter, Memorandum, Email | 2000-01-03T05:00:00Z | 2000 | 1 | 2006-10-23T20:13:41Z | 0 | 0 | 09000064800e0704 | |||
| EPA-HQ-RCRA-2000-0047-0013 | EPA | None EPA-HQ-RCRA-2000-0047 | Letter to Ernie Brown, USEPA, from Timothy Fishcher, USEPA, Re: Phase IV Rule Impact at the Summit Equipment & Supply Site in Akron, Ohio [F-2000-PCBP-S0003] | Supporting & Related Material | Letter, Memorandum, Email | 2000-01-03T05:00:00Z | 2000 | 1 | 2006-10-23T20:13:41Z | 0 | 0 | 09000064800e0707 |
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;