documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where agency_id = "EPA" and docket_id = "EPA-R07-OAR-2023-0403" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-R07-OAR-2023-0403-0012 | EPA | None EPA-R07-OAR-2023-0403 | Air Quality State Implementation Plans; Approvals and Promulgations: Missouri; Control of Emissions from Volatile Organic Liquid Storage | Rule | 2023-10-04T04:00:00Z | 2023 | 10 | 2023-10-04T04:00:00Z | 2023-10-04T13:42:27Z | 2023-22088 | 0 | 0 | 0900006486033de2 | ||
| EPA-R07-OAR-2023-0403-0003 | EPA | None EPA-R07-OAR-2023-0403 | 2023-04-21 SIP Clarification Letter 10-CSR-10-5.500 | Supporting & Related Material | 2023-08-22T04:00:00Z | 2023 | 8 | 2023-08-23T03:47:51Z | 0 | 0 | 0900006485e779ad | ||||
| EPA-R07-OAR-2023-0403-0001 | EPA | None EPA-R07-OAR-2023-0403 | Air Quality State Implementation Plans; Approvals and Promulgations: Missouri; Control of Emissions from Volatile Organic Liquid Storage | Proposed Rule | 2023-08-22T04:00:00Z | 2023 | 8 | 2023-08-22T04:00:00Z | 2023-09-22T03:59:59Z | 2023-08-22T13:38:26Z | 2023-17986 | 0 | 0 | 0900006485ed5327 | |
| EPA-R07-OAR-2023-0403-0007 | EPA | None EPA-R07-OAR-2023-0403 | Markup of 10 CSR 10-5.500 (second submission) | Supporting & Related Material | 2023-08-22T04:00:00Z | 2023 | 8 | 2023-08-23T03:48:11Z | 0 | 0 | 0900006485e779b1 | ||||
| EPA-R07-OAR-2023-0403-0004 | EPA | None EPA-R07-OAR-2023-0403 | Applicability of Recordkeeping Requirements in 10 CSR 10-5.500 | Supporting & Related Material | 2023-08-22T04:00:00Z | 2023 | 8 | 2023-08-23T03:49:17Z | 0 | 0 | 0900006485e779ae | ||||
| EPA-R07-OAR-2023-0403-0005 | EPA | None EPA-R07-OAR-2023-0403 | Complete EPA Submittal 5.500 | Supporting & Related Material | 2023-08-22T04:00:00Z | 2023 | 8 | 2023-08-23T03:48:27Z | 0 | 0 | 0900006485e779af | ||||
| EPA-R07-OAR-2023-0403-0006 | EPA | None EPA-R07-OAR-2023-0403 | eSIP Submittal Summary | Supporting & Related Material | 2023-08-22T04:00:00Z | 2023 | 8 | 2023-08-23T03:49:01Z | 0 | 0 | 0900006485e779b0 | ||||
| EPA-R07-OAR-2023-0403-0009 | EPA | None EPA-R07-OAR-2023-0403 | Submission Form | Supporting & Related Material | 2023-08-22T04:00:00Z | 2023 | 8 | 2023-08-23T03:47:13Z | 0 | 0 | 0900006485e779be | ||||
| EPA-R07-OAR-2023-0403-0008 | EPA | None EPA-R07-OAR-2023-0403 | Technical Support Document for 10 CSR 10-5.500 | Supporting & Related Material | 2023-08-22T04:00:00Z | 2023 | 8 | 2023-08-23T03:46:51Z | 0 | 0 | 0900006485e779b2 | ||||
| EPA-R07-OAR-2023-0403-0002 | EPA | None EPA-R07-OAR-2023-0403 | 5.500 EPA Submittal | Supporting & Related Material | 2023-08-22T04:00:00Z | 2023 | 8 | 2023-08-23T03:48:45Z | 0 | 0 | 0900006485e779ac | ||||
| EPA-R07-OAR-2023-0403-0010 | EPA | None EPA-R07-OAR-2023-0403 | Submission Form MO 10 CSR 10-5.500 Amendment 06102021.html | Supporting & Related Material | 2023-08-22T04:00:00Z | 2023 | 8 | 2023-08-23T03:47:34Z | 0 | 0 | 0900006485e779bf |
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;