documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "EPA-HQ-OPPT-2017-0559" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, 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-OPPT-2017-0559-0904 | EPA | None EPA-HQ-OPPT-2017-0559 | Response to Comments on the Draft Strategic Plan to Promote the Development and Implementation of Alternative Test Methods | Supporting & Related Material | Comment Response | 2018-07-03T04:00:00Z | 2018 | 7 | 2018-07-08T15:45:08Z | 0 | 0 | 090000648346497d | |||
| EPA-HQ-OPPT-2017-0559-0905 | EPA | None EPA-HQ-OPPT-2017-0559 | List of Alternative Test Methods and Strategies (or New Approach Methodologies [NAMs]) June 22, 2018 | Supporting & Related Material | Report | 2018-07-03T04:00:00Z | 2018 | 7 | 2018-07-08T15:45:10Z | 0 | 0 | 090000648346497e | |||
| EPA-HQ-OPPT-2017-0559-0906 | EPA | None EPA-HQ-OPPT-2017-0559 | Strategic Plan to Promote the Development and Implementation of Alternative Test Methods Within the TSCA Program | Supporting & Related Material | Publication - USEPA | 2018-07-03T04:00:00Z | 2018 | 7 | 2018-07-08T15:45:07Z | 0 | 0 | 090000648346497f | |||
| EPA-HQ-OPPT-2017-0559-0903 | EPA | None EPA-HQ-OPPT-2017-0559 | Final Strategic Plan to Promote Development and Implementation of Alternative Test Methods Supporting Toxic Substances Control Act | Notice | Notice of Data Availability | 2018-06-27T04:00:00Z | 2018 | 6 | 2018-06-27T15:20:49Z | 2018-13833 | 0 | 0 | 0900006483468f92 | ||
| EPA-HQ-OPPT-2017-0559-0902 | EPA | None EPA-HQ-OPPT-2017-0559 | Draft TSCA Alternative Testing Methods Strategic Plan Public Meeting Agenda | Supporting & Related Material | Meeting Materials | 2018-06-20T04:00:00Z | 2018 | 6 | 2018-06-21T01:07:51Z | 0 | 0 | 090000648342f518 | |||
| EPA-HQ-OPPT-2017-0559-0718 | EPA | None EPA-HQ-OPPT-2017-0559 | TSCA Alternative Testing Methods Draft Strategic Plan; Extension of Comment Period | Notice | Extension of Comment Period | 2018-04-27T04:00:00Z | 2018 | 4 | 2018-04-27T14:29:59Z | 2018-08974 | 0 | 0 | 09000064831ea73d | ||
| EPA-HQ-OPPT-2017-0559-0585 | EPA | None EPA-HQ-OPPT-2017-0559 | Memo authorizing the opening of a comment period for this docket. | Other | Memorandum to Open a Docket | 2018-03-12T04:00:00Z | 2018 | 3 | 2018-03-12T04:00:00Z | 2018-05-12T03:59:59Z | 2018-04-29T15:32:10Z | 0 | 0 | 0900006482fc1274 | |
| EPA-HQ-OPPT-2017-0559-0582 | EPA | None EPA-HQ-OPPT-2017-0559 | TSCA Alternative Testing Methods Draft Strategic Plan; Notice of Availability and Notice of Public Meeting | Notice | 2018-03-12T04:00:00Z | 2018 | 3 | 2018-03-13T13:09:48Z | 2018-04938 | 0 | 0 | 0900006482ffda37 | |||
| EPA-HQ-OPPT-2017-0559-0583 | EPA | None EPA-HQ-OPPT-2017-0559 | Response to Comments on the Materials Presented at the November 2nd Expert/Public Meeting on the Strategic Plan for Developing and Implementing Alternative Test Methods and Strategies to Reduce, Refine or Replace Vertebrate Animal Testing Under the Toxic Substances Control Act (TSCA) | Supporting & Related Material | Comment Response | 2018-03-12T04:00:00Z | 2018 | 3 | 2018-03-13T01:05:55Z | 0 | 0 | 0900006482fbe8a7 | |||
| EPA-HQ-OPPT-2017-0559-0584 | EPA | None EPA-HQ-OPPT-2017-0559 | Strategic Plan to Promote the Development and Implementation of Alternative Test Methods (Draft) | Supporting & Related Material | Environmental Impact Statement | 2018-03-12T04:00:00Z | 2018 | 3 | 2018-03-13T01:06:08Z | 0 | 0 | 0900006482fbeec5 |
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;