documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "EPA-HQ-OAR-2004-0450" and posted_year = 2010 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-HQ-OAR-2004-0450-0024 | EPA | NESHAP: Aerospace Manufacture & Rework EPA-HQ-OAR-2004-0450 | Aerospace ICR Supporting Statement--Part B | Supporting & Related Material | ICR Supporting Statement | 2010-09-30T04:00:00Z | 2010 | 9 | 2010-09-30T16:42:10Z | 0 | 0 | 0900006480b5bf3e | |||
| EPA-HQ-OAR-2004-0450-0020 | EPA | NESHAP: Aerospace Manufacture & Rework EPA-HQ-OAR-2004-0450 | Response to Comments--Aerospace ICR | Supporting & Related Material | Comment Response | 2010-09-30T04:00:00Z | 2010 | 9 | 2010-09-30T16:23:33Z | 0 | 0 | 0900006480b5bf27 | |||
| EPA-HQ-OAR-2004-0450-0022 | EPA | NESHAP: Aerospace Manufacture & Rework EPA-HQ-OAR-2004-0450 | Aerospace Manufacturing and Rework Industry ICR Instructions | Supporting & Related Material | Guidance, Interpretation, Policy, Procedure | 2010-09-30T04:00:00Z | 2010 | 9 | 2010-09-30T16:23:37Z | 0 | 0 | 0900006480b5bf3c | |||
| EPA-HQ-OAR-2004-0450-0023 | EPA | NESHAP: Aerospace Manufacture & Rework EPA-HQ-OAR-2004-0450 | Aerospace ICR Supporting Statement | Supporting & Related Material | ICR Supporting Statement | 2010-09-30T04:00:00Z | 2010 | 9 | 2010-09-30T16:32:37Z | 0 | 0 | 0900006480b5bf3d | |||
| EPA-HQ-OAR-2004-0450-0021 | EPA | NESHAP: Aerospace Manufacture & Rework EPA-HQ-OAR-2004-0450 | Aerospace Manufacturing and Rework Industry Information Request Questionnaire: Instructions for Completing the Questionnaire | Supporting & Related Material | Guidance, Interpretation, Policy, Procedure | 2010-09-30T04:00:00Z | 2010 | 9 | 2010-09-30T16:23:35Z | 0 | 0 | 0900006480b5bf3b | |||
| EPA-HQ-OAR-2004-0450-0019 | EPA | NESHAP: Aerospace Manufacture & Rework EPA-HQ-OAR-2004-0450 | Agency Information Collection Activities; Submission to OMB for Review and Approval; Comment Request; Aerospace Manufacturing and Rework Industry Information Collection; EPA ICR No. 2395.01, OMB Control 2060-NEW | Notice | Federal Register Document | 2010-09-28T04:00:00Z | 2010 | 9 | 2010-09-28T04:00:00Z | 2010-10-29T03:59:59Z | 2010-09-28T14:50:25Z | 2010-24291 | 0 | 0 | 0900006480b622b7 |
| EPA-HQ-OAR-2004-0450-0015 | EPA | NESHAP: Aerospace Manufacture & Rework EPA-HQ-OAR-2004-0450 | Enclosure 1: Aerospace Manufacturing and Rework Industry Information Request Questionnaire | Supporting & Related Material | Data | 2010-06-22T04:00:00Z | 2010 | 6 | 2010-06-22T20:55:13Z | 0 | 0 | 0900006480b082db | |||
| EPA-HQ-OAR-2004-0450-0014 | EPA | NESHAP: Aerospace Manufacture & Rework EPA-HQ-OAR-2004-0450 | Aerospace Manufacturing and Rework Industy Information Request Questionnaire | Supporting & Related Material | Form | 2010-06-22T04:00:00Z | 2010 | 6 | 2010-06-22T20:55:11Z | 0 | 0 | 0900006480b082a4 | |||
| EPA-HQ-OAR-2004-0450-0016 | EPA | NESHAP: Aerospace Manufacture & Rework EPA-HQ-OAR-2004-0450 | Information Collection Request Survey for the Aerospace Manufacturing and Rework Industry | Supporting & Related Material | ICR Supporting Statement | 2010-06-22T04:00:00Z | 2010 | 6 | 2010-06-22T20:55:15Z | 0 | 0 | 0900006480b082ec | |||
| EPA-HQ-OAR-2004-0450-0013 | EPA | NESHAP: Aerospace Manufacture & Rework EPA-HQ-OAR-2004-0450 | Agency Information Collection Activities; Submission to OMB for Review and Approval; Comment Request; Aerospace Manufacturing and Rework Industry Information Request Questionnaire; EPA ICR No. 2395.01, Control No. 2060-NEW | Notice | Federal Register Document | 2010-06-22T04:00:00Z | 2010 | 6 | 2010-06-22T04:00:00Z | 2010-07-23T03:59:59Z | 2010-06-22T17:23:39Z | 2010-1506075 | 0 | 0 | 0900006480b08098 |
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;