home / openregs

documents

Regulatory documents from Regulations.gov including rules, proposed rules, notices, and supporting materials.

Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API

13 rows where docket_id = "EPA-HQ-OLEM-2021-0762" and posted_year = 2022 sorted by posted_date descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: subtype, posted_date, posted_month, posted_date (date), comment_start_date (date), last_modified (date)

document_type 2

  • Supporting & Related Material 12
  • Notice 1

posted_year 1

  • 2022 · 13 ✖

agency_id 1

  • EPA 13
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-0327 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 United States Communities Notice   2022-11-03T04:00:00Z 2022 11 2022-11-03T04:00:00Z   2022-11-03T13:06:31Z 2022-23903 0 0 09000064854812d3
EPA-HQ-OLEM-2021-0762-0326 EPA Strategy to Reduce Lead Exposures and Disparities in U.S. Communities EPA-HQ-OLEM-2021-0762 Final Lead Strategy for Publication 10/27/2022 Supporting & Related Material Publication - USEPA 2022-10-27T04:00:00Z 2022 10     2022-10-28T00:37:04Z   0 0 09000064854651fc
EPA-HQ-OLEM-2021-0762-0034 EPA Strategy to Reduce Lead Exposures and Disparities in U.S. Communities EPA-HQ-OLEM-2021-0762 R1 Listening Session Public Comment Transcript Supporting & Related Material Transcript 2022-03-17T04:00:00Z 2022 3     2022-03-18T01:23:02Z   0 0 0900006484fcdaca
EPA-HQ-OLEM-2021-0762-0037 EPA Strategy to Reduce Lead Exposures and Disparities in U.S. Communities EPA-HQ-OLEM-2021-0762 R4 Listening Session Public Comment Transcript Supporting & Related Material Transcript 2022-03-17T04:00:00Z 2022 3     2022-03-18T01:23:19Z   0 0 0900006484fcdacd
EPA-HQ-OLEM-2021-0762-0035 EPA Strategy to Reduce Lead Exposures and Disparities in U.S. Communities EPA-HQ-OLEM-2021-0762 R2 Listening Session Public Comment Transcript Supporting & Related Material Transcript 2022-03-17T04:00:00Z 2022 3     2022-03-18T01:22:53Z   0 0 0900006484fcd35e
EPA-HQ-OLEM-2021-0762-0033 EPA Strategy to Reduce Lead Exposures and Disparities in U.S. Communities EPA-HQ-OLEM-2021-0762 Tribal Engagement Session Public Comment Transcript Supporting & Related Material Transcript 2022-03-17T04:00:00Z 2022 3     2022-03-18T01:23:10Z   0 0 0900006484fcdacb
EPA-HQ-OLEM-2021-0762-0038 EPA Strategy to Reduce Lead Exposures and Disparities in U.S. Communities EPA-HQ-OLEM-2021-0762 R5 Listening Session Public Comment Transcript Supporting & Related Material Transcript 2022-03-17T04:00:00Z 2022 3     2022-03-18T01:23:36Z   0 0 0900006484fcd35d
EPA-HQ-OLEM-2021-0762-0036 EPA Strategy to Reduce Lead Exposures and Disparities in U.S. Communities EPA-HQ-OLEM-2021-0762 R3 Listening Session Public Comment Transcript Supporting & Related Material Transcript 2022-03-17T04:00:00Z 2022 3     2022-03-18T01:22:20Z   0 0 0900006484fcdac9
EPA-HQ-OLEM-2021-0762-0041 EPA Strategy to Reduce Lead Exposures and Disparities in U.S. Communities EPA-HQ-OLEM-2021-0762 R8 Listening Session Public Comment Transcript Supporting & Related Material Transcript 2022-03-17T04:00:00Z 2022 3     2022-03-18T01:23:27Z   0 0 0900006484fcdacc
EPA-HQ-OLEM-2021-0762-0042 EPA Strategy to Reduce Lead Exposures and Disparities in U.S. Communities EPA-HQ-OLEM-2021-0762 R9 Listening Session Public Comment Transcript Supporting & Related Material Transcript 2022-03-17T04:00:00Z 2022 3     2022-03-18T01:22:45Z   0 0 0900006484fcdacf
EPA-HQ-OLEM-2021-0762-0040 EPA Strategy to Reduce Lead Exposures and Disparities in U.S. Communities EPA-HQ-OLEM-2021-0762 R7 Listening Session Public Comment Transcript Supporting & Related Material Transcript 2022-03-17T04:00:00Z 2022 3     2022-03-18T01:22:28Z   0 0 0900006484fcdad1
EPA-HQ-OLEM-2021-0762-0039 EPA Strategy to Reduce Lead Exposures and Disparities in U.S. Communities EPA-HQ-OLEM-2021-0762 R6 Listening Session Public Comment Transcript Supporting & Related Material Transcript 2022-03-17T04:00:00Z 2022 3     2022-03-18T01:22:37Z   0 0 0900006484fcdad0
EPA-HQ-OLEM-2021-0762-0043 EPA Strategy to Reduce Lead Exposures and Disparities in U.S. Communities EPA-HQ-OLEM-2021-0762 R10 Listening Session Public Comment Transcript Supporting & Related Material Transcript 2022-03-17T04:00:00Z 2022 3     2022-03-18T01:23:44Z   0 0 0900006484fcdace

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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;
Powered by Datasette · Queries took 1569.142ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API