documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-HQ-OAR-2004-0488" and posted_year = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, 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-0488-0058 | EPA | Significant New Alternatives Policy (SNAP) Program 2005 EPA-HQ-OAR-2004-0488 | SAE J639 Standard Draft (2010 version) | Supporting & Related Material | Publication - Copyrighted Materials | 2010-11-16T05:00:00Z | 2010 | 11 | 2011-10-26T19:18:30Z | 0 | 0 | 0900006480b8a259 | |||
| EPA-HQ-OAR-2004-0488-0057 | EPA | Significant New Alternatives Policy (SNAP) Program 2005 EPA-HQ-OAR-2004-0488 | Email from W. Atkinson and W. Hill to Y. Cancel | Supporting & Related Material | Letter, Memorandum, Email | 2010-09-01T04:00:00Z | 2010 | 9 | 2010-09-01T17:52:50Z | 0 | 0 | 0900006480b3e7b0 | |||
| EPA-HQ-OAR-2004-0488-0056 | EPA | Significant New Alternatives Policy (SNAP) Program 2005 EPA-HQ-OAR-2004-0488 | SAE (SAE International) J1739 Standard | Supporting & Related Material | Publication - Copyrighted Materials | 2010-09-01T04:00:00Z | 2010 | 9 | 2011-10-26T19:17:41Z | 0 | 0 | 0900006480b3e7ae | |||
| EPA-HQ-OAR-2004-0488-0053 | EPA | Significant New Alternatives Policy (SNAP) Program 2005 EPA-HQ-OAR-2004-0488 | SAE 2773 Draft Standard for Refrigerant Risk Analysis for Mobile Air Conditioning Systems | Supporting & Related Material | Publication - Copyrighted Materials | 2010-08-06T04:00:00Z | 2010 | 8 | 2011-10-26T19:13:23Z | 0 | 0 | 0900006480b26e5e | |||
| EPA-HQ-OAR-2004-0488-0055 | EPA | Significant New Alternatives Policy (SNAP) Program 2005 EPA-HQ-OAR-2004-0488 | SAE J1052 Motor Vehicle Driver and Passenger Head Position | Supporting & Related Material | Publication - Copyrighted Materials | 2010-08-06T04:00:00Z | 2010 | 8 | 2011-10-26T19:16:54Z | 0 | 0 | 0900006480b26e61 | |||
| EPA-HQ-OAR-2004-0488-0054 | EPA | Significant New Alternatives Policy (SNAP) Program 2005 EPA-HQ-OAR-2004-0488 | SAE J2772 Draft Standard for Refrigerant Risk Analysis for Mobile Air Conditioning Systems | Supporting & Related Material | Publication - Copyrighted Materials | 2010-08-06T04:00:00Z | 2010 | 8 | 2011-10-26T19:16:07Z | 0 | 0 | 0900006480b26e60 | |||
| EPA-HQ-OAR-2004-0488-0052 | EPA | Significant New Alternatives Policy (SNAP) Program 2005 EPA-HQ-OAR-2004-0488 | Society of Automotive Engineers, Inc. (SAE) J1052 Motor Vehicle Driver and Passenger Head Position | Supporting & Related Material | Publication - Copyrighted Materials | 2010-07-01T04:00:00Z | 2010 | 7 | 2010-07-01T15:57:36Z | 0 | 0 | 0900006480b0f6be | |||
| EPA-HQ-OAR-2004-0488-0051 | EPA | Significant New Alternatives Policy (SNAP) Program 2005 EPA-HQ-OAR-2004-0488 | Risk Assessment for Alternative Refrigerants HFO-1234yf and R-744 (CO2) Phase III, Final Report (SAE CRP III report ) | Supporting & Related Material | Report | 2010-06-14T04:00:00Z | 2010 | 6 | 2010-06-14T11:24:17Z | 0 | 0 | 0900006480afddaf |
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;