documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "EPA-R09-OAR-2009-0859" and posted_year = 2009 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, 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-R09-OAR-2009-0859-0006 | EPA | None EPA-R09-OAR-2009-0859 | Attachment to TSD (document #0005): SJV 2009 RACT SIP Demonstrations | Supporting & Related Material | 2009-12-29T05:00:00Z | 2009 | 12 | 2009-12-29T22:13:05Z | 0 | 0 | 0900006480a735e5 | ||||
| EPA-R09-OAR-2009-0859-0007 | EPA | None EPA-R09-OAR-2009-0859 | Attachment to TSD: SJ RACT Analysis for Eight Rules, June 12, 2008 | Supporting & Related Material | 2009-12-29T05:00:00Z | 2009 | 12 | 2009-12-29T22:14:03Z | 0 | 0 | 0900006480a73784 | ||||
| EPA-R09-OAR-2009-0859-0005 | EPA | None EPA-R09-OAR-2009-0859 | Technical Support Document (TSD), dated November 10, 2009, prepared by Joann Wells and Nicole Law, USEPA R9 | Supporting & Related Material | 2009-12-22T05:00:00Z | 2009 | 12 | 2009-12-22T22:52:29Z | 0 | 0 | 0900006480a700a1 | ||||
| EPA-R09-OAR-2009-0859-0001 | EPA | None EPA-R09-OAR-2009-0859 | Revisions to the California State Implementation Plan: San Joaquin Valley Air Pollution Control District | Proposed Rule | 2009-12-18T05:00:00Z | 2009 | 12 | 2009-12-18T05:00:00Z | 2010-01-20T04:59:59Z | 2009-12-18T19:21:28Z | E9-30169 | 0 | 0 | 0900006480a6de86 | |
| EPA-R09-OAR-2009-0859-0002 | EPA | None EPA-R09-OAR-2009-0859 | Submittal Letter for San Joaquin Valley Rules 4104, 4404, 4641 and 4672. | Supporting & Related Material | 2009-12-18T05:00:00Z | 2009 | 12 | 2009-12-18T19:27:49Z | 0 | 0 | 0900006480a54a92 | ||||
| EPA-R09-OAR-2009-0859-0004 | EPA | None EPA-R09-OAR-2009-0859 | Support Documents for SJVUAPCD Rules 4104, 4404, 4641 & 4672 | Supporting & Related Material | 2009-12-18T05:00:00Z | 2009 | 12 | 2009-12-18T19:27:53Z | 0 | 0 | 0900006480a59f6f | ||||
| EPA-R09-OAR-2009-0859-0003 | EPA | None EPA-R09-OAR-2009-0859 | Completeness Letter for San Joaquin Valley UAPCD Rules 4104, 4404, 4641, 4672. | Supporting & Related Material | 2009-12-18T05:00:00Z | 2009 | 12 | 2009-12-18T19:27:51Z | 0 | 0 | 0900006480a59f6e |
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;