documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "EPA-HQ-ORD-2014-0527" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- EPA 7
| 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-ORD-2014-0527-0027 | EPA | None EPA-HQ-ORD-2014-0527 | ERRATA Sheet for Naphthalene IAP 09302021 | Supporting & Related Material | 2023-04-27T04:00:00Z | 2023 | 4 | 2023-04-28T00:52:56Z | 0 | 0 | 0900006485973906 | ||||
| EPA-HQ-ORD-2014-0527-0026 | EPA | None EPA-HQ-ORD-2014-0527 | Naphthalene IRIS IAP | Supporting & Related Material | Publication - USEPA | 2023-04-27T04:00:00Z | 2023 | 4 | 2023-04-28T00:53:08Z | 0 | 0 | 0900006485973905 | |||
| EPA-HQ-ORD-2014-0527-0021 | EPA | None EPA-HQ-ORD-2014-0527 | Availability of the Protocol for the Naphthalene IRIS Assessment | Notice | 2023-03-17T04:00:00Z | 2023 | 3 | 2023-03-17T04:00:00Z | 2023-04-18T03:59:59Z | 2023-04-22T01:00:25Z | 2023-05460 | 0 | 0 | 09000064857cb311 | |
| EPA-HQ-ORD-2014-0527-0020 | EPA | None EPA-HQ-ORD-2014-0527 | Naphthalene IAP Oral Testimony API Final | Supporting & Related Material | Public Hearing Transcript, Deposition, Testimony | 2021-12-03T05:00:00Z | 2021 | 12 | 2021-12-04T01:53:58Z | 0 | 0 | 0900006484e90c8a | |||
| EPA-HQ-ORD-2014-0527-0010 | EPA | None EPA-HQ-ORD-2014-0527 | IRIS Assessment Plan for Naphthalene | Notice | Extension of Comment Period | 2018-08-03T04:00:00Z | 2018 | 8 | 2018-12-06T23:52:40Z | 2018-16686 | 0 | 0 | 09000064835c60ae | ||
| EPA-HQ-ORD-2014-0527-0006 | EPA | None EPA-HQ-ORD-2014-0527 | IRIS Assessment Plan for Naphthalene | Notice | 2018-07-05T04:00:00Z | 2018 | 7 | 2018-07-05T04:00:00Z | 2018-09-06T03:59:59Z | 2018-09-06T01:02:28Z | 2018-14446 | 0 | 0 | 09000064834aa387 | |
| EPA-HQ-ORD-2014-0527-0001 | EPA | None EPA-HQ-ORD-2014-0527 | Memorandum Opening Docket for Public Access | Other | Memorandum to Open a Docket | 2014-07-15T04:00:00Z | 2014 | 7 | 2014-07-15T04:00:00Z | 2016-01-01T04:59:59Z | 2014-09-04T01:03:29Z | 0 | 0 | 09000064817ad04a |
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;