documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "EPA" and docket_id = "EPA-HQ-OAR-2006-0363" 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-2006-0363-0005 | EPA | Amendment to Tier 2 Vehicle Emission Standards and Gasoline Sulfur Requirements: Partial Exemption for US Pacific Island Territories EPA-HQ-OAR-2006-0363 | American Samoa: 2000 Social, Economic, and Housing Characteristics - Poverty Status in 1999: 2000 | Supporting & Related Material | Economic Analysis | 2006-12-28T05:00:00Z | 2006 | 12 | 2006-12-28T14:51:50Z | 0 | 0 | 09000064801cfb5d | |||
| EPA-HQ-OAR-2006-0363-0003 | EPA | Amendment to Tier 2 Vehicle Emission Standards and Gasoline Sulfur Requirements: Partial Exemption for US Pacific Island Territories EPA-HQ-OAR-2006-0363 | Petition for Exemption from the Gasoline Sulfur Regulations (American Samoa) | Supporting & Related Material | Petition | 2006-12-28T05:00:00Z | 2006 | 12 | 2006-12-28T14:51:47Z | 0 | 0 | 09000064801cf9bf | |||
| EPA-HQ-OAR-2006-0363-0001 | EPA | Amendment to Tier 2 Vehicle Emission Standards and Gasoline Sulfur Requirements: Partial Exemption for US Pacific Island Territories EPA-HQ-OAR-2006-0363 | Amendment to Tier 2 Vehicle Emission Standards and Gasoline Sulfur Requirements: Partial Exemption for U.S. Pacific Island Territories | Rule | Federal Register Document | 2006-12-28T05:00:00Z | 2006 | 12 | 2006-12-28T05:00:00Z | 2007-01-30T04:59:59Z | 2011-06-11T16:02:10Z | E6-22310 | 0 | 0 | 09000064801f0618 |
| EPA-HQ-OAR-2006-0363-0002 | EPA | Amendment to Tier 2 Vehicle Emission Standards and Gasoline Sulfur Requirements: Partial Exemption for US Pacific Island Territories EPA-HQ-OAR-2006-0363 | Exercise of Enforcement Discretion for Gasoline Sulfur Regulations (American Samoa) | Supporting & Related Material | Variance, Waiver, Exemption | 2006-12-28T05:00:00Z | 2006 | 12 | 2006-12-28T14:51:42Z | 0 | 0 | 09000064801e1bfc | |||
| EPA-HQ-OAR-2006-0363-0006 | EPA | Amendment to Tier 2 Vehicle Emission Standards and Gasoline Sulfur Requirements: Partial Exemption for US Pacific Island Territories EPA-HQ-OAR-2006-0363 | CIA - The World Factbook - American Samoa | Supporting & Related Material | Report | 2006-12-28T05:00:00Z | 2006 | 12 | 2006-12-28T14:51:52Z | 0 | 0 | 09000064801cfb6d | |||
| EPA-HQ-OAR-2006-0363-0004 | EPA | Amendment to Tier 2 Vehicle Emission Standards and Gasoline Sulfur Requirements: Partial Exemption for US Pacific Island Territories EPA-HQ-OAR-2006-0363 | EPA Staff Paper on Gasoline Sulfur Issues [EPA420-R-98-005] | Supporting & Related Material | Publication - USEPA | 2006-12-28T05:00:00Z | 2006 | 12 | 2006-12-28T14:51:49Z | 0 | 0 | 09000064801cf9dc | |||
| EPA-HQ-OAR-2006-0363-0007 | EPA | Amendment to Tier 2 Vehicle Emission Standards and Gasoline Sulfur Requirements: Partial Exemption for US Pacific Island Territories EPA-HQ-OAR-2006-0363 | Asia/Australasia: 2005 Regional Fuel Quality Overview and Outlook for 2006 | Supporting & Related Material | Publication - Copyrighted Materials | 2006-12-28T05:00:00Z | 2006 | 12 | 2011-11-02T17:29:43Z | 0 | 0 | 09000064801d129c | |||
| EPA-HQ-OAR-2006-0363-0008 | EPA | Amendment to Tier 2 Vehicle Emission Standards and Gasoline Sulfur Requirements: Partial Exemption for US Pacific Island Territories EPA-HQ-OAR-2006-0363 | Amendment to Tier 2 Vehicle Emission Standards and Gasoline Sulfur Requirements: Partial Exemption for U.S. Pacific Island Territories | Proposed Rule | Federal Register Document | 2006-12-28T05:00:00Z | 2006 | 12 | 2006-12-28T05:00:00Z | 2007-01-30T04:59:59Z | 2011-06-11T16:02:10Z | E6-22309 | 0 | 0 | 09000064801f0586 |
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;