documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "EPA-HQ-OPP-2015-0021" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, 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-2015-0021-0016 | EPA | None EPA-HQ-OPP-2015-0021 | Pesticide Product Registrations: Applications for New Active Ingredients | Notice | 2016-12-13T05:00:00Z | 2016 | 12 | 2016-12-21T21:22:00Z | 2016-29887 | 0 | 0 | 09000064823fed41 | |||
| EPA-HQ-OPP-2015-0021-0015 | EPA | None EPA-HQ-OPP-2015-0021 | Pesticide Product Registrations; Applications: New Uses | Notice | 2016-11-10T05:00:00Z | 2016 | 11 | 2016-11-10T18:01:33Z | 2016-27192 | 0 | 0 | 090000648238740b | |||
| EPA-HQ-OPP-2015-0021-0014 | EPA | None EPA-HQ-OPP-2015-0021 | Pesticide Product Registrations; Applications: New Active Ingredients | Notice | 2016-11-10T05:00:00Z | 2016 | 11 | 2016-11-10T17:15:50Z | 2016-27202 | 0 | 0 | 09000064823874be | |||
| EPA-HQ-OPP-2015-0021-0013 | EPA | None EPA-HQ-OPP-2015-0021 | Pesticide Product Registrations: New Active Ingredients | Notice | Notice of Receipt of Petition | 2016-10-03T04:00:00Z | 2016 | 10 | 2016-10-06T01:39:48Z | 2016-23841 | 0 | 0 | 090000648228c51b | ||
| EPA-HQ-OPP-2015-0021-0012 | EPA | None EPA-HQ-OPP-2015-0021 | Pesticide Product Registrations: Applications for New Active Ingredients | Notice | 2016-08-18T04:00:00Z | 2016 | 8 | 2016-08-18T20:17:28Z | 2016-19762 | 0 | 0 | 0900006482180406 | |||
| EPA-HQ-OPP-2015-0021-0011 | EPA | None EPA-HQ-OPP-2015-0021 | Pesticide Product Registrations: Receipt of Applications for New Active Ingredients | Notice | 2016-05-25T04:00:00Z | 2016 | 5 | 2016-05-25T14:59:20Z | 2016-12359 | 0 | 0 | 0900006481fee835 | |||
| EPA-HQ-OPP-2015-0021-0010 | EPA | None EPA-HQ-OPP-2015-0021 | Pesticide Product Registration; Receipt of Applications for New Active Ingredients | Notice | 2016-03-16T04:00:00Z | 2016 | 3 | 2016-03-16T04:00:00Z | 2016-03-17T00:33:18Z | 2016-05819 | 0 | 0 | 0900006481ec83cc |
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;