documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-R09-OAR-2011-0312" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, 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-R09-OAR-2011-0312-0006 | EPA | None EPA-R09-OAR-2011-0312 | Revisions to the California State Implementation Plan: San Joaquin Valley Unified Air Pollution Control District | Rule | 2011-11-08T05:00:00Z | 2011 | 11 | 2011-11-08T05:00:00Z | 2011-11-08T19:33:53Z | 2011-28788 | 0 | 0 | 0900006480f68114 | ||
| EPA-R09-OAR-2011-0312-0005 | EPA | None EPA-R09-OAR-2011-0312 | SJV APCD Rule 4601; Technical Support Document | Supporting & Related Material | Report | 2011-06-16T04:00:00Z | 2011 | 6 | 2011-06-16T20:07:56Z | 0 | 0 | 0900006480e3a9cc | |||
| EPA-R09-OAR-2011-0312-0004 | EPA | None EPA-R09-OAR-2011-0312 | San Joaquin Valley Rule 4601 Support Document: SIP Completeness checklist | Supporting & Related Material | Report | 2011-06-16T04:00:00Z | 2011 | 6 | 2011-06-16T20:07:56Z | 0 | 0 | 0900006480c0ad4b | |||
| EPA-R09-OAR-2011-0312-0001 | EPA | None EPA-R09-OAR-2011-0312 | Revisions to the California State Implementation Plan: San Joaquin Valley Unified Air Pollution Control District | Proposed Rule | 2011-06-16T04:00:00Z | 2011 | 6 | 2011-06-16T04:00:00Z | 2011-07-19T03:59:59Z | 2011-06-16T19:54:22Z | 2011-15000 | 0 | 0 | 0900006480e51183 | |
| EPA-R09-OAR-2011-0312-0003 | EPA | None EPA-R09-OAR-2011-0312 | San Joaquin Valley Rule 4601 Completeness Letter | Supporting & Related Material | Letter | 2011-06-16T04:00:00Z | 2011 | 6 | 2011-06-16T20:07:55Z | 0 | 0 | 0900006480c0a7b7 | |||
| EPA-R09-OAR-2011-0312-0002 | EPA | None EPA-R09-OAR-2011-0312 | San Joaquin Valley Rule 4601 Transmittal Letter dated May 17, 2010. | Supporting & Related Material | Letter | 2011-06-16T04:00:00Z | 2011 | 6 | 2011-06-16T20:07:55Z | 0 | 0 | 0900006480c0a7b6 |
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;