documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-HQ-OPPT-2017-0631" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-0631-0002 | EPA | None EPA-HQ-OPPT-2017-0631 | Information Collection Request (ICR): Residential Lead-Based Paint Hazard Disclosure Requirements; EPA ICR Number 1710.08, OMB Number 2070-0151 | Supporting & Related Material | ICR Supporting Statement | 2017-12-20T05:00:00Z | 2017 | 12 | 2017-12-21T01:34:27Z | 0 | 0 | 0900006482c0c72a | |||
| EPA-HQ-OPPT-2017-0631-0001 | EPA | None EPA-HQ-OPPT-2017-0631 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | Information Collection Request (ICR) | 2017-12-20T05:00:00Z | 2017 | 12 | 2017-12-20T05:00:00Z | 2018-02-21T04:59:59Z | 2018-02-21T02:03:54Z | 2017-27424 | 0 | 0 | 0900006482d3f306 |
| EPA-HQ-OPPT-2017-0631-0005 | EPA | None EPA-HQ-OPPT-2017-0631 | Project-Based Assistance, 24 CFR part 35, Subpart H | Supporting & Related Material | ICR Supporting Statement | 2017-12-20T05:00:00Z | 2017 | 12 | 2017-12-21T01:34:47Z | 0 | 0 | 0900006482c0c72d | |||
| EPA-HQ-OPPT-2017-0631-0006 | EPA | None EPA-HQ-OPPT-2017-0631 | Seller's Disclosure of Information on Lead-Based Paint and/or Lead-Based Paint Hazards (Sample Form) | Supporting & Related Material | ICR Supporting Statement | 2017-12-20T05:00:00Z | 2017 | 12 | 2017-12-21T01:34:58Z | 0 | 0 | 0900006482c0c72e | |||
| EPA-HQ-OPPT-2017-0631-0007 | EPA | None EPA-HQ-OPPT-2017-0631 | Lessor's Disclosure of Information on Lead-Based Paint and/or Lead-Based Paint Hazards (Sample Form) | Supporting & Related Material | ICR Supporting Statement | 2017-12-20T05:00:00Z | 2017 | 12 | 2017-12-21T01:34:17Z | 0 | 0 | 0900006482c0c72f | |||
| EPA-HQ-OPPT-2017-0631-0004 | EPA | None EPA-HQ-OPPT-2017-0631 | Disclosure of Known Lead Based Paint and/or Lead Based Paint Hazards Upon Sale or Lease of Residential Property, 40 CFR part 745, Subpart F | Supporting & Related Material | ICR Supporting Statement | 2017-12-20T05:00:00Z | 2017 | 12 | 2017-12-21T01:34:37Z | 0 | 0 | 0900006482c0c72c | |||
| EPA-HQ-OPPT-2017-0631-0008 | EPA | None EPA-HQ-OPPT-2017-0631 | Lead Hazard Information Pamphlet - "Protect Your Family from Lead In Your Home" (EPA 747-K-99-001) | Supporting & Related Material | ICR Supporting Statement | 2017-12-20T05:00:00Z | 2017 | 12 | 2017-12-21T01:33:57Z | 0 | 0 | 0900006482c0c730 | |||
| EPA-HQ-OPPT-2017-0631-0003 | EPA | None EPA-HQ-OPPT-2017-0631 | Residential Lead Based Paint Hazard Reduction Act of 1992, Section 1018, 42 U.S.C. 4852d | Supporting & Related Material | ICR Supporting Statement | 2017-12-20T05:00:00Z | 2017 | 12 | 2017-12-21T01:34:06Z | 0 | 0 | 0900006482c0c72b |
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;