documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-HQ-OAR-2004-0018" and posted_year = 2007 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, 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-OAR-2004-0018-0693 | EPA | Revisions to the Ambient Air Monitoring Regulations EPA-HQ-OAR-2004-0018 | Direct Final Monitoring Rule - Compare with 3/9/07 Version - OMB Formal Submission | Supporting & Related Material | Interagency Review | 2007-06-12T04:00:00Z | 2007 | 6 | 2007-06-12T13:12:55Z | 0 | 0 | 090000648022a02c | |||
| EPA-HQ-OAR-2004-0018-0688 | EPA | Revisions to the Ambient Air Monitoring Regulations EPA-HQ-OAR-2004-0018 | Direct Final Monitoring Rule - OMB (Office of Management and Budget) Informal Submission #1 | Supporting & Related Material | Office of Management and Budget (OMB) | 2007-06-12T04:00:00Z | 2007 | 6 | 2011-06-11T16:00:07Z | 0 | 0 | 090000648022a004 | |||
| EPA-HQ-OAR-2004-0018-0694 | EPA | Revisions to the Ambient Air Monitoring Regulations EPA-HQ-OAR-2004-0018 | Monitoring Parallel Proposal - Compare with 2/28/07 version - OMB Formal Submission | Supporting & Related Material | Interagency Review | 2007-06-12T04:00:00Z | 2007 | 6 | 2011-06-11T16:00:08Z | 0 | 0 | 090000648022a033 | |||
| EPA-HQ-OAR-2004-0018-0689 | EPA | Revisions to the Ambient Air Monitoring Regulations EPA-HQ-OAR-2004-0018 | Direct Final Monitoring Rule - OMB (Office of Management and Budget) Informal Submission #2 | Supporting & Related Material | Office of Management and Budget (OMB) | 2007-06-12T04:00:00Z | 2007 | 6 | 2011-06-11T16:00:07Z | 0 | 0 | 090000648022a011 | |||
| EPA-HQ-OAR-2004-0018-0690 | EPA | Revisions to the Ambient Air Monitoring Regulations EPA-HQ-OAR-2004-0018 | Monitoring Rule Parallel Proposal - OMB (Office of Management and Budget) Informal Submission #1 | Supporting & Related Material | Office of Management and Budget (OMB) | 2007-06-12T04:00:00Z | 2007 | 6 | 2011-06-11T16:00:08Z | 0 | 0 | 090000648022a01a | |||
| EPA-HQ-OAR-2004-0018-0687 | EPA | Revisions to the Ambient Air Monitoring Regulations EPA-HQ-OAR-2004-0018 | Ambient Air Monitoring Regulations: Correcting and Other Amendments | Rule | Federal Register Document | 2007-06-12T04:00:00Z | 2007 | 6 | 2011-06-11T16:00:05Z | 07-02201 | 0 | 0 | 090000648024eae9 | ||
| EPA-HQ-OAR-2004-0018-0691 | EPA | Revisions to the Ambient Air Monitoring Regulations EPA-HQ-OAR-2004-0018 | Direct Final Monitoring Rule - OMB (Office of Management and Budget) Informal Submission #3 | Supporting & Related Material | Office of Management and Budget (OMB) | 2007-06-12T04:00:00Z | 2007 | 6 | 2011-06-11T16:00:04Z | 0 | 0 | 090000648022a020 | |||
| EPA-HQ-OAR-2004-0018-0692 | EPA | Revisions to the Ambient Air Monitoring Regulations EPA-HQ-OAR-2004-0018 | Corrections to Direct Final Monitoring Rule - OMB Informal Review Summary - Email to Amy Flynn | Supporting & Related Material | Letter, Memorandum, Email | 2007-06-12T04:00:00Z | 2007 | 6 | 2007-06-12T13:12:54Z | 0 | 0 | 090000648022a026 | |||
| EPA-HQ-OAR-2004-0018-0695 | EPA | Revisions to the Ambient Air Monitoring Regulations EPA-HQ-OAR-2004-0018 | Ambient Air Monitoring Regulations: Correcting and Other Amendments | Proposed Rule | Federal Register Document | 2007-06-12T04:00:00Z | 2007 | 6 | 2007-06-12T04:00:00Z | 2007-07-13T03:59:59Z | 2011-06-11T16:00:05Z | 07-02237 | 0 | 0 | 090000648024eb31 |
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;