documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "EPA" and docket_id = "EPA-R06-OAR-2010-0775" 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-R06-OAR-2010-0775-0006 | EPA | None EPA-R06-OAR-2010-0775 | LA032.06 Louisiana Revisions to LAC.33.III.2123, Organic Solvents, RE Control Techniques Guidelines State Implementation Plan, submitted to EPA November 17, 2011 (LA-113). 43 pages 2.2 MB rz8 | Supporting & Related Material | State/Tribal Submittal | 2011-12-08T05:00:00Z | 2011 | 12 | 2011-12-08T17:53:53Z | 0 | 0 | 0900006480f7e2b4 | |||
| EPA-R06-OAR-2010-0775-0005 | EPA | None EPA-R06-OAR-2010-0775 | LA032.05 Approval and Promulgation of Air Quality Implementation Plans: Louisiana; Revisions to Control Volatile Organic Compound Emissions for Surface Coatings and Graphic Arts. 4 pages rz2 | Rule | 2011-12-02T05:00:00Z | 2011 | 12 | 2011-12-02T05:00:00Z | 2011-12-02T15:38:11Z | 2011-30924 | 0 | 0 | 0900006480f7a2c8 | ||
| EPA-R06-OAR-2010-0775-0002 | EPA | None EPA-R06-OAR-2010-0775 | LA032.02 Louisiana VOC & NOx RACT CTG Rule Revisions, submitted to EPA August 31, 2010 (LA-113). 247 pages 10.9 MB r39 | Supporting & Related Material | State/Tribal Submittal | 2011-03-17T04:00:00Z | 2011 | 3 | 2011-03-17T16:55:57Z | 0 | 0 | 0900006480b4db61 | |||
| EPA-R06-OAR-2010-0775-0001 | EPA | None EPA-R06-OAR-2010-0775 | LA032.01 Approval and Promulgation of Air Quality Implementation Plans: Louisiana; Revisions to Control Volatile Organic Compound Emissions for Surface Coatings, and Graphic Arts. 5 pages r3h | Proposed Rule | Federal Register Document | 2011-03-17T04:00:00Z | 2011 | 3 | 2011-03-17T04:00:00Z | 2011-04-19T03:59:59Z | 2011-03-17T16:57:32Z | 2011-06224 | 0 | 0 | 0900006480c09ae5 |
| EPA-R06-OAR-2010-0775-0004 | EPA | None EPA-R06-OAR-2010-0775 | LA032.04 Technical Support Document. 40 pages r3b | Supporting & Related Material | Technical Support Document | 2011-03-17T04:00:00Z | 2011 | 3 | 2011-03-17T16:56:24Z | 0 | 0 | 0900006480c047c6 | |||
| EPA-R06-OAR-2010-0775-0003 | EPA | None EPA-R06-OAR-2010-0775 | LA032.03 Louisiana Parallel Processing of Revisions to LAC 33:III.2123 Organic Solvents with the CTG SIP Submittal, Submitted to EPA February 7, 2011. 14 pages r39 | Supporting & Related Material | State/Tribal Submittal | 2011-03-17T04:00:00Z | 2011 | 3 | 2011-03-17T16:56:11Z | 0 | 0 | 0900006480c0356d |
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;