documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
3 rows where docket_id = "EPA-HQ-ORD-2009-0891" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- EPA 3
| 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-2009-0891-0003 | EPA | None EPA-HQ-ORD-2009-0891 | Minutes from meeting of the USEPA and Human Studies Review Board (HSRB) on December 16, 2009 Public Teleconference Meeting | Supporting & Related Material | Meeting/Teleconference Materials | 2010-01-12T05:00:00Z | 2010 | 1 | 2010-07-15T19:27:55Z | 0 | 0 | 0900006480a7734a | |||
| EPA-HQ-ORD-2009-0891-0002 | EPA | None EPA-HQ-ORD-2009-0891 | Letter to Kevin P. Teichman, Acting Science Advisor, Office of the Science Advisor from Sean Philpott, Chair, Human Studies Review Board (HSRB), USEPA | Supporting & Related Material | Letter, Memorandum, Email | 2009-12-15T05:00:00Z | 2009 | 12 | 2010-07-15T19:27:46Z | 0 | 0 | 0900006480a64f6c | |||
| EPA-HQ-ORD-2009-0891-0001 | EPA | None EPA-HQ-ORD-2009-0891 | Human Studies Review Board (HSRB); Notification of a Public Teleconference to Review Its Draft Report From the October 20-21, 2009 HSRB Meeting | Notice | Federal Register Document | 2009-12-01T05:00:00Z | 2009 | 12 | 2009-12-01T05:00:00Z | 2009-12-17T04:59:59Z | 2010-07-15T19:27:43Z | E9-28700 | 0 | 0 | 0900006480a60dc7 |
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;