documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "EPA-HQ-OPPT-2015-0068" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- EPA 10
| 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-OPPT-2015-0068-0023 | EPA | None EPA-HQ-OPPT-2015-0068 | Letter to Irina Myers, Office of Pollution Prevention and Toxics (OPPT), USEPA, from Liana Onnen, Tribal Counsel Chairperson, Prairie Band Potawatomi Nation (PBPN) | Supporting & Related Material | Letter | 2016-01-05T05:00:00Z | 2016 | 1 | 2016-01-06T01:35:53Z | 0 | 0 | 0900006481dc95c9 | |||
| EPA-HQ-OPPT-2015-0068-0025 | EPA | None EPA-HQ-OPPT-2015-0068 | Letter to Irina Myers, Office of Pollution Prevention and Toxics (OPPT), USEPA, from Terry Rambler, Chairperson, San Carlos Apache Tribe (Tribe) | Supporting & Related Material | Letter | 2016-01-05T05:00:00Z | 2016 | 1 | 2016-01-06T01:36:03Z | 0 | 0 | 0900006481dc95cb | |||
| EPA-HQ-OPPT-2015-0068-0024 | EPA | None EPA-HQ-OPPT-2015-0068 | Letter to Irina Myers, Office of Pollution Prevention and Toxics (OPPT), USEPA, from Liana Onnen, Tribal Counsel Chairperson, Prairie Band Potawatomi Nation (PBPN) | Supporting & Related Material | Letter | 2016-01-05T05:00:00Z | 2016 | 1 | 2016-01-06T01:35:57Z | 0 | 0 | 0900006481dc95ca | |||
| EPA-HQ-OPPT-2015-0068-0022 | EPA | None EPA-HQ-OPPT-2015-0068 | Letter to Irina Myers, Office of Pollution Prevention and Toxics (OPPT), USEPA, from Liana Onnen, Tribal Counsel Chairperson, Prairie Band Potawatomi Nation (PBPN) | Supporting & Related Material | Letter | 2016-01-05T05:00:00Z | 2016 | 1 | 2016-01-06T01:35:48Z | 0 | 0 | 0900006481dc95c8 | |||
| EPA-HQ-OPPT-2015-0068-0021 | EPA | None EPA-HQ-OPPT-2015-0068 | Letter to Irina Myers, Office of Pollution Prevention and Toxics (OPPT), USEPA, from Brenda Commander, Chief, Houlton Band of Maliseet Indians | Supporting & Related Material | Letter | 2015-12-22T05:00:00Z | 2015 | 12 | 2015-12-23T01:46:56Z | 0 | 0 | 0900006481db7a71 | |||
| EPA-HQ-OPPT-2015-0068-0019 | EPA | None EPA-HQ-OPPT-2015-0068 | Regional Tribal Operations Committee (RTOC) Comments on Flame Retardants | Supporting & Related Material | Letter | 2015-12-16T05:00:00Z | 2015 | 12 | 2015-12-17T01:46:22Z | 0 | 0 | 0900006481d9d840 | |||
| EPA-HQ-OPPT-2015-0068-0020 | EPA | None EPA-HQ-OPPT-2015-0068 | Yurok Comments to Flame Retardants December 2015 | Supporting & Related Material | Letter | 2015-12-16T05:00:00Z | 2015 | 12 | 2015-12-17T01:46:16Z | 0 | 0 | 0900006481d9d841 | |||
| EPA-HQ-OPPT-2015-0068-0005 | EPA | None EPA-HQ-OPPT-2015-0068 | Extension of public comment period for TSCA Work Plan Chemical problem formulation and initial assessment documents for Chlorinated Phosphate Esters (CPE) flame retardant cluster | Other | Memorandum to Open a Docket | 2015-10-15T04:00:00Z | 2015 | 10 | 2015-10-15T04:00:00Z | 2015-11-28T22:29:19Z | 0 | 0 | 0900006481ccd279 | ||
| EPA-HQ-OPPT-2015-0068-0002 | EPA | None EPA-HQ-OPPT-2015-0068 | Chlorinated Phosphate Ester Cluster Flame Retardants (CPEFR) Cluster Problem Formulation | Supporting & Related Material | Work Plan | 2015-08-18T04:00:00Z | 2015 | 8 | 2015-08-18T14:33:32Z | 0 | 0 | 0900006481c1b4c9 | |||
| EPA-HQ-OPPT-2015-0068-0001 | EPA | None EPA-HQ-OPPT-2015-0068 | Work Plan Chemical Problem Formulation and Initial Assessment and Data Needs Assessment Documents for Flame Retardant Clusters | Notice | Notice of Data Availability | 2015-08-18T04:00:00Z | 2015 | 8 | 2015-08-18T04:00:00Z | 2015-11-19T04:59:59Z | 2016-03-18T14:00:18Z | 2015-20370 | 0 | 0 | 0900006481c27954 |
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;