documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "EPA-HQ-OPPT-2018-0605" 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)
document_type 2
agency_id 1
- EPA 11
| 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-0605-0019 | EPA | None EPA-HQ-OPPT-2018-0605 | University of California San Francisco (UCSF) Nomination | Supporting & Related Material | Letter | 2019-02-13T05:00:00Z | 2019 | 2 | 2019-02-13T16:30:57Z | 0 | 0 | 09000064839bb7dd | |||
| EPA-HQ-OPPT-2018-0605-0014 | EPA | None EPA-HQ-OPPT-2018-0605 | American Public Health Association (APHA) Nominations | Supporting & Related Material | Letter | 2019-02-13T05:00:00Z | 2019 | 2 | 2019-02-13T16:30:51Z | 0 | 0 | 09000064839bb7d8 | |||
| EPA-HQ-OPPT-2018-0605-0016 | EPA | None EPA-HQ-OPPT-2018-0605 | BASF Nomination | Supporting & Related Material | Letter | 2019-02-13T05:00:00Z | 2019 | 2 | 2019-02-13T16:30:54Z | 0 | 0 | 09000064839bb7da | |||
| EPA-HQ-OPPT-2018-0605-0015 | EPA | None EPA-HQ-OPPT-2018-0605 | Bergeson & Campbell PC (B&C) Nominations 2 Names | Supporting & Related Material | Letter | 2019-02-13T05:00:00Z | 2019 | 2 | 2019-02-13T16:30:53Z | 0 | 0 | 09000064839bb7d9 | |||
| EPA-HQ-OPPT-2018-0605-0018 | EPA | None EPA-HQ-OPPT-2018-0605 | Environmental Defense Fund (EDF) comments on Science Advisory Committee on Chemicals (SACC) ad hoc Solicitation | Supporting & Related Material | Letter | 2019-02-13T05:00:00Z | 2019 | 2 | 2019-02-13T16:30:56Z | 0 | 0 | 09000064839bb7dc | |||
| EPA-HQ-OPPT-2018-0605-0017 | EPA | None EPA-HQ-OPPT-2018-0605 | Environmental Council of the States (ECOS) Nomination | Supporting & Related Material | Letter | 2019-02-13T05:00:00Z | 2019 | 2 | 2019-02-13T16:30:55Z | 0 | 0 | 09000064839bb7db | |||
| EPA-HQ-OPPT-2018-0605-0013 | EPA | None EPA-HQ-OPPT-2018-0605 | AFL-CIO Nomination | Supporting & Related Material | Letter | 2019-02-13T05:00:00Z | 2019 | 2 | 2019-02-13T16:30:50Z | 0 | 0 | 09000064839bb7d7 | |||
| EPA-HQ-OPPT-2018-0605-0012 | EPA | None EPA-HQ-OPPT-2018-0605 | Asbestos Disease Awareness Organization (ADAO) Nomination | Supporting & Related Material | Letter | 2019-02-13T05:00:00Z | 2019 | 2 | 2019-02-13T16:30:48Z | 0 | 0 | 09000064839bb7d6 | |||
| EPA-HQ-OPPT-2018-0605-0003 | EPA | None EPA-HQ-OPPT-2018-0605 | SACC Nominee Biosketches | Supporting & Related Material | Resume, Curriculum Vitae | 2018-12-14T05:00:00Z | 2018 | 12 | 2018-12-15T02:26:02Z | 0 | 0 | 090000648398b418 | |||
| EPA-HQ-OPPT-2018-0605-0002 | EPA | None EPA-HQ-OPPT-2018-0605 | Request for Comments on the Experts Nominated To Be Considered for Ad Hoc Participation and Possible Membership on the Toxic Substances Control Act (TSCA), Science Advisory Committee on Chemicals (SACC) | Notice | 2018-12-14T05:00:00Z | 2018 | 12 | 2018-12-14T05:00:00Z | 2019-01-15T04:59:59Z | 2019-01-16T02:01:05Z | 2018-27155 | 0 | 0 | 0900006483993645 | |
| EPA-HQ-OPPT-2018-0605-0001 | EPA | None EPA-HQ-OPPT-2018-0605 | Requests for Nominations: Experts to Consider for ad hoc Participation and Possible Membership on Toxic Substances Control Act, Science Advisory Committee on Chemicals | Notice | Request for Nominations | 2018-09-13T04:00:00Z | 2018 | 9 | 2018-12-06T20:39:41Z | 2018-19952 | 0 | 0 | 09000064836e60a3 |
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;