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-2014-0773" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-2014-0773-0021 | EPA | None EPA-HQ-OPP-2014-0773 | Sodium 1-naphthaleneacetate Generic Data Call In GDCI-056007-1524 Response (AMVAC and Fine Agrochemicals) | Supporting & Related Material | Form | 2017-03-24T04:00:00Z | 2017 | 3 | 2017-03-25T00:32:52Z | 0 | 0 | 09000064824e67d0 | |||
| EPA-HQ-OPP-2014-0773-0016 | EPA | None EPA-HQ-OPP-2014-0773 | 1-Naphthaleneacetamide Generic Data Call In GDCI-056001-1520 Response (AMVAC) | Supporting & Related Material | Form | 2017-03-24T04:00:00Z | 2017 | 3 | 2017-03-25T00:32:37Z | 0 | 0 | 09000064824e670e | |||
| EPA-HQ-OPP-2014-0773-0019 | EPA | None EPA-HQ-OPP-2014-0773 | Ammonium 1-naphthaleneacetate Generic Data Call In GDCI-056004-1523 Response (AMVAC) | Supporting & Related Material | Form | 2017-03-24T04:00:00Z | 2017 | 3 | 2017-03-25T00:32:56Z | 0 | 0 | 09000064824e67ce | |||
| EPA-HQ-OPP-2014-0773-0023 | EPA | None EPA-HQ-OPP-2014-0773 | Sodium 1-naphthaleneacetate Generic Data Call In GDCI-056007-1524 Response (AMVAC and Fine Agrochemicals) | Supporting & Related Material | Form | 2017-03-24T04:00:00Z | 2017 | 3 | 2017-03-25T00:32:27Z | 0 | 0 | 09000064824e67d2 | |||
| EPA-HQ-OPP-2014-0773-0017 | EPA | None EPA-HQ-OPP-2014-0773 | 1-Naphthaleneacetic acid Generic Data Call In GDCI-056002-1521 Response (AMVAC) | Supporting & Related Material | Form | 2017-03-24T04:00:00Z | 2017 | 3 | 2017-03-25T00:32:42Z | 0 | 0 | 09000064824e670f | |||
| EPA-HQ-OPP-2014-0773-0018 | EPA | None EPA-HQ-OPP-2014-0773 | Potassium 1-naphthaleneacetate Generic Data Call In GDCI-056003-1522 Response (Fine Agrochemicals) | Supporting & Related Material | Form | 2017-03-24T04:00:00Z | 2017 | 3 | 2017-03-25T00:32:47Z | 0 | 0 | 09000064824e67cd | |||
| EPA-HQ-OPP-2014-0773-0020 | EPA | None EPA-HQ-OPP-2014-0773 | Ammonium 1-naphthaleneacetate Generic Data Call In GDCI-056004-1523 Response (Loveland and Amvac) | Supporting & Related Material | Form | 2017-03-24T04:00:00Z | 2017 | 3 | 2017-03-25T00:33:01Z | 0 | 0 | 09000064824e67cf | |||
| EPA-HQ-OPP-2014-0773-0022 | EPA | None EPA-HQ-OPP-2014-0773 | Sodium 1-naphthaleneacetate Generic Data Call In GDCI-056007-1524 Response (AMVAC and Fine Agrochemicals) | Supporting & Related Material | Form | 2017-03-24T04:00:00Z | 2017 | 3 | 2017-03-25T00:32:22Z | 0 | 0 | 09000064824e67d1 | |||
| EPA-HQ-OPP-2014-0773-0024 | EPA | None EPA-HQ-OPP-2014-0773 | Ethyl 1-naphthaleneacetate Generic Data Call In GDCI-056008-1525 Response (AMVAC) | Supporting & Related Material | Form | 2017-03-24T04:00:00Z | 2017 | 3 | 2017-03-25T00:32:32Z | 0 | 0 | 09000064824e67d3 |
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;