documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-HQ-ORD-2005-0012" and posted_year = 2000 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-ORD-2005-0012-0055 | EPA | None EPA-HQ-ORD-2005-0012 | Letter to Dr. Joseph Mauderly, Inhalation Toxicology Research Institute, Lovelace Biomedical and Environmental Research Institute and Chair, USEPA/CASAC from Lester D. Grant, Ph.D., Director, USEPA/ORD/NCEA/RTP re: Air Quality Criteria for Carbon Monoxide [IIAF-026] | Supporting & Related Material | Letter, Memorandum, Email | 2000-08-28T04:00:00Z | 2000 | 8 | 2006-09-02T15:46:18Z | 0 | 0 | 09000064800c8105 | |||
| EPA-HQ-ORD-2005-0012-0009 | EPA | None EPA-HQ-ORD-2005-0012 | Air Quality Criteria for Carbon Monoxide [EPA 600/P-99/001F] [IIAH-001] | Supporting & Related Material | Publication | 2000-08-23T04:00:00Z | 2000 | 8 | 2006-09-02T15:46:15Z | 0 | 0 | 09000064800c7dea | |||
| EPA-HQ-ORD-2005-0012-0011 | EPA | None EPA-HQ-ORD-2005-0012 | Air Quality Criteria for Carbon Monoxide [EPA 600/P-99/001F] [IIAH-001] | Supporting & Related Material | Publication | 2000-08-23T04:00:00Z | 2000 | 8 | 2006-09-02T15:46:15Z | 0 | 0 | 09000064800c7e3f | |||
| EPA-HQ-ORD-2005-0012-0010 | EPA | None EPA-HQ-ORD-2005-0012 | Air Quality Criteria for Carbon Monoxide [EPA 600/P-99/001F] [IIAH-001] | Supporting & Related Material | Publication | 2000-08-23T04:00:00Z | 2000 | 8 | 2006-09-02T15:46:15Z | 0 | 0 | 09000064800c7e1f | |||
| EPA-HQ-ORD-2005-0012-0076 | EPA | None EPA-HQ-ORD-2005-0012 | Air Quality Criteria for Carbon Monoxide (Final) [IIAA-009] | Notice | Federal Register Document | 2000-08-17T04:00:00Z | 2000 | 8 | 2025-06-27T02:38:36Z | 50202 | 0 | 0 | 09000064800c82ac | ||
| EPA-HQ-ORD-2005-0012-0054 | EPA | None EPA-HQ-ORD-2005-0012 | Memorandum to Joe L. Mauderly, Chair, USEPA/OA/SAB/CASAC from Carol M. Browner, USEPA re: Air Quality Criteria Document for Carbon Monoxide [IIAF-024] | Supporting & Related Material | Letter, Memorandum, Email | 2000-04-05T04:00:00Z | 2000 | 4 | 2006-09-02T15:46:18Z | 0 | 0 | 09000064800c80fa | |||
| EPA-HQ-ORD-2005-0012-0053 | EPA | None EPA-HQ-ORD-2005-0012 | Memorandum to Sandra Hundall, Director, Executive Secretariat, USEPA from Robert Flaak, Team Leader, Committee Operations Staff, USEPA/OA/SAB re: Air Quality Criteria for Carbon Monoxide [IIAF-023] | Supporting & Related Material | Letter, Memorandum, Email | 2000-02-04T05:00:00Z | 2000 | 2 | 2006-09-02T15:46:18Z | 0 | 0 | 09000064800c80ec | |||
| EPA-HQ-ORD-2005-0012-0052 | EPA | None EPA-HQ-ORD-2005-0012 | Memorandum to Honorable Carol M. Browner, Administrator, USEPA from Dr. Joe L. Mauderly, Chair, USEPA/OA/SAB/CASAC re: Air Quality Criteria for Carbon Monoxide [IIAF-022] | Supporting & Related Material | Letter, Memorandum, Email | 2000-02-04T05:00:00Z | 2000 | 2 | 2006-09-02T15:46:18Z | 0 | 0 | 09000064800c80db |
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;