documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-HQ-OPP-2015-0022" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, posted_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-0022-0024 | EPA | None EPA-HQ-OPP-2015-0022 | Pesticide Product Registrations: Receipt of Applications for New Uses | Notice | 2016-12-15T05:00:00Z | 2016 | 12 | 2016-12-15T20:29:11Z | 2016-30178 | 0 | 0 | 090000648240b587 | |||
| EPA-HQ-OPP-2015-0022-0022 | EPA | None EPA-HQ-OPP-2015-0022 | Pesticide Product Registrations: Applications for New Uses; Correction | Notice | 2016-09-02T04:00:00Z | 2016 | 9 | 2016-09-08T16:04:36Z | 0 | 0 | 09000064821c13e4 | ||||
| EPA-HQ-OPP-2015-0022-0021 | EPA | None EPA-HQ-OPP-2015-0022 | Pesticide Product Registrations: Applications for New Uses | Notice | 2016-08-18T04:00:00Z | 2016 | 8 | 2016-08-18T15:32:59Z | 2016-19759 | 0 | 0 | 090000648218036d | |||
| EPA-HQ-OPP-2015-0022-0020 | EPA | None EPA-HQ-OPP-2015-0022 | Pesticide Product Registrations: Application for New Active Ingredient | Notice | 2016-07-22T04:00:00Z | 2016 | 7 | 2016-07-22T16:29:05Z | 2016-17409 | 0 | 0 | 09000064820ecfa8 | |||
| EPA-HQ-OPP-2015-0022-0019 | EPA | None EPA-HQ-OPP-2015-0022 | Pesticide Product Registrations: Receipt of Applications for New Uses | Notice | Notice of Receipt of Petition | 2016-07-22T04:00:00Z | 2016 | 7 | 2016-07-22T15:37:38Z | 2016-17407 | 0 | 0 | 09000064820eceac | ||
| EPA-HQ-OPP-2015-0022-0018 | EPA | None EPA-HQ-OPP-2015-0022 | Pesticide Product Registration: Applications for New Uses | Notice | 2016-06-02T04:00:00Z | 2016 | 6 | 2016-06-02T15:43:23Z | 2016-13029 | 0 | 0 | 0900006482008d19 | |||
| EPA-HQ-OPP-2015-0022-0016 | EPA | None EPA-HQ-OPP-2015-0022 | Pesticide Product Registrations; Receipt of Applications for New Uses | Notice | Notice of Receipt of Petition | 2016-05-10T04:00:00Z | 2016 | 5 | 2016-05-10T16:15:02Z | 2016-10992 | 0 | 0 | 0900006481fbd48a | ||
| EPA-HQ-OPP-2015-0022-0015 | EPA | None EPA-HQ-OPP-2015-0022 | Pesticide Product Registration; Receipt of Applications for New Uses | Notice | Notice of Receipt of Petition | 2016-04-04T04:00:00Z | 2016 | 4 | 2016-04-04T15:50:14Z | 2016-07655 | 0 | 0 | 0900006481f23c98 | ||
| EPA-HQ-OPP-2015-0022-0014 | EPA | None EPA-HQ-OPP-2015-0022 | Pesticide Product Registration; Receipt of Applications for New Uses | Notice | 2016-03-16T04:00:00Z | 2016 | 3 | 2016-03-16T16:06:15Z | 2016-05818 | 0 | 0 | 0900006481ec7703 |
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;