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-R09-OAR-2015-0619" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-2015-0619-0004 | EPA | None EPA-R09-OAR-2015-0619 | FR 3.15 Checklist | Supporting & Related Material | 2015-12-08T05:00:00Z | 2015 | 12 | 2015-12-09T01:46:11Z | 0 | 0 | 0900006481d8e2d2 | ||||
| EPA-R09-OAR-2015-0619-0001 | EPA | None EPA-R09-OAR-2015-0619 | Air Quality State Implementation Plans; Approvals and Promulgations: California; Antelope Valley Air Quality Management District, Feather River Air Quality Management District and Santa Barbara County Air Pollution Control District | Proposed Rule | 2015-12-08T05:00:00Z | 2015 | 12 | 2015-12-08T05:00:00Z | 2016-01-08T04:59:59Z | 2015-12-08T17:32:20Z | 2015-30808 | 0 | 0 | 0900006481d8cafe | |
| EPA-R09-OAR-2015-0619-0007 | EPA | None EPA-R09-OAR-2015-0619 | TSD FR Rule 3.15 September 2015 | Supporting & Related Material | 2015-12-08T05:00:00Z | 2015 | 12 | 2015-12-09T01:47:04Z | 0 | 0 | 0900006481d8eda7 | ||||
| EPA-R09-OAR-2015-0619-0008 | EPA | None EPA-R09-OAR-2015-0619 | TSD SB Rule 323.1 September 2015 | Supporting & Related Material | 2015-12-08T05:00:00Z | 2015 | 12 | 2015-12-09T01:47:09Z | 0 | 0 | 0900006481d8eda8 | ||||
| EPA-R09-OAR-2015-0619-0002 | EPA | None EPA-R09-OAR-2015-0619 | Air Quality State Implementation Plans; Approvals and Promulgations: California; Antelope Valley Air Quality Management District, Feather River Air Quality Management District and Santa Barbara County Air Pollution Control District | Rule | 2015-12-08T05:00:00Z | 2015 | 12 | 2015-12-08T05:00:00Z | 2016-01-08T04:59:59Z | 2015-12-08T17:32:43Z | 2015-30809 | 0 | 0 | 0900006481d8cbee | |
| EPA-R09-OAR-2015-0619-0005 | EPA | None EPA-R09-OAR-2015-0619 | SB 323.1 Checklist | Supporting & Related Material | 2015-12-08T05:00:00Z | 2015 | 12 | 2015-12-09T01:46:53Z | 0 | 0 | 0900006481d8e2ef | ||||
| EPA-R09-OAR-2015-0619-0006 | EPA | None EPA-R09-OAR-2015-0619 | TSD AV Rule 1113 September 2015 | Supporting & Related Material | 2015-12-08T05:00:00Z | 2015 | 12 | 2015-12-09T01:46:59Z | 0 | 0 | 0900006481d8eda6 | ||||
| EPA-R09-OAR-2015-0619-0003 | EPA | None EPA-R09-OAR-2015-0619 | AV 1113 SIP Completeness | Supporting & Related Material | 2015-12-08T05:00:00Z | 2015 | 12 | 2015-12-09T01:45:29Z | 0 | 0 | 0900006481d8e7c5 |
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;