documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-HQ-ORD-2007-0664" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-ORD-2007-0664-0026 | EPA | None EPA-HQ-ORD-2007-0664 | Integrated Risk Information System; 2012 Program | Notice | 2012-05-07T04:00:00Z | 2012 | 5 | 2016-06-10T20:37:11Z | 2012-10935 | 0 | 0 | 09000064810065c7 | |||
| EPA-HQ-ORD-2007-0664-0025 | EPA | None EPA-HQ-ORD-2007-0664 | Announcement of Availability of Literature Searches for IRIS Assessments: Integrated Risk Information System | Notice | 2012-04-06T04:00:00Z | 2012 | 4 | 2012-04-06T04:00:00Z | 2012-04-06T14:09:27Z | 2012-08209 | 0 | 0 | 0900006480feaa4f | ||
| EPA-HQ-ORD-2007-0664-0018 | EPA | None EPA-HQ-ORD-2007-0664 | Literature Searches for Integrated Risk Information System Assessments | Notice | Federal Register Document | 2011-03-11T05:00:00Z | 2011 | 3 | 2011-03-11T05:00:00Z | 2013-03-12T03:59:59Z | 2012-09-13T02:01:56Z | 2011-05629 | 0 | 0 | 0900006480c05c46 |
| EPA-HQ-ORD-2007-0664-0014 | EPA | None EPA-HQ-ORD-2007-0664 | Integrated Risk Information System (IRIS): Availability of Literature Searches for IRIS Assessments | Notice | Federal Register Document | 2010-12-10T05:00:00Z | 2010 | 12 | 2010-12-10T05:00:00Z | 2011-04-08T13:00:37Z | 2010-31079 | 0 | 0 | 0900006480bb387a | |
| EPA-HQ-ORD-2007-0664-0011 | EPA | None EPA-HQ-ORD-2007-0664 | Integrated Risk Information System (IRIS); Availability of Literature Searches for IRIS Assessments | Notice | Federal Register Document | 2010-05-07T04:00:00Z | 2010 | 5 | 2010-05-07T04:00:00Z | 2012-05-06T03:59:59Z | 2010-07-15T19:28:38Z | 2010-10855 | 0 | 0 | 0900006480ae8a6a |
| EPA-HQ-ORD-2007-0664-0009 | EPA | None EPA-HQ-ORD-2007-0664 | Integrated Risk Information System (IRIS); Announcement of Availability of Literature Searches for IRIS Assessments | Notice | Federal Register Document | 2009-11-02T05:00:00Z | 2009 | 11 | 2009-11-02T05:00:00Z | 2012-01-01T04:59:59Z | 2010-07-15T19:27:33Z | E9-26335 | 0 | 0 | 0900006480a4f424 |
| EPA-HQ-ORD-2007-0664-0006 | EPA | None EPA-HQ-ORD-2007-0664 | Integrated Risk Information System (IRIS); Announcement of Availability of Literature Searches for IRIS Assessments | Notice | Federal Register Document | 2008-04-25T04:00:00Z | 2008 | 4 | 2010-07-15T19:24:13Z | E8-08885 | 0 | 0 | 0900006480532be8 | ||
| EPA-HQ-ORD-2007-0664-0001 | EPA | None EPA-HQ-ORD-2007-0664 | Integrated Risk Information System (IRIS); Announcement of 2008 Program | Notice | Federal Register Document | 2007-12-21T05:00:00Z | 2007 | 12 | 2007-12-21T15:46:14Z | 2008-01-21T04:59:59Z | 2010-07-15T19:23:58Z | E7-24844 | 0 | 0 | 090000648037d56a |
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;