documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "EPA-HQ-OPP-2015-0032" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, posted_date (date), comment_start_date (date), comment_end_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-0032-0011 | EPA | None EPA-HQ-OPP-2015-0032 | Petitions: Residues of Pesticide Chemicals in or on Various Commodities | Proposed Rule | 2015-11-25T05:00:00Z | 2015 | 11 | 2015-11-25T16:45:00Z | 2015-29893 | 0 | 0 | 0900006481d72ab2 | |||
| EPA-HQ-OPP-2015-0032-0010 | EPA | None EPA-HQ-OPP-2015-0032 | Pesticide Petitions Filed for Residues of Pesticide Chemicals in or on Various Commodities | Proposed Rule | Petition | 2015-11-23T05:00:00Z | 2015 | 11 | 2015-11-23T18:54:05Z | 2015-29808 | 0 | 0 | 0900006481d6949b | ||
| EPA-HQ-OPP-2015-0032-0009 | EPA | None EPA-HQ-OPP-2015-0032 | Pesticide Petitions Filed for Residues of Pesticide Chemicals in or on Various Commodities | Proposed Rule | Petition | 2015-11-04T05:00:00Z | 2015 | 11 | 2015-11-04T05:00:00Z | 2015-12-05T04:59:59Z | 2015-11-05T01:47:03Z | 2015-28102 | 0 | 0 | 0900006481d0e51b |
| EPA-HQ-OPP-2015-0032-0008 | EPA | None EPA-HQ-OPP-2015-0032 | Pesticide Petitions Filed for Residues of Pesticide Chemicals in or on Various Commodities | Proposed Rule | Petition | 2015-10-21T04:00:00Z | 2015 | 10 | 2015-10-21T17:03:07Z | 2015-26779 | 0 | 0 | 0900006481cdcb8a | ||
| EPA-HQ-OPP-2015-0032-0007 | EPA | None EPA-HQ-OPP-2015-0032 | Pesticide Petitions Filed for Residues of Pesticide Chemicals in or on Various Commodities | Proposed Rule | 2015-09-09T04:00:00Z | 2015 | 9 | 2015-09-09T16:58:35Z | 2015-22714 | 0 | 0 | 0900006481c61a1b | |||
| EPA-HQ-OPP-2015-0032-0006 | EPA | None EPA-HQ-OPP-2015-0032 | Petitions: Pesticide Petitions Filed for Residues of Pesticide Chemicals in or on Various | Proposed Rule | 2015-08-26T04:00:00Z | 2015 | 8 | 2015-08-26T04:00:00Z | 2015-08-26T14:16:44Z | 2015-21188 | 0 | 0 | 0900006481c3a86c | ||
| EPA-HQ-OPP-2015-0032-0005 | EPA | None EPA-HQ-OPP-2015-0032 | Receipt of Several Pesticide Petitions Filed for Residues of Pesticide Chemicals in or on Various Commodities | Proposed Rule | 2015-07-17T04:00:00Z | 2015 | 7 | 2015-07-17T17:09:56Z | 2015-17674 | 0 | 0 | 0900006481b8e3e7 | |||
| EPA-HQ-OPP-2015-0032-0004 | EPA | None EPA-HQ-OPP-2015-0032 | Receipt of Several Pesticide Petitions Filed for Residues of Pesticide Chemicals in or on Various Commodities | Proposed Rule | 2015-05-20T04:00:00Z | 2015 | 5 | 2015-05-20T15:58:17Z | 2015-12238 | 0 | 0 | 0900006481aeafb3 | |||
| EPA-HQ-OPP-2015-0032-0003 | EPA | None EPA-HQ-OPP-2015-0032 | Pesticide Petitions: Residues of Pesticide Chemicals in or on Various Commodities | Proposed Rule | 2015-04-22T04:00:00Z | 2015 | 4 | 2015-04-22T19:59:22Z | 2015-09209 | 0 | 0 | 0900006481ab3552 | |||
| EPA-HQ-OPP-2015-0032-0002 | EPA | None EPA-HQ-OPP-2015-0032 | Pesticide Tolerances: Petitions Filed for Residues of Pesticide Chemicals in or on Various Commodities | Proposed Rule | 2015-03-04T05:00:00Z | 2015 | 3 | 2015-03-04T22:30:57Z | 2015-04281 | 0 | 0 | 0900006481a2a9b2 | |||
| EPA-HQ-OPP-2015-0032-0001 | EPA | None EPA-HQ-OPP-2015-0032 | Pesticide Petitions Filed for Residues of Pesticide Chemicals in or on Various Commodities | Proposed Rule | 2015-02-11T05:00:00Z | 2015 | 2 | 2015-02-11T18:23:23Z | 2015-02611 | 0 | 0 | 09000064819fe88e |
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;