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-2013-0399" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_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-2013-0399-0205 | EPA | None EPA-HQ-OPPT-2013-0399 | Environment Canada 2008. Canadian Environmental Protection Act, 1999 Follow-up Report on a PSL1 Assessment for Which Data Were Insufficient to Conclude Whether the Substances Were “Toxic” to the Environment and to the Human Health: Chlorinated Paraffins. August 2008 | Supporting & Related Material | Report | 2016-02-12T05:00:00Z | 2016 | 2 | 2016-02-13T01:43:20Z | 0 | 0 | 0900006481e33921 | |||
| EPA-HQ-OPPT-2013-0399-0200 | EPA | None EPA-HQ-OPPT-2013-0399 | Significant New Use Rule on Certain Chemical Substances | Rule | 2016-02-12T05:00:00Z | 2016 | 2 | 2016-02-12T18:33:35Z | 2016-02952 | 0 | 0 | 0900006481e6956c | |||
| EPA-HQ-OPPT-2013-0399-0207 | EPA | None EPA-HQ-OPPT-2013-0399 | Tomy et al. 1997: Quantifying C10-C13 Polychloroalkanes in Environmental Samples by High-Resolution Gas Chromatography/Electron Capture Negative Ion High-Resolution Mass Spectrometry | Supporting & Related Material | Publication - Copyrighted Materials | 2016-02-12T05:00:00Z | 2016 | 2 | 2016-02-13T01:43:30Z | 0 | 0 | 0900006481e33010 | |||
| EPA-HQ-OPPT-2013-0399-0204 | EPA | None EPA-HQ-OPPT-2013-0399 | EU RA MCCP. Risk Assessment of Alkanes, C14-17 Chloro. Rapporteur: United Kingdom | Supporting & Related Material | Risk Assessment | 2016-02-12T05:00:00Z | 2016 | 2 | 2016-02-13T01:43:11Z | 0 | 0 | 0900006481e33a5b | |||
| EPA-HQ-OPPT-2013-0399-0201 | EPA | None EPA-HQ-OPPT-2013-0399 | Category LCCPs SIAR 22072009 | Supporting & Related Material | Report | 2016-02-12T05:00:00Z | 2016 | 2 | 2016-02-13T01:43:01Z | 0 | 0 | 0900006481e37474 | |||
| EPA-HQ-OPPT-2013-0399-0202 | EPA | None EPA-HQ-OPPT-2013-0399 | UK LCCP Risk Assessment | Supporting & Related Material | Report | 2016-02-12T05:00:00Z | 2016 | 2 | 2016-02-13T01:43:06Z | 0 | 0 | 0900006481e33a5d | |||
| EPA-HQ-OPPT-2013-0399-0210 | EPA | None EPA-HQ-OPPT-2013-0399 | Arnot 2013: Comments on Preliminary Bioaccumulation Assessment of Medium Chain Chlorinated Paraffins (MCCPs) | Supporting & Related Material | Report | 2016-02-12T05:00:00Z | 2016 | 2 | 2016-02-13T01:43:46Z | 0 | 0 | 0900006481e32f9c | |||
| EPA-HQ-OPPT-2013-0399-0203 | EPA | None EPA-HQ-OPPT-2013-0399 | Final LCCP SIAP | Supporting & Related Material | Technical Support Document | 2016-02-12T05:00:00Z | 2016 | 2 | 2016-02-13T01:43:16Z | 0 | 0 | 0900006481e33a5c | |||
| EPA-HQ-OPPT-2013-0399-0206 | EPA | None EPA-HQ-OPPT-2013-0399 | ECB 2007, European Chemical Bureau (ECB) PBT Working Group. Results of the Evaluation of the PBT/VPVB Properties of: Paraffin waxes and Hydrocarbon waxes, chloro | Supporting & Related Material | Fact/Data Sheet | 2016-02-12T05:00:00Z | 2016 | 2 | 2016-02-13T01:43:25Z | 0 | 0 | 0900006481e33920 | |||
| EPA-HQ-OPPT-2013-0399-0209 | EPA | None EPA-HQ-OPPT-2013-0399 | Gobas et al - 2009: Revisiting Bioaccumulation Criteria for POPs and PBT Assessments. Integrated Environmental Assessment and Management | Supporting & Related Material | Publication - Copyrighted Materials | 2016-02-12T05:00:00Z | 2016 | 2 | 2016-02-13T01:43:40Z | 0 | 0 | 0900006481e32f9d | |||
| EPA-HQ-OPPT-2013-0399-0208 | EPA | None EPA-HQ-OPPT-2013-0399 | Thompson and Vaughan 2014: Medium‐Chain Chlorinated Paraffins (MCCPs): A Review of Bioaccumulation Potential in the Aquatic Environment | Supporting & Related Material | Publication - Copyrighted Materials | 2016-02-12T05:00:00Z | 2016 | 2 | 2016-02-13T01:43:35Z | 0 | 0 | 0900006481e32f9e |
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;