documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-HQ-OPPT-2022-0387" 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-OPPT-2022-0387-0007 | EPA | None EPA-HQ-OPPT-2022-0387 | Community Right-To-Know: Adopting 2022 North American Industry Classification System Codes for Toxics Release Inventory Reporting; Correction | Rule | Correction | 2022-12-06T05:00:00Z | 2022 | 12 | 2022-12-06T15:18:04Z | 2022-26393 | 0 | 0 | 090000648551e12d | ||
| EPA-HQ-OPPT-2022-0387-0006 | EPA | None EPA-HQ-OPPT-2022-0387 | Community Right-to-Know: Adopting 2022 North American Industry Classification System Codes for Toxics Release Inventory Reporting | Rule | 2022-11-28T05:00:00Z | 2022 | 11 | 2022-11-28T14:48:29Z | 2022-25375 | 0 | 0 | 090000648550468f | |||
| EPA-HQ-OPPT-2022-0387-0003 | EPA | None EPA-HQ-OPPT-2022-0387 | 78 FR 42875: Community Right-to-Know; Adoption of 2012 North American Industry Classification System (NAICS) Codes for Toxics Release Inventory (TRI) Reporting; Direct Final Rule | Supporting & Related Material | Publication - Previous/Related FR Notice | 2022-07-22T04:00:00Z | 2022 | 7 | 2022-07-23T01:01:13Z | 0 | 0 | 09000064851413c7 | |||
| EPA-HQ-OPPT-2022-0387-0001 | EPA | None EPA-HQ-OPPT-2022-0387 | Community Right-To-Know; Adopting 2022 North American Industry Classification System (NAICS) Codes for Toxics Release Inventory (TRI) Reporting | Proposed Rule | 2022-07-22T04:00:00Z | 2022 | 7 | 2022-07-22T04:00:00Z | 2022-09-21T03:59:59Z | 2022-09-17T01:00:46Z | 2022-15287 | 0 | 0 | 09000064851e1d7e | |
| EPA-HQ-OPPT-2022-0387-0004 | EPA | None EPA-HQ-OPPT-2022-0387 | 62 FR 23834: Addition of Facilities in Certain Industry Sectors; Revised Interpretation of Otherwise Use; Toxic Release Inventory Reporting; Community Right-to-Know; Final Rule | Supporting & Related Material | Publication - Previous/Related FR Notice | 2022-07-22T04:00:00Z | 2022 | 7 | 2022-07-23T01:00:59Z | 0 | 0 | 09000064851413c8 | |||
| EPA-HQ-OPPT-2022-0387-0002 | EPA | None EPA-HQ-OPPT-2022-0387 | 71 FR 32464: Community Right-to-Know; Toxic Chemical Release Reporting Using North American Industry Classification System (NAICS); Final Rule | Supporting & Related Material | Publication - Previous/Related FR Notice | 2022-07-22T04:00:00Z | 2022 | 7 | 2022-07-23T01:00:46Z | 0 | 0 | 090000648514139f |
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;