documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-R10-OAR-2013-0713" and posted_year = 2013 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, 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-R10-OAR-2013-0713-0002 | EPA | None EPA-R10-OAR-2013-0713 | 100_state submittal_Submittal Letter | Supporting & Related Material | 2013-12-27T05:00:00Z | 2013 | 12 | 2013-12-27T17:52:41Z | 0 | 0 | 09000064814c339b | ||||
| EPA-R10-OAR-2013-0713-0003 | EPA | None EPA-R10-OAR-2013-0713 | 101_state submittal_PM Adoption order | Supporting & Related Material | 2013-12-27T05:00:00Z | 2013 | 12 | 2013-12-27T17:52:40Z | 0 | 0 | 09000064814c3bea | ||||
| EPA-R10-OAR-2013-0713-0008 | EPA | None EPA-R10-OAR-2013-0713 | 300_tribal consultation_Puyallup Tribe Consultation Letter_PM 10 | Supporting & Related Material | 2013-12-27T05:00:00Z | 2013 | 12 | 2013-12-27T17:52:41Z | 0 | 0 | 09000064814c3bef | ||||
| EPA-R10-OAR-2013-0713-0004 | EPA | None EPA-R10-OAR-2013-0713 | 102_state submittal_PM10-LMP Kent Seattle Tacoma | Supporting & Related Material | 2013-12-27T05:00:00Z | 2013 | 12 | 2013-12-27T17:52:40Z | 0 | 0 | 09000064814c3beb | ||||
| EPA-R10-OAR-2013-0713-0006 | EPA | None EPA-R10-OAR-2013-0713 | 200_EPA review_final review_PSCAA PM10 LMP | Supporting & Related Material | 2013-12-27T05:00:00Z | 2013 | 12 | 2013-12-27T17:52:40Z | 0 | 0 | 09000064814c3bed | ||||
| EPA-R10-OAR-2013-0713-0007 | EPA | None EPA-R10-OAR-2013-0713 | 201_EPA review_draft review_PSCAA PM10 LMP_letter | Supporting & Related Material | 2013-12-27T05:00:00Z | 2013 | 12 | 2013-12-27T17:52:40Z | 0 | 0 | 09000064814c3bee | ||||
| EPA-R10-OAR-2013-0713-0005 | EPA | None EPA-R10-OAR-2013-0713 | 103_state submittal_RespToCommPugetSoundPM10Plans_FINAL | Supporting & Related Material | 2013-12-27T05:00:00Z | 2013 | 12 | 2013-12-27T17:52:41Z | 0 | 0 | 09000064814c3bec | ||||
| EPA-R10-OAR-2013-0713-0001 | EPA | None EPA-R10-OAR-2013-0713 | Air Quality State Implementation Plans; Approvals and Promulgations: Washington; Kent, Seattle, and Tacoma Second 10-Year PM10 Limited Maintenance Plan | Proposed Rule | 2013-12-26T05:00:00Z | 2013 | 12 | 2013-12-26T05:00:00Z | 2014-01-28T04:59:59Z | 2013-12-27T17:25:10Z | 2013-30878 | 0 | 0 | 09000064814dcadd |
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;