documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "EPA-HQ-OAR-2015-0272" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, posted_date (date), last_modified (date)
document_type 2
agency_id 1
- EPA 4
| 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-HQ-OAR-2015-0272-0004 | EPA | Implementation of CAA Section 608 Technician Certification Program EPA-HQ-OAR-2015-0272 | Protection of Stratospheric Ozone: Revocation and Voluntary Withdrawals of Programs from EPA's Section 608 Technician Certifying Program | Notice | 2016-05-10T04:00:00Z | 2016 | 5 | 2016-05-10T15:19:42Z | 2016-10987 | 0 | 0 | 0900006481fbd48c | |||
| EPA-HQ-OAR-2015-0272-0002 | EPA | Implementation of CAA Section 608 Technician Certification Program EPA-HQ-OAR-2015-0272 | 608 Technician Programs Suspension Letter Generic | Supporting & Related Material | Form | 2015-12-02T05:00:00Z | 2015 | 12 | 2015-12-03T01:34:48Z | 0 | 0 | 0900006481b2a434 | |||
| EPA-HQ-OAR-2015-0272-0003 | EPA | Implementation of CAA Section 608 Technician Certification Program EPA-HQ-OAR-2015-0272 | Protection of Stratospheric Ozone: Pending Suspension and Revocation of 15 Programs from EPA's List of Section 608 Technician Certifying Programs and Voluntary Withdrawals for 3 Programs | Notice | 2015-12-02T05:00:00Z | 2015 | 12 | 2016-05-09T19:40:03Z | 2015-30374 | 0 | 0 | 0900006481d7fa9a | |||
| EPA-HQ-OAR-2015-0272-0001 | EPA | Implementation of CAA Section 608 Technician Certification Program EPA-HQ-OAR-2015-0272 | Meetings: Stratospheric Protection Division; Clean Air Act Section 608 Technician Certification Program Test Bank; Teleconference | Notice | 2015-12-01T05:00:00Z | 2015 | 12 | 2015-12-02T17:50:58Z | 2015-30372 | 0 | 0 | 0900006481d7c9bb |
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;