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-2002-0001" and posted_year = 2006 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, last_modified, posted_date (date), comment_start_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-2002-0001-0082 | EPA | None EPA-HQ-OPPT-2002-0001 | National Pollution Prevention and Toxics Advisory Committee (NPPTAC); Notice of Public Meeting; Cancellation | Notice | Federal Register Document | 2006-10-02T11:52:40Z | 2006 | 10 | 2006-10-02T11:52:40Z | 2008-01-08T21:13:52Z | 06-08433 | 0 | 0 | 09000064801d0a87 | |
| EPA-HQ-OPPT-2002-0001-0081 | EPA | None EPA-HQ-OPPT-2002-0001 | Notes from the 10th meeting of the National Pollution Prevention and Toxics Advisory Committee (NPPTAC) Meeting, held June 14-15, 2006. | Supporting & Related Material | Meeting/Teleconference Materials | 2006-09-18T04:00:00Z | 2006 | 9 | 2006-10-23T16:35:34Z | 0 | 0 | 09000064801c97d2 | |||
| EPA-HQ-OPPT-2002-0001-0080 | EPA | None EPA-HQ-OPPT-2002-0001 | National Pollution Prevention and Toxics Advisory Committee; Notice of Public Meeting | Notice | Federal Register Document | 2006-09-15T13:19:22Z | 2006 | 9 | 2006-09-15T13:19:22Z | 2008-01-08T21:18:51Z | E6-15339 | 0 | 0 | 09000064801cadf4 | |
| EPA-HQ-OPPT-2002-0001-0079 | EPA | None EPA-HQ-OPPT-2002-0001 | National Pollution Prevention and Toxics Advisory Committee (NPPTAC); Notice of Public Meeting | Notice | Federal Register Document | 2006-05-17T04:00:00Z | 2006 | 5 | 2006-05-17T04:00:00Z | 2008-01-08T21:16:42Z | E6-7412 | 0 | 0 | 0900006480173ede | |
| EPA-HQ-OPPT-2002-0001-0077 | EPA | None EPA-HQ-OPPT-2002-0001 | National Pollution Prevention and Toxics Advisory Committee (NPPTAC) Recommendation to the EPA Administrator and Deputy Administrator on High Production Volume (HPV) Communication | Supporting & Related Material | Other | 2006-04-24T04:00:00Z | 2006 | 4 | 2006-10-23T16:35:34Z | 0 | 0 | 0900006480162134 | |||
| EPA-HQ-OPPT-2002-0001-0078 | EPA | None EPA-HQ-OPPT-2002-0001 | National Pollution Prevention and Toxics Advisory Committee (NPPTAC) Recommendation to the EPA Administrator and Deputy Administrator on Incorporating the Functional Use Approach into OPPT Activities | Supporting & Related Material | Other | 2006-04-24T04:00:00Z | 2006 | 4 | 2006-10-23T16:35:34Z | 0 | 0 | 0900006480162180 | |||
| EPA-HQ-OPPT-2002-0001-0076 | EPA | None EPA-HQ-OPPT-2002-0001 | Notes from meeting between USEPA and the National Pollution Prevention and Toxics Advisory Committee (NPPTAC). | Supporting & Related Material | Meeting/Teleconference Materials | 2006-04-07T04:00:00Z | 2006 | 4 | 2006-10-23T16:35:34Z | 0 | 0 | 0900006480157ce5 | |||
| EPA-HQ-OPPT-2002-0001-0075 | EPA | None EPA-HQ-OPPT-2002-0001 | Summary of November 17, 2005 National Pollution Prevention and Toxics Advisory Committee (NPPTAC) meeting, via teleconference. | Supporting & Related Material | Meeting/Teleconference Materials | 2006-02-13T05:00:00Z | 2006 | 2 | 2006-10-23T16:35:34Z | 0 | 0 | 090000648012e262 | |||
| EPA-HQ-OPPT-2002-0001-0073 | EPA | None EPA-HQ-OPPT-2002-0001 | Overview Document on Nanoscale Materials | Supporting & Related Material | Other | 2006-01-24T05:00:00Z | 2006 | 1 | 2006-10-23T16:35:34Z | 0 | 0 | 090000648011a138 | |||
| EPA-HQ-OPPT-2002-0001-0072 | EPA | None EPA-HQ-OPPT-2002-0001 | Meeting summary from the National Pollution Prevention and Toxics Advisory Committee (NPPTAC) meeting held on October 13-14, 2005. | Supporting & Related Material | Meeting/Teleconference Materials | 2006-01-13T05:00:00Z | 2006 | 1 | 2006-10-23T16:35:34Z | 0 | 0 | 0900006480110f8e |
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;