documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-R04-OAR-2007-0359" and posted_year = 2009 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, comment_end_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-2007-0359-0014 | EPA | None EPA-R04-OAR-2007-0359 | AL CAIR/NOx SIP Call - signed PR | Supporting & Related Material | 2009-10-02T04:00:00Z | 2009 | 10 | 2009-10-02T14:42:36Z | 0 | 0 | 0900006480a24b4e | ||||
| EPA-R04-OAR-2007-0359-0016 | EPA | None EPA-R04-OAR-2007-0359 | Approval and Promulgation of Implementation Plans; Revisions to the Alabama State Implementation Plan; Birmingham and Jackson County; Correction | Rule | 2009-09-23T04:00:00Z | 2009 | 9 | 2009-09-23T04:00:00Z | 2009-10-02T14:53:29Z | E9-22814 | 0 | 0 | 0900006480a29c7d | ||
| EPA-R04-OAR-2007-0359-0015 | EPA | None EPA-R04-OAR-2007-0359 | Approval and Promulgation of Implementation Plans, Alabama: Clean Air Interstate Rule | Proposed Rule | 2009-09-23T04:00:00Z | 2009 | 9 | 2009-09-23T04:00:00Z | 2009-10-24T03:59:59Z | 2009-10-02T14:49:49Z | E9-22904 | 0 | 0 | 0900006480a29b5e | |
| EPA-R04-OAR-2007-0359-0011 | EPA | None EPA-R04-OAR-2007-0359 | PR and DFR - Transportation Conformity -- signed versions | Supporting & Related Material | Signed Federal Register Document | 2009-04-12T04:00:00Z | 2009 | 4 | 2009-04-13T00:14:28Z | 0 | 0 | 090000648093981f | |||
| EPA-R04-OAR-2007-0359-0012 | EPA | None EPA-R04-OAR-2007-0359 | State Submittal - AL Transportation Conformity pt. 2 | Supporting & Related Material | 2009-04-12T04:00:00Z | 2009 | 4 | 2009-04-13T00:14:29Z | 0 | 0 | 090000648094e9f2 | ||||
| EPA-R04-OAR-2007-0359-0013 | EPA | None EPA-R04-OAR-2007-0359 | State Submittal - AL Transportation Conformity pt. 1 | Supporting & Related Material | 2009-04-12T04:00:00Z | 2009 | 4 | 2009-04-13T00:14:30Z | 0 | 0 | 090000648094e9f0 | ||||
| EPA-R04-OAR-2007-0359-0009 | EPA | None EPA-R04-OAR-2007-0359 | Approval and Promulgation of Implementation Plans: Revisions to the Alabama State Implementation Plan; Birmingham and Jackson Counties | Proposed Rule | 2009-03-26T04:00:00Z | 2009 | 3 | 2009-03-26T04:00:00Z | 2009-04-28T03:59:59Z | 2009-03-27T04:17:58Z | E9-06644 | 0 | 0 | 0900006480930635 | |
| EPA-R04-OAR-2007-0359-0010 | EPA | None EPA-R04-OAR-2007-0359 | Approval and Promulgation of Implementation Plans: Revisions to the Alabama State Implementation Plan; Birmingham and Jackson Counties | Rule | 2009-03-26T04:00:00Z | 2009 | 3 | 2009-03-26T04:00:00Z | 2009-04-28T03:59:59Z | 2009-03-27T04:22:02Z | E9-06647 | 0 | 0 | 0900006480930661 |
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;