documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-HQ-OEI-2005-0007" 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-OEI-2005-0007-0007 | EPA | Toxic Chemical Release Reporting; Alternate Threshold for Low Annual Reportable Amounts; Request for Comment on Renewal Information Collection ICR Number 1704.08, OMB Control Number 2070-0143 EPA-HQ-OEI-2005-0007 | Agency Information Collection Activities; Submission to OMB for Review and Approval; Toxic Chemical Release Reporting; Alternate Threshold for Low Annual Reportable Amounts (Form A) (Renewal), EPA ICR Number 1704.08, OMB Control Number 2070-0143 | Notice | Federal Register Document | 2005-11-23T17:23:29Z | 2005 | 11 | 2005-11-23T17:23:29Z | 2005-12-24T04:59:59Z | 2008-01-08T21:19:31Z | 70823 | 0 | 0 | 09000064800ae8d8 |
| EPA-HQ-OEI-2005-0007-0006 | EPA | Toxic Chemical Release Reporting; Alternate Threshold for Low Annual Reportable Amounts; Request for Comment on Renewal Information Collection ICR Number 1704.08, OMB Control Number 2070-0143 EPA-HQ-OEI-2005-0007 | Form A for ICR Number 1704.08, OMB Number 2070-0143 | Supporting & Related Material | Other | 2005-11-17T05:00:00Z | 2005 | 11 | 2006-09-02T12:50:30Z | 0 | 0 | 09000064800ae8bd | |||
| EPA-HQ-OEI-2005-0007-0004 | EPA | Toxic Chemical Release Reporting; Alternate Threshold for Low Annual Reportable Amounts; Request for Comment on Renewal Information Collection ICR Number 1704.08, OMB Control Number 2070-0143 EPA-HQ-OEI-2005-0007 | Information Collection Request (ICR): Paperwork Reduction Act Submission | Supporting & Related Material | Office of Management and Budget (OMB) | 2005-11-17T05:00:00Z | 2005 | 11 | 2006-09-02T12:50:30Z | 0 | 0 | 09000064800ae87d | |||
| EPA-HQ-OEI-2005-0007-0005 | EPA | Toxic Chemical Release Reporting; Alternate Threshold for Low Annual Reportable Amounts; Request for Comment on Renewal Information Collection ICR Number 1704.08, OMB Control Number 2070-0143 EPA-HQ-OEI-2005-0007 | Information Collection Request (ICR): Toxic Chemical Release Reporting, Alternate Threshold for Low Annual Reportable Amounts (Form A) (Renewal) | Supporting & Related Material | Office of Management and Budget (OMB) | 2005-11-17T05:00:00Z | 2005 | 11 | 2006-09-02T12:50:30Z | 0 | 0 | 09000064800ae89d | |||
| EPA-HQ-OEI-2005-0007-0001 | EPA | Toxic Chemical Release Reporting; Alternate Threshold for Low Annual Reportable Amounts; Request for Comment on Renewal Information Collection ICR Number 1704.08, OMB Control Number 2070-0143 EPA-HQ-OEI-2005-0007 | Toxic Chemical Release Reporting Alternate Threshold for Low Annual Reportable Amounts; Requests for Comment on ICR Renewal; (Form A) APR ICR Number 1704.08, OMB Control Number 2070-0143 | Proposed Rule | Federal Register Document | 2005-08-12T04:00:00Z | 2005 | 8 | 2005-08-12T04:00:00Z | 2005-10-12T03:59:59Z | 2008-01-08T21:21:20Z | 47195 | 0 | 0 | 09000064800ae809 |
| EPA-HQ-OEI-2005-0007-0002 | EPA | Toxic Chemical Release Reporting; Alternate Threshold for Low Annual Reportable Amounts; Request for Comment on Renewal Information Collection ICR Number 1704.08, OMB Control Number 2070-0143 EPA-HQ-OEI-2005-0007 | Information Collection Request (ICR): Alternate Threshold for Low Annual Reportable Amounts; Toxic Chemical Release Reporting | Supporting & Related Material | Office of Management and Budget (OMB) | 2005-08-10T04:00:00Z | 2005 | 8 | 2006-09-02T12:50:30Z | 0 | 0 | 09000064800ae826 |
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;