documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "EPA-R08-OAR-2022-0103" 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)
| 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-R08-OAR-2022-0103-0008 | EPA | None EPA-R08-OAR-2022-0103 | Air Quality State Implementation Plans; Approvals and Promulgations: Colorado; Reg 3 NSR and APEN Updates | Rule | 2022-11-22T05:00:00Z | 2022 | 11 | 2022-11-22T05:00:00Z | 2022-11-22T16:05:29Z | 2022-24858 | 0 | 0 | 09000064854fbb4e | ||
| EPA-R08-OAR-2022-0103-0004 | EPA | None EPA-R08-OAR-2022-0103 | 121919_Regulation Numbers 3 and 7_submitted 051320_Part2 | Supporting & Related Material | State/Tribal Submittal | 2022-03-23T04:00:00Z | 2022 | 3 | 2022-03-24T01:36:38Z | 0 | 0 | 0900006484fdb907 | |||
| EPA-R08-OAR-2022-0103-0003 | EPA | None EPA-R08-OAR-2022-0103 | 121919_Regulation Numbers 3 and 7_submitted 051320_Part1 | Supporting & Related Material | State/Tribal Submittal | 2022-03-23T04:00:00Z | 2022 | 3 | 2022-03-24T01:37:16Z | 0 | 0 | 0900006484fdb490 | |||
| EPA-R08-OAR-2022-0103-0005 | EPA | None EPA-R08-OAR-2022-0103 | 121919_Regulation Numbers 3 and 7_submitted 051320_Part3 | Supporting & Related Material | State/Tribal Submittal | 2022-03-23T04:00:00Z | 2022 | 3 | 2022-03-24T01:36:57Z | 0 | 0 | 0900006484fdb943 | |||
| EPA-R08-OAR-2022-0103-0006 | EPA | None EPA-R08-OAR-2022-0103 | 121919_Regulation Numbers 3 and 7_submitted 051320_Part4 | Supporting & Related Material | State/Tribal Submittal | 2022-03-23T04:00:00Z | 2022 | 3 | 2022-03-24T01:37:07Z | 0 | 0 | 0900006484fdb90e | |||
| EPA-R08-OAR-2022-0103-0001 | EPA | None EPA-R08-OAR-2022-0103 | Air Quality State Implementation Plans; Approvals and Promulgations: Colorado; Reg 3 NSR and APEN Updates | Proposed Rule | 2022-03-23T04:00:00Z | 2022 | 3 | 2022-03-23T04:00:00Z | 2022-04-23T03:59:59Z | 2022-04-24T01:00:39Z | 2022-06172 | 0 | 0 | 0900006484fdac26 | |
| EPA-R08-OAR-2022-0103-0002 | EPA | None EPA-R08-OAR-2022-0103 | Colorado Withdrawal Letter to EPA Reg 3 signed | Supporting & Related Material | Letter | 2022-03-23T04:00:00Z | 2022 | 3 | 2022-03-24T01:36:48Z | 0 | 0 | 0900006484fd88ec |
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;