documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "EPA-HQ-OPP-2017-0392" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-OPP-2017-0392-0004 | EPA | None EPA-HQ-OPP-2017-0392 | Human Health Assessment and Review of the Alternative Manufacturing Processes submitted by Verily Life Sciences, LLC and MosquitoMate Inc ., for Wolbachia pipientis wAlbB A e. aegypti EUP 89668-EUP-3. Decision #525795, DP# (438208) . | Supporting & Related Material | Risk Assessment | 2017-09-12T04:00:00Z | 2017 | 9 | 2017-09-14T04:52:26Z | 0 | 0 | 09000064827ad004 | |||
| EPA-HQ-OPP-2017-0392-0001 | EPA | None EPA-HQ-OPP-2017-0392 | Memorandum to Open Docket for Amendment Extention for the Experimental Use Permit for Wolbachia pipientis WB1 strain in Aedes aegypti (89668-EUP-3) | Other | Memorandum to Open a Docket | 2017-09-12T04:00:00Z | 2017 | 9 | 2017-09-12T04:00:00Z | 2017-09-14T04:52:44Z | 0 | 0 | 0900006482b2a7a9 | ||
| EPA-HQ-OPP-2017-0392-0003 | EPA | None EPA-HQ-OPP-2017-0392 | Experimental Use Permit Amendment and Extension for Wolbachia pipientis, wAlbB Strain in Male Aedes aegypti WB 1 Strain Mosquitoes (Including Egg, Larval, Pupal, and Adult Life Stages) in California, Florida, and Texas | Supporting & Related Material | Permit, Registration | 2017-09-12T04:00:00Z | 2017 | 9 | 2017-09-14T04:52:32Z | 0 | 0 | 09000064827ad003 | |||
| EPA-HQ-OPP-2017-0392-0002 | EPA | None EPA-HQ-OPP-2017-0392 | Ecological Risk Assessment for Wolbachia pipientis wAlbB Ae. aegypti EUP 89668-EUP-3 extension/amendment. Decision #525 795, DP#( 438208). | Supporting & Related Material | Risk Assessment | 2017-09-12T04:00:00Z | 2017 | 9 | 2017-09-14T04:52:38Z | 0 | 0 | 09000064827ad002 |
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;