documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "EPA-HQ-OPPT-2006-0341" 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)
document_type 2
agency_id 1
- EPA 5
| 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-2006-0341-0023 | EPA | None EPA-HQ-OPPT-2006-0341 | List of documents to be added to Docket No. EPA-HQ-OPPT-2006-0341 | Supporting & Related Material | Index | 2008-09-24T04:00:00Z | 2008 | 9 | 2008-09-24T11:43:12Z | 0 | 0 | 090000648070b7ea | |||
| EPA-HQ-OPPT-2006-0341-0016 | EPA | None EPA-HQ-OPPT-2006-0341 | Modification of the Voluntary Childrens Chemical Evaluation Program; Notice of Public Meeting | Notice | Federal Register Document | 2008-06-27T04:00:00Z | 2008 | 6 | 2008-06-27T13:22:36Z | E8-14528 | 0 | 0 | 090000648064327a | ||
| EPA-HQ-OPPT-2006-0341-0003 | EPA | None EPA-HQ-OPPT-2006-0341 | Methodology for Selecting Chemicals for the Voluntary Children's Chemical Evaluation Program (VCCEP) Pilot | Supporting & Related Material | Report | 2006-11-20T05:00:00Z | 2006 | 11 | 2006-11-20T14:22:29Z | 0 | 0 | 090000648015afc3 | |||
| EPA-HQ-OPPT-2006-0341-0002 | EPA | None EPA-HQ-OPPT-2006-0341 | Voluntary Children's Chemical Evaluation Program; Notice | Supporting & Related Material | Federal Register Document | 2006-11-20T05:00:00Z | 2006 | 11 | 2006-11-20T14:22:28Z | 0 | 0 | 090000648015afa9 | |||
| EPA-HQ-OPPT-2006-0341-0001 | EPA | None EPA-HQ-OPPT-2006-0341 | Implementation of the Pilot Voluntary Childrens Chemical Evaluation Program; Request for Comment | Notice | Federal Register Document | 2006-11-20T05:00:00Z | 2006 | 11 | 2006-11-20T05:00:00Z | 2007-01-20T04:59:59Z | 2008-01-08T21:11:44Z | E6-19574 | 0 | 0 | 09000064801e36fc |
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;