documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-HQ-OLEM-2021-0762" and posted_year = 2021 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-OLEM-2021-0762-0006 | EPA | Strategy to Reduce Lead Exposures and Disparities in U.S. Communities EPA-HQ-OLEM-2021-0762 | Draft EPA Lead Strategy Docket Contents Note of Clarification | Supporting & Related Material | 2021-12-09T05:00:00Z | 2021 | 12 | 2021-12-10T01:31:51Z | 0 | 0 | 0900006484eb1352 | ||||
| EPA-HQ-OLEM-2021-0762-0005 | EPA | Strategy to Reduce Lead Exposures and Disparities in U.S. Communities EPA-HQ-OLEM-2021-0762 | Draft EPA Strategy to Reduce Lead Exposures and Disparities in U.S. Communities; Correction and Extension of the Comment Period | Notice | Correction | 2021-12-09T05:00:00Z | 2021 | 12 | 2021-12-09T14:38:29Z | 2021-26644 | 0 | 0 | 0900006484eb2304 | ||
| EPA-HQ-OLEM-2021-0762-0004 | EPA | Strategy to Reduce Lead Exposures and Disparities in U.S. Communities EPA-HQ-OLEM-2021-0762 | Updated Public Comment Draft Lead Strategy November 16, 2021 | Supporting & Related Material | Comment Response | 2021-11-23T05:00:00Z | 2021 | 11 | 2021-11-24T02:42:16Z | 0 | 0 | 0900006484e739e7 | |||
| EPA-HQ-OLEM-2021-0762-0002 | EPA | Strategy to Reduce Lead Exposures and Disparities in U.S. Communities EPA-HQ-OLEM-2021-0762 | Public Comment Draft EPA Lead Strategy October 28, 2021 | Supporting & Related Material | Report | 2021-10-28T04:00:00Z | 2021 | 10 | 2021-10-29T00:39:12Z | 0 | 0 | 0900006484dfb12f | |||
| EPA-HQ-OLEM-2021-0762-0001 | EPA | Strategy to Reduce Lead Exposures and Disparities in U.S. Communities EPA-HQ-OLEM-2021-0762 | Strategy to Reduce Lead Exposures and Disparities in U.S. Communities | Notice | Notice of Data Availability | 2021-10-28T04:00:00Z | 2021 | 10 | 2021-10-28T04:00:00Z | 2022-03-17T03:59:59Z | 2022-04-09T01:00:42Z | 2021-23421 | 0 | 0 | 0900006484dfce65 |
| EPA-HQ-OLEM-2021-0762-0003 | EPA | Strategy to Reduce Lead Exposures and Disparities in U.S. Communities EPA-HQ-OLEM-2021-0762 | Public Comment Draft - EPA Strategy to Reduce Lead Exposures and Disparities in U.S. Communities | Supporting & Related Material | Report | 2021-10-28T04:00:00Z | 2021 | 10 | 2021-10-30T00:33:39Z | 0 | 0 | 0900006484dfe585 |
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;