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-2002-0043" 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-OW-2002-0043-0686 | EPA | None EPA-HQ-OW-2002-0043 | EPA Method 327.0 Revision 1.1: Determination of Chlorine Dioxide and Chlorite Ion in Drinking Water using Lissamine Green B and Horseradish Peroxidase with Detection by Visible Spectrophotometry | Supporting & Related Material | Report | 2005-11-21T05:00:00Z | 2005 | 11 | 2006-09-02T17:48:03Z | 0 | 0 | 09000064800c73e9 | |||
| EPA-HQ-OW-2002-0043-0687 | EPA | None EPA-HQ-OW-2002-0043 | EPA Method 415.3 Revision 1.1: Determination of Total Organic Carbon and Specific UV Absorbance at 254nm in Source Water and Drinking Water | Supporting & Related Material | Report | 2005-11-21T05:00:00Z | 2005 | 11 | 2006-09-02T17:48:03Z | 0 | 0 | 09000064800c73fa | |||
| EPA-HQ-OW-2002-0043-0673 | EPA | None EPA-HQ-OW-2002-0043 | Haloacid Induced Alterations in Fertility and the Sperm Biomarker SP22 in the Rat Are Additive: Validation of an ELISA | Supporting & Related Material | Publication | 2005-10-21T04:00:00Z | 2005 | 10 | 2012-04-03T12:20:56Z | 0 | 0 | 09000064800c731c | |||
| EPA-HQ-OW-2002-0043-0674 | EPA | None EPA-HQ-OW-2002-0043 | Bladder Cancer and Drinking Water: a Population-Based Case-Control Study in Washington County, Maryland (United States) | Supporting & Related Material | Publication - Copyrighted Materials | 2005-10-21T04:00:00Z | 2005 | 10 | 2012-03-26T12:11:33Z | 0 | 0 | 09000064800c7324 | |||
| EPA-HQ-OW-2002-0043-0672 | EPA | None EPA-HQ-OW-2002-0043 | Influence of the Order of Reagent Addition on NDMA Formation During Chloramination | Supporting & Related Material | Publication | 2005-10-21T04:00:00Z | 2005 | 10 | 2012-04-02T21:08:32Z | 0 | 0 | 09000064800c7314 | |||
| EPA-HQ-OW-2002-0043-0671 | EPA | None EPA-HQ-OW-2002-0043 | Comments on Draft IDSE Guidance Manual: Preparation for Stakeholders Conference Call/Meeting (May 11, 2005; 10:00 a.m. to 3:00 p.m. ET) | Supporting & Related Material | Other | 2005-10-20T04:00:00Z | 2005 | 10 | 2006-09-02T17:48:02Z | 0 | 0 | 09000064800c72e6 | |||
| EPA-HQ-OW-2002-0043-0689 | EPA | None EPA-HQ-OW-2002-0043 | Unregulated Contaminant Monitoring Regulation (UCMR) for Public Water Systems Revisions; Proposed Rule | Proposed Rule | Federal Register Document | 2005-08-22T04:00:00Z | 2005 | 8 | 2005-08-22T04:00:00Z | 2005-10-22T03:59:59Z | 2025-06-26T20:43:27Z | 05-16385 | 0 | 0 | 09000064800c746e |
| EPA-HQ-OW-2002-0043-0601 | EPA | None EPA-HQ-OW-2002-0043 | May 11 Meeting Summary | Supporting & Related Material | Meeting or Teleconference Materials | 2005-07-29T04:00:00Z | 2005 | 7 | 2006-09-02T17:47:58Z | 0 | 0 | 09000064800c6c34 | |||
| EPA-HQ-OW-2002-0043-0599 | EPA | None EPA-HQ-OW-2002-0043 | TOC sample collection protocol | Supporting & Related Material | Letter, Memorandum, Email | 2005-07-26T04:00:00Z | 2005 | 7 | 2006-09-02T17:47:57Z | 0 | 0 | 09000064800c6c14 |
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;