documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-R04-OAR-2017-0387" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, 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-R04-OAR-2017-0387-0010 | EPA | None EPA-R04-OAR-2017-0387 | Air Quality State Implementation Plans; Approvals and Promulgations: South Carolina: Miscellaneous Revisions to Multiple Rules | Rule | Withdrawal | 2017-12-04T05:00:00Z | 2017 | 12 | 2017-12-04T05:00:00Z | 2017-12-05T01:48:43Z | 0 | 0 | 0900006482cd6171 | ||
| EPA-R04-OAR-2017-0387-0001 | EPA | None EPA-R04-OAR-2017-0387 | Air Quality State Implementation Plans; Approvals and Promulgations: South Carolina: Miscellaneous Revisions to Multiple Rules | Rule | 2017-08-21T04:00:00Z | 2017 | 8 | 2017-08-21T04:00:00Z | 2017-09-21T03:59:59Z | 2017-09-14T01:09:43Z | 2017-17240 | 0 | 0 | 0900006482a8b9ae | |
| EPA-R04-OAR-2017-0387-0007 | EPA | None EPA-R04-OAR-2017-0387 | SC_8-8-2014_Submittal Combined | Supporting & Related Material | State/Tribal Submittal | 2017-08-21T04:00:00Z | 2017 | 8 | 2017-09-03T09:25:38Z | 0 | 0 | 09000064827abdc2 | |||
| EPA-R04-OAR-2017-0387-0004 | EPA | None EPA-R04-OAR-2017-0387 | SC_6-17-2013_Submittal Combined | Supporting & Related Material | State/Tribal Submittal | 2017-08-21T04:00:00Z | 2017 | 8 | 2017-09-03T09:25:21Z | 0 | 0 | 09000064827abdbf | |||
| EPA-R04-OAR-2017-0387-0005 | EPA | None EPA-R04-OAR-2017-0387 | SC_7-18-2011_Submittal Combined | Supporting & Related Material | State/Tribal Submittal | 2017-08-21T04:00:00Z | 2017 | 8 | 2017-09-03T09:25:33Z | 0 | 0 | 09000064827abdc0 | |||
| EPA-R04-OAR-2017-0387-0002 | EPA | None EPA-R04-OAR-2017-0387 | Air Quality State Implementation Plans; Approvals and Promulgations: South Carolina: Miscellaneous Revisions to Multiple Rules | Proposed Rule | 2017-08-21T04:00:00Z | 2017 | 8 | 2017-08-21T04:00:00Z | 2017-09-21T03:59:59Z | 2017-09-15T01:06:09Z | 2017-17236 | 0 | 0 | 0900006482a8b3e1 | |
| EPA-R04-OAR-2017-0387-0008 | EPA | None EPA-R04-OAR-2017-0387 | SC_1-20-2016_Submittal Combined | Supporting & Related Material | State/Tribal Submittal | 2017-08-21T04:00:00Z | 2017 | 8 | 2017-09-03T09:25:15Z | 0 | 0 | 09000064827abdbd | |||
| EPA-R04-OAR-2017-0387-0003 | EPA | None EPA-R04-OAR-2017-0387 | SC_4-10-2014_Submittal Combined | Supporting & Related Material | State/Tribal Submittal | 2017-08-21T04:00:00Z | 2017 | 8 | 2017-09-03T09:25:26Z | 0 | 0 | 09000064827abdbe | |||
| EPA-R04-OAR-2017-0387-0006 | EPA | None EPA-R04-OAR-2017-0387 | SC_7-27-2016_Submittal Combined | Supporting & Related Material | State/Tribal Submittal | 2017-08-21T04:00:00Z | 2017 | 8 | 2017-09-03T09:25:09Z | 0 | 0 | 09000064827abdc1 |
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;