documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-HQ-OAR-2004-0304" and posted_year = 2024 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-OAR-2004-0304-0014 | EPA | Revision to Definition of Volatile Organic Compounds- Exclusion of Methyl Acetate Legacy Docket ID #: A-97-32 EPA-HQ-OAR-2004-0304 | William L. Johnson, EPA, to G.T. Helms, EPA, January 1998 Memorandum: Example of Calculation to Convert from per Gram Basis to per Mole Basis [A-97-32-IV-B-3] | Supporting & Related Material | Memorandum | 2024-03-04T05:00:00Z | 2024 | 3 | 2024-03-04T23:34:15Z | 0 | 0 | 0900006484942c42 | |||
| EPA-HQ-OAR-2004-0304-0013 | EPA | Revision to Definition of Volatile Organic Compounds- Exclusion of Methyl Acetate Legacy Docket ID #: A-97-32 EPA-HQ-OAR-2004-0304 | William L. Johnson, EPA, to G. T. Helms, EPA, January 1998 Memorandum: Inventories for use in Photochemical Air Quality Simulation Models [A-97-32-IV-B-2] | Supporting & Related Material | Memorandum | 2024-03-04T05:00:00Z | 2024 | 3 | 2024-03-04T23:34:15Z | 0 | 0 | 0900006484942c41 | |||
| EPA-HQ-OAR-2004-0304-0015 | EPA | Revision to Definition of Volatile Organic Compounds- Exclusion of Methyl Acetate Legacy Docket ID #: A-97-32 EPA-HQ-OAR-2004-0304 | Receipt of delivery from the Honorable Newt Gingritch, Speaker of the House of Representatives, Washington, D.C. [A-97-32-IV-H-1] | Supporting & Related Material | Memorandum | 2024-03-04T05:00:00Z | 2024 | 3 | 2024-03-04T23:34:16Z | 0 | 0 | 0900006484942e0a | |||
| EPA-HQ-OAR-2004-0304-0012 | EPA | Revision to Definition of Volatile Organic Compounds- Exclusion of Methyl Acetate Legacy Docket ID #: A-97-32 EPA-HQ-OAR-2004-0304 | William L. Johnson, EPA, to G. T. Helms, EPA, January 1998 Memorandum: Wavelengths of Light Found in the Troposphere [A-97-32-IV-B-1] | Supporting & Related Material | Memorandum | 2024-03-04T05:00:00Z | 2024 | 3 | 2024-03-04T23:34:14Z | 0 | 0 | 0900006484942c40 | |||
| EPA-HQ-OAR-2004-0304-0016 | EPA | Revision to Definition of Volatile Organic Compounds- Exclusion of Methyl Acetate Legacy Docket ID #: A-97-32 EPA-HQ-OAR-2004-0304 | Receipt of Delivery from Mr. Robert P. Murphy, General Counsel, General Accounting Office, Washington, D.C. [A-97-32-IV-H-2] | Supporting & Related Material | Memorandum | 2024-03-04T05:00:00Z | 2024 | 3 | 2024-03-04T23:34:16Z | 0 | 0 | 0900006484942e0b | |||
| EPA-HQ-OAR-2004-0304-0017 | EPA | Revision to Definition of Volatile Organic Compounds- Exclusion of Methyl Acetate Legacy Docket ID #: A-97-32 EPA-HQ-OAR-2004-0304 | Receipt of Delivery from the Honorable Albert Gore, President of the Senate, Washington, D.C. [A-97-32-IV-H-3] | Supporting & Related Material | Memorandum | 2024-03-04T05:00:00Z | 2024 | 3 | 2024-03-04T23:34:16Z | 0 | 0 | 0900006484942e0c |
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;