documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-HQ-ORD-2004-0018" and posted_year = 2005 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-ORD-2004-0018-0098 | EPA | None EPA-HQ-ORD-2004-0018 | Draft Air Quality Criteria for Lead | Notice | 2005-12-02T15:25:59Z | 2005 | 12 | 2005-12-01T15:25:59Z | 2006-02-16T04:59:59Z | 2010-07-15T19:16:29Z | E5-06760 | 0 | 0 | 09000064800ea546 | |
| EPA-HQ-ORD-2004-0018-0097 | EPA | None EPA-HQ-ORD-2004-0018 | Decision of the United States District Court, Eastern District of Missouri, Eastern Division in the matter of Missouri Coalition of the Environment, et al., Plaintiffs, vs. USEPA, Defendant; Case No. 4:04CV00660 ERW | Supporting & Related Material | Adjudication, Brief, Decision, Decree, Motion, Order | 2005-09-15T04:00:00Z | 2005 | 9 | 2010-07-15T19:14:58Z | 0 | 0 | 09000064800c5489 | |||
| EPA-HQ-ORD-2004-0018-0096 | EPA | None EPA-HQ-ORD-2004-0018 | Further Analysis of U.S. EPA Recontamination Data Collected in Herculaneum, Missouri: A Comment on the Missouri Department of Natural Resources Submittal | Supporting & Related Material | Other | 2005-08-23T04:00:00Z | 2005 | 8 | 2010-07-15T19:14:58Z | 0 | 0 | 09000064800c547a | |||
| EPA-HQ-ORD-2004-0018-0095 | EPA | None EPA-HQ-ORD-2004-0018 | Memo from Doe Run Company | Supporting & Related Material | Letter, Memorandum, Email | 2005-08-22T17:28:35Z | 2005 | 8 | 2010-07-15T19:14:58Z | 0 | 0 | 09000064800c546e | |||
| EPA-HQ-ORD-2004-0018-0017 | EPA | None EPA-HQ-ORD-2004-0018 | Spreadsheet showing relevant research articles submitted on behalf of the Missouri Coalition for the Environment and Leslie and Jack Warden in response to the Call for Information at 69 Fed. Reg. 64926 | Supporting & Related Material | Other | 2005-01-14T05:00:00Z | 2005 | 1 | 2010-07-15T19:14:54Z | 0 | 0 | 09000064800c50ba | |||
| EPA-HQ-ORD-2004-0018-0022 | EPA | None EPA-HQ-ORD-2004-0018 | Intellectual Impairment in Children with Blood Lead Concentrations Below 10 Micrograms per Deciliter | Supporting & Related Material | Publication | 2005-01-14T05:00:00Z | 2005 | 1 | 2010-07-15T19:14:54Z | 0 | 0 | 09000064800c50fe | |||
| EPA-HQ-ORD-2004-0018-0023 | EPA | None EPA-HQ-ORD-2004-0018 | Lead Poisoning: From Screening to Primary Prevention | Supporting & Related Material | Publication | 2005-01-14T05:00:00Z | 2005 | 1 | 2010-07-15T19:14:54Z | 0 | 0 | 09000064800c5109 | |||
| EPA-HQ-ORD-2004-0018-0015 | EPA | None EPA-HQ-ORD-2004-0018 | Air Quality Criteria Document for Lead Draft Project Work Plan | Notice | Federal Register Document | 2005-01-07T05:00:00Z | 2005 | 1 | 2005-01-07T05:00:00Z | 2005-02-08T04:59:59Z | 2010-07-15T19:14:54Z | 1439 | 0 | 0 | 09000064800c509d |
| EPA-HQ-ORD-2004-0018-0014 | EPA | None EPA-HQ-ORD-2004-0018 | Project Work Plan for Revised Air Quality Criteria for Lead | Supporting & Related Material | Report | 2005-01-07T05:00:00Z | 2005 | 1 | 2010-07-15T19:14:54Z | 0 | 0 | 09000064800c508f |
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;