documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "EPA-HQ-OPPT-2014-0730" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, withdrawn, 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-HQ-OPPT-2014-0730-0028 | EPA | None EPA-HQ-OPPT-2014-0730 | 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:51Z | 0 | 0 | 0900006481db7976 | |||
| EPA-HQ-OPPT-2014-0730-0027 | EPA | None EPA-HQ-OPPT-2014-0730 | Letter to Irina Myers, OPPT, USEPA, from James Dunlap, Tribal Chairman, Yurok Tribal Council | Supporting & Related Material | Letter | 2015-12-15T05:00:00Z | 2015 | 12 | 2015-12-16T01:39:28Z | 0 | 0 | 0900006481d9d847 | |||
| EPA-HQ-OPPT-2014-0730-0026 | EPA | None EPA-HQ-OPPT-2014-0730 | Letter to Irina Myers, USEPA, from Billy Maines, Chair, Region 10 RTOC, Curyung Tribal Council | Supporting & Related Material | Letter | 2015-12-15T05:00:00Z | 2015 | 12 | 2015-12-16T01:39:33Z | 0 | 0 | 0900006481d9d846 | |||
| EPA-HQ-OPPT-2014-0730-0010 | EPA | None EPA-HQ-OPPT-2014-0730 | Extension of public comment period for TSCA Work Plan Chemical problem formulation and initial assessment documents for Brominated Bisphenol A (TBBPA) flame retardant clusters | Other | Memorandum to Open a Docket | 2015-10-15T04:00:00Z | 2015 | 10 | 2015-10-15T04:00:00Z | 2015-11-21T22:17:45Z | 0 | 0 | 0900006481ccd360 | ||
| EPA-HQ-OPPT-2014-0730-0007 | EPA | None EPA-HQ-OPPT-2014-0730 | TBBPA Problem Formulation New August 2015 | Supporting & Related Material | Report | 2015-09-02T04:00:00Z | 2015 | 9 | 2015-09-02T19:03:09Z | 0 | 0 | 0900006481c4e8f5 | |||
| EPA-HQ-OPPT-2014-0730-0005 | EPA | None EPA-HQ-OPPT-2014-0730 | Supplemental File 4 CARC Report | Supporting & Related Material | Report | 2015-08-18T04:00:00Z | 2015 | 8 | 2015-08-18T14:38:22Z | 0 | 0 | 0900006481c1d061 | |||
| EPA-HQ-OPPT-2014-0730-0006 | EPA | None EPA-HQ-OPPT-2014-0730 | Supplemental File 1 TBBPA Biomonitoring | Supporting & Related Material | Report | 2015-08-18T04:00:00Z | 2015 | 8 | 2015-08-18T14:38:09Z | 0 | 0 | 0900006481c1ecf5 | |||
| EPA-HQ-OPPT-2014-0730-0001 | EPA | None EPA-HQ-OPPT-2014-0730 | 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-18T13:00:39Z | 2015-20370 | 0 | 0 | 0900006481c27955 |
| EPA-HQ-OPPT-2014-0730-0002 | EPA | None EPA-HQ-OPPT-2014-0730 | Supplemental File 2 TBBPA Environmental Monitoring | Supporting & Related Material | Report | 2015-08-18T04:00:00Z | 2015 | 8 | 2015-08-18T14:38:17Z | 0 | 0 | 0900006481c1cd4d | |||
| EPA-HQ-OPPT-2014-0730-0003 | EPA | None EPA-HQ-OPPT-2014-0730 | Supplemental File 3 TBBPA Residential Monitoring | Supporting & Related Material | Report | 2015-08-18T04:00:00Z | 2015 | 8 | 2015-08-18T14:38:03Z | 0 | 0 | 0900006481c1cc67 | |||
| EPA-HQ-OPPT-2014-0730-0004 | EPA | None EPA-HQ-OPPT-2014-0730 | Tetrabromobisphenol A (TBBPA) Problem Formulation | Supporting & Related Material | 2015-08-18T00:00:00Z | 2015 | 8 | 2015-08-24T19:56:51Z | 0 | 1 | 0900006481c1cc7a |
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;