documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-HQ-OAR-2007-1138" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, last_modified, 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-2007-1138-0015 | EPA | Reporting and Recordkeeping Requirements for Importation of Nonroad Engines and Recreational Vehicles, EPA ICR 1723.07, OMB Number 2060-0320 EPA-HQ-OAR-2007-1138 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Importation of Nonroad Engines and Recreational Vehicles (Renewal) | Notice | Information Collection Request (ICR) | 2014-12-23T05:00:00Z | 2014 | 12 | 2014-12-23T05:00:00Z | 2015-01-23T04:59:59Z | 2014-12-23T15:05:22Z | 2014-30016 | 0 | 0 | 090000648198ec64 |
| EPA-HQ-OAR-2007-1138-0017 | EPA | Reporting and Recordkeeping Requirements for Importation of Nonroad Engines and Recreational Vehicles, EPA ICR 1723.07, OMB Number 2060-0320 EPA-HQ-OAR-2007-1138 | Draft Supporting Statement | Supporting & Related Material | ICR Supporting Statement | 2014-12-23T05:00:00Z | 2014 | 12 | 2016-10-31T15:07:15Z | 0 | 0 | 090000648198af2f | |||
| EPA-HQ-OAR-2007-1138-0018 | EPA | Reporting and Recordkeeping Requirements for Importation of Nonroad Engines and Recreational Vehicles, EPA ICR 1723.07, OMB Number 2060-0320 EPA-HQ-OAR-2007-1138 | Application for Final Admission of Nonconforming Imported Vehicle or Engine Form 3520-8 (Rev. 1-02) | Supporting & Related Material | Form | 2014-12-23T05:00:00Z | 2014 | 12 | 2014-12-23T21:49:12Z | 0 | 0 | 090000648198af30 | |||
| EPA-HQ-OAR-2007-1138-0016 | EPA | Reporting and Recordkeeping Requirements for Importation of Nonroad Engines and Recreational Vehicles, EPA ICR 1723.07, OMB Number 2060-0320 EPA-HQ-OAR-2007-1138 | USEPA Engine Declaration Form 3520-21 | Supporting & Related Material | Form | 2014-12-23T05:00:00Z | 2014 | 12 | 2014-12-23T21:49:12Z | 0 | 0 | 090000648198af2e | |||
| EPA-HQ-OAR-2007-1138-0013 | EPA | Reporting and Recordkeeping Requirements for Importation of Nonroad Engines and Recreational Vehicles, EPA ICR 1723.07, OMB Number 2060-0320 EPA-HQ-OAR-2007-1138 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Reporting and Recordkeeping Requirements for Importation of Nonroad Engines and Recreational Vehicles | Notice | Information Collection Request (ICR) | 2014-07-01T04:00:00Z | 2014 | 7 | 2014-07-01T04:00:00Z | 2014-09-03T03:59:59Z | 2014-08-05T01:04:41Z | 2014-15464 | 0 | 0 | 09000064817784e0 |
| EPA-HQ-OAR-2007-1138-0012 | EPA | Reporting and Recordkeeping Requirements for Importation of Nonroad Engines and Recreational Vehicles, EPA ICR 1723.07, OMB Number 2060-0320 EPA-HQ-OAR-2007-1138 | Reporting and Recordkeeping Requirements for Importation of Nonroad Engines and Recreational Vehicles ICR | Supporting & Related Material | ICR Supporting Statement | 2014-06-23T04:00:00Z | 2014 | 6 | 2014-06-23T16:47:32Z | 0 | 0 | 090000648175779f |
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;