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-0081" 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-0081-0021 | EPA | None EPA-HQ-OPPT-2015-0081 | 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:36:15Z | 0 | 0 | 0900006481dc95cd | |||
| EPA-HQ-OPPT-2015-0081-0020 | EPA | None EPA-HQ-OPPT-2015-0081 | 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:36:10Z | 0 | 0 | 0900006481dc95cc | |||
| EPA-HQ-OPPT-2015-0081-0022 | EPA | None EPA-HQ-OPPT-2015-0081 | 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:36:19Z | 0 | 0 | 0900006481dc95ce | |||
| EPA-HQ-OPPT-2015-0081-0023 | EPA | None EPA-HQ-OPPT-2015-0081 | Letter to Irina Myers, Office of Pollution Prevention and Toxics (OPPT), USEPA, from Terry Rambler, Chairman, San Carlos Apache Tribe (Tribe) | Supporting & Related Material | Letter | 2016-01-05T05:00:00Z | 2016 | 1 | 2016-01-06T01:36:24Z | 0 | 0 | 0900006481dcadd9 | |||
| EPA-HQ-OPPT-2015-0081-0019 | EPA | None EPA-HQ-OPPT-2015-0081 | 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:47:02Z | 0 | 0 | 0900006481db7a72 | |||
| EPA-HQ-OPPT-2015-0081-0017 | EPA | None EPA-HQ-OPPT-2015-0081 | Regional Tribal Operations Committee (RTOC) Comments on Flame Retardants | Supporting & Related Material | Letter | 2015-12-17T05:00:00Z | 2015 | 12 | 2015-12-18T01:46:23Z | 0 | 0 | 0900006481d9d843 | |||
| EPA-HQ-OPPT-2015-0081-0018 | EPA | None EPA-HQ-OPPT-2015-0081 | Yurok Comments to Flame Retardants December 2015 | Supporting & Related Material | Letter | 2015-12-17T05:00:00Z | 2015 | 12 | 2015-12-18T01:46:28Z | 0 | 0 | 0900006481d9d844 | |||
| EPA-HQ-OPPT-2015-0081-0005 | EPA | None EPA-HQ-OPPT-2015-0081 | Extension of public comment period for TSCA Work Plan Chemical problem formulation and initial assessment documents for Cyclic Aliphatic Bromides (HBCD). flame retardant clusters | Other | Memorandum to Open a Docket | 2015-10-15T04:00:00Z | 2015 | 10 | 2015-10-15T04:00:00Z | 2015-11-28T22:27:14Z | 0 | 0 | 0900006481cccfdc | ||
| EPA-HQ-OPPT-2015-0081-0001 | EPA | None EPA-HQ-OPPT-2015-0081 | 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:13Z | 2015-20370 | 0 | 0 | 0900006481c27956 |
| EPA-HQ-OPPT-2015-0081-0002 | EPA | None EPA-HQ-OPPT-2015-0081 | HBCD Problem Formulation | Supporting & Related Material | Work Plan | 2015-08-18T04:00:00Z | 2015 | 8 | 2015-08-18T14:42:35Z | 0 | 0 | 0900006481c1b4cd |
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;