documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "EPA-HQ-OPA-2005-0001" and posted_year = 2006 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), 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-OPA-2005-0001-0170 | EPA | Oil Pollution Prevention; Spill Prevention, Control and Countermeasure Plan Requirements - Amendments EPA-HQ-OPA-2005-0001 | Comment and Response Document Regarding 2006 Spill Prevention, Control, And Countermeasure Rulemaking | Supporting & Related Material | Comment Response | 2006-12-26T05:00:00Z | 2006 | 12 | 2006-12-26T13:55:47Z | 0 | 0 | 09000064801ed759 | |||
| EPA-HQ-OPA-2005-0001-0169 | EPA | Oil Pollution Prevention; Spill Prevention, Control and Countermeasure Plan Requirements - Amendments EPA-HQ-OPA-2005-0001 | Oil Pollution Prevention; Spill Prevention, Control, and Countermeasure Plan Requirements--Amendments, December 26, 2006 | Rule | Federal Register Document | 2006-12-26T05:00:00Z | 2006 | 12 | 2006-12-26T05:00:00Z | 2011-06-11T16:06:52Z | E6-21509 | 0 | 0 | 09000064801efdee | |
| EPA-HQ-OPA-2005-0001-0171 | EPA | Oil Pollution Prevention; Spill Prevention, Control and Countermeasure Plan Requirements - Amendments EPA-HQ-OPA-2005-0001 | Regulatory Impact Analysis for the Final Revisions to the Oil Pollution Prevention Regulations (40 CFR PART 112) | Supporting & Related Material | Analysis | 2006-12-26T05:00:00Z | 2006 | 12 | 2006-12-26T13:55:47Z | 0 | 0 | 09000064801ed761 | |||
| EPA-HQ-OPA-2005-0001-0168 | EPA | Oil Pollution Prevention; Spill Prevention, Control and Countermeasure Plan Requirements - Amendments EPA-HQ-OPA-2005-0001 | Information Collection Request (ICR): Revision of Information Collection Request (ICR) for the Oil Pollution Prevention Regulation for Certain Facilities to Prepare and Maintain an Oil Spill Prevention, Control, and Countermeasure (SPCC) Plan (EPA ICR Number 0328.12, OMB Number 2050-0021) | Supporting & Related Material | ICR Supporting Statement | 2006-11-15T05:00:00Z | 2006 | 11 | 2006-11-15T13:28:52Z | 0 | 0 | 09000064801da723 | |||
| EPA-HQ-OPA-2005-0001-0167 | EPA | Oil Pollution Prevention; Spill Prevention, Control and Countermeasure Plan Requirements - Amendments EPA-HQ-OPA-2005-0001 | Information Collection Request (ICR): Revision of Information Collection Request (ICR) for the Oil Spill Prevention, Control, and Countermeasure (SPCC) Plan (40 CFR Part 112) (EPA ICR Number 0328.12, OMB Number 2050-0021) | Supporting & Related Material | ICR Supporting Statement | 2006-06-28T04:00:00Z | 2006 | 6 | 2006-12-15T18:36:52Z | 0 | 0 | 0900006480189517 | |||
| EPA-HQ-OPA-2005-0001-0166 | EPA | Oil Pollution Prevention; Spill Prevention, Control and Countermeasure Plan Requirements - Amendments EPA-HQ-OPA-2005-0001 | Information Collection Request (ICR): Paperwork Reduction Act Submission | Supporting & Related Material | ICR Form 83-I | 2006-06-28T04:00:00Z | 2006 | 6 | 2006-12-15T18:36:52Z | 0 | 0 | 09000064801894f1 | |||
| EPA-HQ-OPA-2005-0001-0165 | EPA | Oil Pollution Prevention; Spill Prevention, Control and Countermeasure Plan Requirements - Amendments EPA-HQ-OPA-2005-0001 | Notes from meeting held on February 14, 2006 between the USA Rice Federation and the USEPA | Supporting & Related Material | Meeting/Teleconference Materials | 2006-05-22T04:00:00Z | 2006 | 5 | 2006-12-15T18:36:52Z | 0 | 0 | 090000648017362c |
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;