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-2012-0018" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, 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-2012-0018-0631 | EPA | None EPA-HQ-OPPT-2012-0018 | Transcript of April 28 2014 Public Meeting | Supporting & Related Material | Transcript | 2014-08-22T04:00:00Z | 2014 | 8 | 2014-08-23T03:52:35Z | 0 | 0 | 090000648182c793 | |||
| EPA-HQ-OPPT-2012-0018-0622 | EPA | None EPA-HQ-OPPT-2012-0018 | ACC and CPA Meeting Notes, July 2014 | Supporting & Related Material | Meeting Materials | 2014-07-09T04:00:00Z | 2014 | 7 | 2014-07-18T18:46:05Z | 0 | 0 | 090000648178c0f7 | |||
| EPA-HQ-OPPT-2012-0018-0604 | EPA | None EPA-HQ-OPPT-2012-0018 | Formaldehyde Emission Standards for Composite Wood Products | Proposed Rule | 2014-05-09T04:00:00Z | 2014 | 5 | 2014-07-23T01:04:15Z | 2014-10809 | 0 | 0 | 09000064816ec893 | |||
| EPA-HQ-OPPT-2012-0018-0603 | EPA | None EPA-HQ-OPPT-2012-0018 | Extension of Comment Period: Formaldehyde Emissions Standards for Composite Wood Products | Other | Memorandum to Open a Docket | 2014-05-06T04:00:00Z | 2014 | 5 | 2014-05-06T04:00:00Z | 2014-05-06T18:26:46Z | 0 | 0 | 09000064816e4c73 | ||
| EPA-HQ-OPPT-2012-0018-0598 | EPA | None EPA-HQ-OPPT-2012-0018 | Letter to the National Program Chemicals Division, Office of Pollution Prevention and Toxics (OPPT), Document Control Office (DCO), USEPA, from Yeo Heng Hau, Chief Executive Officer, on behalf of the Malaysian Timber Council (MTC) | Supporting & Related Material | Letter | 2014-04-18T04:00:00Z | 2014 | 4 | 2014-04-18T14:04:24Z | 0 | 0 | 09000064816b6bfa | |||
| EPA-HQ-OPPT-2012-0018-0597 | EPA | None EPA-HQ-OPPT-2012-0018 | Formaldehyde Emissions Standards for Composite Wood Products: Public Meeting | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2014-04-08T04:00:00Z | 2014 | 4 | 2014-04-08T04:00:00Z | 2014-05-27T03:59:59Z | 2014-08-12T01:03:28Z | 2014-07696 | 0 | 0 | 09000064816a7d51 |
| EPA-HQ-OPPT-2012-0018-0594 | EPA | None EPA-HQ-OPPT-2012-0018 | 03-18-14 CARB Workshop Presentation | Supporting & Related Material | Meeting Materials | 2014-03-24T04:00:00Z | 2014 | 3 | 2014-03-29T12:18:07Z | 0 | 0 | 090000648166cae4 | |||
| EPA-HQ-OPPT-2012-0018-0596 | EPA | None EPA-HQ-OPPT-2012-0018 | Draft Amended CARB ATCM 03-2014 | Supporting & Related Material | Publication - Previous/Related FR Notice | 2014-03-24T04:00:00Z | 2014 | 3 | 2014-03-29T12:17:53Z | 0 | 0 | 090000648166d05a | |||
| EPA-HQ-OPPT-2012-0018-0595 | EPA | None EPA-HQ-OPPT-2012-0018 | CARB-Laminated-Discussion 03-18-2014 | Supporting & Related Material | Fact/Data Sheet | 2014-03-24T04:00:00Z | 2014 | 3 | 2014-03-29T12:17:39Z | 0 | 0 | 090000648166cae6 | |||
| EPA-HQ-OPPT-2012-0018-0593 | EPA | None EPA-HQ-OPPT-2012-0018 | Letter to OPPT, Document Control Office (DCO), USEPA, from Kris Wijnendaele, Secretary General, European Panel Federation (EPF) | Supporting & Related Material | Letter | 2014-02-06T05:00:00Z | 2014 | 2 | 2014-02-06T16:45:44Z | 0 | 0 | 09000064815439d7 |
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;