documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-HQ-OW-2005-0010" and posted_year = 2005 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, 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-OW-2005-0010-0029 | EPA | None EPA-HQ-OW-2005-0010 | Form for Compliance with E.O. 12866 Docket Requirements [W-98-06 II-D.1] | Supporting & Related Material | Other | 2005-05-23T04:00:00Z | 2005 | 5 | 2006-09-02T19:23:41Z | 0 | 0 | 09000064800c3ba8 | |||
| EPA-HQ-OW-2005-0010-0025 | EPA | None EPA-HQ-OW-2005-0010 | Proposed Guidelines for Carcinogen Risk Assessment ; Notice of Availability and Opportunity to Comment on Proposed Guidelines for Carcinogen Risk Assessment [W-98-06 II-B-21] | Notice | Federal Register Document | 2005-05-23T04:00:00Z | 2005 | 5 | 2008-01-08T21:11:23Z | 17960 | 0 | 0 | 09000064800c3831 | ||
| EPA-HQ-OW-2005-0010-0026 | EPA | None EPA-HQ-OW-2005-0010 | Public Health Implications of Exposure to Polychlorinated Biphenyls (PCBs) W-98-06,II-B.22 | Supporting & Related Material | Study | 2005-05-23T04:00:00Z | 2005 | 5 | 2006-09-02T19:23:41Z | 0 | 0 | 09000064800c39a9 | |||
| EPA-HQ-OW-2005-0010-0024 | EPA | None EPA-HQ-OW-2005-0010 | Guidelines for Carcinogen Risk Assessment [W-98-06 II-B.20] | Rule | Federal Register Document | 2005-05-23T04:00:00Z | 2005 | 5 | 2008-01-08T21:17:50Z | 33992 | 0 | 0 | 09000064800c37b1 | ||
| EPA-HQ-OW-2005-0010-0028 | EPA | None EPA-HQ-OW-2005-0010 | Report on Peer Review Workshop on PCBS: Cancer-Dose Response Assessment and Application Environmental Mixtures [W-98-06 II-C.1] (Part 2 of 2) | Supporting & Related Material | Report | 2005-05-23T04:00:00Z | 2005 | 5 | 2006-09-02T19:23:41Z | 0 | 0 | 09000064800c3b33 | |||
| EPA-HQ-OW-2005-0010-0027 | EPA | None EPA-HQ-OW-2005-0010 | Report on Peer Review Workshop on PCBs: Cancer-Dose Response Assessment and Application Environmental Mixtures [W-98-06 II-C.1] (Part 1of 2) | Supporting & Related Material | Report | 2005-05-23T04:00:00Z | 2005 | 5 | 2006-09-02T19:23:41Z | 0 | 0 | 09000064800c3a2b | |||
| EPA-HQ-OW-2005-0010-0002 | EPA | None EPA-HQ-OW-2005-0010 | Assessing the Cancer Risk from Environmental PCBs [W-98-06, II-B.5] | Supporting & Related Material | Publication | 2005-05-19T04:00:00Z | 2005 | 5 | 2006-09-02T19:23:39Z | 0 | 0 | 09000064800c2a8c | |||
| EPA-HQ-OW-2005-0010-0006 | EPA | None EPA-HQ-OW-2005-0010 | Partial Settlement Agreement of In The United States District Court For The District Of Columbia in the matter of American Forest and Paper Association, Inc., vs USEPA and General Electric Company vs USEPA and Carol M. Browner, Administrator, 93-0694 RMU [W-98-06, I-B.1] | Supporting & Related Material | Other | 2005-05-19T04:00:00Z | 2005 | 5 | 2006-09-02T19:23:40Z | 0 | 0 | 09000064800c2b73 | |||
| EPA-HQ-OW-2005-0010-0010 | EPA | None EPA-HQ-OW-2005-0010 | Partial Settlement Agreement of In The United States District Court For The District Of Columbia in the matter of American Forest and Paper Association, Inc., vs USEPA and General Electric Company vs USEPA and Carol M. Browner, Administrator, 93-0694 RMU [W-98-06, I-B.1] | Supporting & Related Material | Other | 2005-05-19T04:00:00Z | 2005 | 5 | 2006-09-02T19:23:40Z | 0 | 0 | 09000064800c2cde |
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;