documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "EPA-HQ-ORD-2018-0280" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, 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 12
| 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-2018-0280-0021 | EPA | None EPA-HQ-ORD-2018-0280 | Protection of Human Research Subjects | Rule | Final Rule | 2019-07-23T04:00:00Z | 2019 | 7 | 2019-07-23T04:00:00Z | 2019-07-23T15:31:52Z | 2019-15665 | 0 | 0 | 0900006483da9f2f | |
| EPA-HQ-ORD-2018-0280-0020 | EPA | None EPA-HQ-ORD-2018-0280 | FIFRA SAP Review Waiver of Draft Final Rule | Supporting & Related Material | Letter | 2019-06-28T04:00:00Z | 2019 | 6 | 2019-06-29T00:42:20Z | 0 | 0 | 0900006483d26502 | |||
| EPA-HQ-ORD-2018-0280-0019 | EPA | None EPA-HQ-ORD-2018-0280 | USDA Response to Notification | Supporting & Related Material | Letter | 2019-06-28T04:00:00Z | 2019 | 6 | 2019-06-29T00:42:36Z | 0 | 0 | 0900006483d25034 | |||
| EPA-HQ-ORD-2018-0280-0018 | EPA | None EPA-HQ-ORD-2018-0280 | Submission to the Secretary of Agriculture; Protection of Human Research Subjects | Proposed Rule | 2019-05-24T04:00:00Z | 2019 | 5 | 2019-05-24T15:23:47Z | 2019-10265 | 0 | 0 | 0900006483cc3724 | |||
| EPA-HQ-ORD-2018-0280-0006 | EPA | None EPA-HQ-ORD-2018-0280 | EPA Response to OMB Comments 1 | Supporting & Related Material | Comment Response | 2018-12-06T05:00:00Z | 2018 | 12 | 2018-12-07T01:35:10Z | 0 | 0 | 09000064838d25b5 | |||
| EPA-HQ-ORD-2018-0280-0004 | EPA | None EPA-HQ-ORD-2018-0280 | FIFRA Scientific Advisory Panel Review Waiver 6-4-18 | Supporting & Related Material | Memorandum | 2018-12-06T05:00:00Z | 2018 | 12 | 2018-12-07T01:34:54Z | 0 | 0 | 0900006483770c2f | |||
| EPA-HQ-ORD-2018-0280-0005 | EPA | None EPA-HQ-ORD-2018-0280 | NPRM for OMB Review | Supporting & Related Material | Office of Management and Budget (OMB) | 2018-12-06T05:00:00Z | 2018 | 12 | 2018-12-07T01:35:27Z | 0 | 0 | 09000064838d207e | |||
| EPA-HQ-ORD-2018-0280-0007 | EPA | None EPA-HQ-ORD-2018-0280 | EPA Response to OMB Comments 2 | Supporting & Related Material | Comment Response | 2018-12-06T05:00:00Z | 2018 | 12 | 2018-12-07T01:34:22Z | 0 | 0 | 09000064838d2984 | |||
| EPA-HQ-ORD-2018-0280-0003 | EPA | None EPA-HQ-ORD-2018-0280 | Protection of Human Research Subjects | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2018-12-06T05:00:00Z | 2018 | 12 | 2018-12-06T05:00:00Z | 2019-02-05T04:59:59Z | 2019-02-04T02:02:00Z | 2018-26228 | 0 | 0 | 090000648394cd49 |
| EPA-HQ-ORD-2018-0280-0008 | EPA | None EPA-HQ-ORD-2018-0280 | Revised NPRM Per OMB Comments | Supporting & Related Material | Office of Management and Budget (OMB) | 2018-12-06T05:00:00Z | 2018 | 12 | 2018-12-07T01:34:38Z | 0 | 0 | 09000064838d2a31 | |||
| EPA-HQ-ORD-2018-0280-0002 | EPA | None EPA-HQ-ORD-2018-0280 | USDA Response to Notification | Supporting & Related Material | Letter | 2018-11-14T05:00:00Z | 2018 | 11 | 2018-12-07T00:15:53Z | 0 | 0 | 09000064834cc972 | |||
| EPA-HQ-ORD-2018-0280-0001 | EPA | None EPA-HQ-ORD-2018-0280 | Submissions to Secretary of Agriculture: Harmonization of Regulations Safeguarding Human Test Subjects | Proposed Rule | 2018-06-19T04:00:00Z | 2018 | 6 | 2018-06-19T14:45:01Z | 2018-12708 | 0 | 0 | 090000648342c1e0 |
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;