documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-HQ-OPP-2007-0997" and posted_year = 2008 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), 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-2007-0997-0020 | EPA | None EPA-HQ-OPP-2007-0997 | Chitin/Chitosan, Farnesol/Nerolidol and Nosema locustae Final Registration Review Decision; Notice of Availability | Notice | Federal Register Document | 2008-12-24T05:00:00Z | 2008 | 12 | 2008-12-24T05:00:00Z | 2008-12-24T19:38:10Z | E8-30496 | 0 | 0 | 09000064807f932d | |
| EPA-HQ-OPP-2007-0997-0019 | EPA | None EPA-HQ-OPP-2007-0997 | Nosema (Paranosema) locustae Final Registration Review Decision | Supporting & Related Material | 2008-12-09T05:00:00Z | 2008 | 12 | 2008-12-20T16:34:55Z | 0 | 0 | 09000064807c3e81 | ||||
| EPA-HQ-OPP-2007-0997-0018 | EPA | None EPA-HQ-OPP-2007-0997 | Nosema (Paranosema) locustae Proposed Registration Review Final Decision - Case 4104 | Supporting & Related Material | 2008-09-03T04:00:00Z | 2008 | 9 | 2008-09-03T17:55:26Z | 0 | 0 | 09000064806ce375 | ||||
| EPA-HQ-OPP-2007-0997-0014 | EPA | None EPA-HQ-OPP-2007-0997 | Attachment K: Review of Product Identity/Human Health for the RED | Supporting & Related Material | Letter, Memorandum, Email | 2008-07-08T04:00:00Z | 2008 | 7 | 2008-07-08T13:44:13Z | 0 | 0 | 090000648063fcf4 | |||
| EPA-HQ-OPP-2007-0997-0017 | EPA | None EPA-HQ-OPP-2007-0997 | Index of Nosema locustae Documents - Revised | Supporting & Related Material | Index | 2008-07-08T04:00:00Z | 2008 | 7 | 2008-07-08T13:44:16Z | 0 | 0 | 090000648063fed3 | |||
| EPA-HQ-OPP-2007-0997-0015 | EPA | None EPA-HQ-OPP-2007-0997 | Atachment L: Non-target Plant Study Waiver | Supporting & Related Material | Letter, Memorandum, Email | 2008-07-08T04:00:00Z | 2008 | 7 | 2008-07-08T13:44:14Z | 0 | 0 | 090000648063fd6e | |||
| EPA-HQ-OPP-2007-0997-0016 | EPA | None EPA-HQ-OPP-2007-0997 | Attachment M: EEB Science Chapter for the RED | Supporting & Related Material | Letter, Memorandum, Email | 2008-07-08T04:00:00Z | 2008 | 7 | 2008-07-08T13:44:15Z | 0 | 0 | 090000648063fda1 | |||
| EPA-HQ-OPP-2007-0997-0013 | EPA | None EPA-HQ-OPP-2007-0997 | Nosema (Paranosema) locustae Final Work Plan; Registration Review - Case 4104 | Supporting & Related Material | Other | 2008-03-19T04:00:00Z | 2008 | 3 | 2008-03-19T12:55:20Z | 0 | 0 | 09000064803fef87 |
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;