documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-R01-OAR-2015-0351" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, 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-R01-OAR-2015-0351-0009 | EPA | None EPA-R01-OAR-2015-0351 | Air Quality State Implementation Plans; Approvals and Promulgations: Massachusetts; Air Plan Approval; Decommissioning of Stage II Vapor Recovery Systems | Rule | 2016-11-29T05:00:00Z | 2016 | 11 | 2016-11-29T05:00:00Z | 2016-12-09T05:25:11Z | 2016-28587 | 0 | 0 | 09000064823c5eac | ||
| EPA-R01-OAR-2015-0351-0007 | EPA | None EPA-R01-OAR-2015-0351 | Guidance on Removing Stage II Programs from SIPs 7_AUG_2012 | Supporting & Related Material | 2016-05-17T04:00:00Z | 2016 | 5 | 2016-05-18T00:43:11Z | 0 | 0 | 0900006481fd72d4 | ||||
| EPA-R01-OAR-2015-0351-0004 | EPA | None EPA-R01-OAR-2015-0351 | MA_Stage2_ResponseToComments | Supporting & Related Material | 2016-03-10T05:00:00Z | 2016 | 3 | 2016-03-11T01:35:15Z | 0 | 0 | 0900006481b08adb | ||||
| EPA-R01-OAR-2015-0351-0002 | EPA | None EPA-R01-OAR-2015-0351 | MA_Stage2_CoverLetter | Supporting & Related Material | 2016-03-10T05:00:00Z | 2016 | 3 | 2016-03-11T01:35:10Z | 0 | 0 | 0900006481b08ad8 | ||||
| EPA-R01-OAR-2015-0351-0006 | EPA | None EPA-R01-OAR-2015-0351 | MA_Stage2_SIPNarrative | Supporting & Related Material | 2016-03-10T05:00:00Z | 2016 | 3 | 2016-03-11T01:35:20Z | 0 | 0 | 0900006481b08ad9 | ||||
| EPA-R01-OAR-2015-0351-0003 | EPA | None EPA-R01-OAR-2015-0351 | MA_Stage2_StateRegulation | Supporting & Related Material | 2016-03-10T05:00:00Z | 2016 | 3 | 2016-03-11T01:35:26Z | 0 | 0 | 0900006481b08adc | ||||
| EPA-R01-OAR-2015-0351-0005 | EPA | None EPA-R01-OAR-2015-0351 | MA_Stage2_HearingNoticeCertification | Supporting & Related Material | 2016-03-10T05:00:00Z | 2016 | 3 | 2016-03-11T01:35:04Z | 0 | 0 | 0900006481b08ada | ||||
| EPA-R01-OAR-2015-0351-0001 | EPA | None EPA-R01-OAR-2015-0351 | Air Quality State Implementation Plans; Approvals and Promulgations: Massachusetts; Decommissioning of Stage II Vapor Recovery Systems | Proposed Rule | 2016-03-09T05:00:00Z | 2016 | 3 | 2016-03-09T05:00:00Z | 2016-04-09T03:59:59Z | 2016-04-08T15:00:47Z | 2016-05027 | 0 | 0 | 0900006481eb47b9 |
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;