documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "EPA-HQ-OPPT-2018-0497" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-OPPT-2018-0497-0020 | EPA | None EPA-HQ-OPPT-2018-0497 | Prioritization 2024 Response to Comments | Supporting & Related Material | Comment Response | 2024-12-18T05:00:00Z | 2024 | 12 | 2024-12-19T01:45:03Z | 0 | 0 | 090000648687695f | |||
| EPA-HQ-OPPT-2018-0497-0019 | EPA | None EPA-HQ-OPPT-2018-0497 | High-Priority Substance Designations Under the Toxic Substances Control Act (TSCA) and Initiation of Risk Evaluation on High-Priority Substances; Notice of Availability | Notice | 2024-12-18T05:00:00Z | 2024 | 12 | 2024-12-18T05:00:00Z | 2024-12-19T01:44:49Z | 2024-29830 | 0 | 0 | 090000648687b87b | ||
| EPA-HQ-OPPT-2018-0497-0009 | EPA | None EPA-HQ-OPPT-2018-0497 | Acetaldehyde CASRN 75-07-0 Proposed Designation July 2024 | Supporting & Related Material | Publication - USEPA | 2024-07-25T04:00:00Z | 2024 | 7 | 2024-07-26T00:37:50Z | 0 | 0 | 09000064865fdc1d | |||
| EPA-HQ-OPPT-2018-0497-0008 | EPA | None EPA-HQ-OPPT-2018-0497 | Updated Search Strategies Used to Identify Potentially Relevant Discipline-Specific Information Proposed Designation July 2024 | Supporting & Related Material | 2024-07-25T04:00:00Z | 2024 | 7 | 2024-07-26T00:38:05Z | 0 | 0 | 09000064865fdc1c | ||||
| EPA-HQ-OPPT-2018-0497-0007 | EPA | None EPA-HQ-OPPT-2018-0497 | Proposed High-Priority Substance Designations under the Toxic Substances Control Act (TSCA); Notice of Availability | Notice | Notice of Data Availability | 2024-07-25T04:00:00Z | 2024 | 7 | 2024-07-25T04:00:00Z | 2024-10-24T03:59:59Z | 2024-10-25T01:00:46Z | 2024-16394 | 0 | 0 | 0900006486604fbe |
| EPA-HQ-OPPT-2018-0497-0002 | EPA | None EPA-HQ-OPPT-2018-0497 | Initiation of Prioritization Under the Toxic Substances Control Act (TSCA) | Notice | 2024-01-11T05:00:00Z | 2024 | 1 | 2024-01-11T05:00:00Z | 2024-03-19T03:59:59Z | 2024-03-19T01:04:07Z | 2023-27641 | 0 | 0 | 0900006486393769 | |
| EPA-HQ-OPPT-2018-0497-0001 | EPA | None EPA-HQ-OPPT-2018-0497 | Memo authorizing the opening of a comment period for this docket. | Other | Memorandum to Open a Docket | 2018-09-28T04:00:00Z | 2018 | 9 | 2018-09-28T04:00:00Z | 2019-12-02T04:59:59Z | 2018-12-06T19:11:38Z | 0 | 0 | 090000648377e18d |
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;