documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "EPA-HQ-OW-2005-0017" 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), 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-0017-0096 | EPA | None EPA-HQ-OW-2005-0017 | Letter to Marion Thompson, Engineering and Analysis Division, USEPA Office of Science and Technology from Katherine Bourbonais Laboratory Project Manager, King County Water Pollution Control Division, Environmental Laboratory, Department of Natural Resources re: EPA's (EPA) Draft 304(h) Streamlining Initiative Documents [D57] | Supporting & Related Material | Letter, Memorandum, Email | 2005-07-12T04:00:00Z | 2005 | 7 | 2006-09-02T19:25:19Z | 0 | 0 | 09000064800ce3c3 | |||
| EPA-HQ-OW-2005-0017-0097 | EPA | None EPA-HQ-OW-2005-0017 | Memorandum to Office Directors, Division Directors, Branch Chiefs,Team Leaders from Bob Perciasepe re:Agency-wide Adoption of the Performance-Based Measurement System Approach [D58] | Supporting & Related Material | Letter, Memorandum, Email | 2005-07-12T04:00:00Z | 2005 | 7 | 2006-09-02T19:25:19Z | 0 | 0 | 09000064800ce3ce | |||
| EPA-HQ-OW-2005-0017-0099 | EPA | None EPA-HQ-OW-2005-0017 | Appendix A: Environmental Methods Management Council Format for Method Documentation [C8] | Supporting & Related Material | Other | 2005-07-12T04:00:00Z | 2005 | 7 | 2006-09-02T19:25:19Z | 0 | 0 | 09000064800ce3ed | |||
| EPA-HQ-OW-2005-0017-0098 | EPA | None EPA-HQ-OW-2005-0017 | Letter to Katherine Bourbonais, Laboratory Project Manager, King County Water Pollution Control Division, Environmental Laboratory from William A. Telliard, Director, Analytical Methods Staff, Engineering and Analysis Division, USEPA re: EPA's (EPA) Streamlining Documents [D59] | Supporting & Related Material | Letter, Memorandum, Email | 2005-07-12T04:00:00Z | 2005 | 7 | 2006-09-02T19:25:19Z | 0 | 0 | 09000064800ce3e2 | |||
| EPA-HQ-OW-2005-0017-0024 | EPA | None EPA-HQ-OW-2005-0017 | Interlaboratory Validation of US EPA Method 1625A (Part 3 of 3) | Supporting & Related Material | Report | 2005-06-13T04:00:00Z | 2005 | 6 | 2006-09-02T19:25:14Z | 0 | 0 | 09000064800cd793 | |||
| EPA-HQ-OW-2005-0017-0026 | EPA | None EPA-HQ-OW-2005-0017 | Address by the President to the Joint Session of Congress Feb 17, 1993 | Supporting & Related Material | Speech | 2005-06-13T04:00:00Z | 2005 | 6 | 2006-09-02T19:25:14Z | 0 | 0 | 09000064800cd88e | |||
| EPA-HQ-OW-2005-0017-0025 | EPA | None EPA-HQ-OW-2005-0017 | Streamlining EPA's (EPA) Test Methods Approval Program [EPA-821-F-97-001] | Supporting & Related Material | Other | 2005-06-13T04:00:00Z | 2005 | 6 | 2006-09-02T19:25:14Z | 0 | 0 | 09000064800cd87d | |||
| EPA-HQ-OW-2005-0017-0023 | EPA | None EPA-HQ-OW-2005-0017 | Interlaboratory Validation of USEPA Method 1625A (Part 2 of 3) | Supporting & Related Material | Report | 2005-06-13T04:00:00Z | 2005 | 6 | 2006-09-02T19:25:14Z | 0 | 0 | 09000064800cd6bf | |||
| EPA-HQ-OW-2005-0017-0022 | EPA | None EPA-HQ-OW-2005-0017 | Interlaboratory Validation of USEPA Method 1625A (Part 1 of 3) | Supporting & Related Material | Report | 2005-06-13T04:00:00Z | 2005 | 6 | 2006-09-02T19:25:14Z | 0 | 0 | 09000064800cd5f9 | |||
| EPA-HQ-OW-2005-0017-0027 | EPA | None EPA-HQ-OW-2005-0017 | Guidance on Evaluation, Resolution, and Documentation of Analytical Problems Associated with Compliance Monitoring [EPA 821-B-93-001] | Supporting & Related Material | Publication | 2005-06-13T04:00:00Z | 2005 | 6 | 2006-09-02T19:25:15Z | 0 | 0 | 09000064800cd8bc |
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;