documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "EPA-HQ-ORD-2011-0051" and posted_year = 2013 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, 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-ORD-2011-0051-0046 | EPA | None EPA-HQ-ORD-2011-0051 | Integrated Science Assessment (ISA) for Lead (Pb) [Final Report] [EPA/600/R-10/075F] | Supporting & Related Material | Publication - USEPA | 2013-07-15T04:00:00Z | 2013 | 7 | 2013-07-15T16:43:26Z | 0 | 0 | 09000064813626d6 | |||
| EPA-HQ-ORD-2011-0051-0045 | EPA | None EPA-HQ-ORD-2011-0051 | CASAC Review of EPA’s Integrated Science Assessment for Pb(Lead): Second External Review Draft, February 2012 | Supporting & Related Material | Report | 2013-05-07T04:00:00Z | 2013 | 5 | 2013-05-07T14:04:02Z | 0 | 0 | 09000064812b49fe | |||
| EPA-HQ-ORD-2011-0051-0043 | EPA | None EPA-HQ-ORD-2011-0051 | CASAC Review of USEPA’s Integrated Science Assessment for Pb(Lead): First External Review Draft, May 2011 | Supporting & Related Material | Report | 2013-05-07T04:00:00Z | 2013 | 5 | 2013-05-07T14:04:01Z | 0 | 0 | 09000064812b49fd | |||
| EPA-HQ-ORD-2011-0051-0042 | EPA | None EPA-HQ-ORD-2011-0051 | Email to Dennis Kotchmar. Subject: Supplemental Data from Dr. Khalil | Supporting & Related Material | 2013-05-07T04:00:00Z | 2013 | 5 | 2013-05-07T14:04:00Z | 0 | 0 | 09000064812b4a00 | ||||
| EPA-HQ-ORD-2011-0051-0044 | EPA | None EPA-HQ-ORD-2011-0051 | U.S. EPA Response to CASAC Comments related to the Review of the Integrated Science Assessment for Pb(Lead): First External Review Draft (March 23, 2012) - Duplicate of EPA-HQ-ORD-2011-0051-0049 | Supporting & Related Material | Comment Response | 2013-05-07T04:00:00Z | 2013 | 5 | 2014-06-27T13:40:30Z | 0 | 0 | 09000064812b49fc | |||
| EPA-HQ-ORD-2011-0051-0040 | EPA | None EPA-HQ-ORD-2011-0051 | Transcripts CASAC Meeting 3rd ERD Pb (Lead) ISA February 5 & 6, 2013 | Supporting & Related Material | Transcript | 2013-03-19T04:00:00Z | 2013 | 3 | 2013-03-19T20:59:29Z | 0 | 0 | 0900006481228412 | |||
| EPA-HQ-ORD-2011-0051-0041 | EPA | None EPA-HQ-ORD-2011-0051 | Email from Dr. Wright to Dr. Patel; Data Clarification | Supporting & Related Material | 2013-03-19T04:00:00Z | 2013 | 3 | 2013-05-03T18:51:31Z | 0 | 0 | 0900006481232ec2 |
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;