documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-HQ-SFUND-1989-0008" and posted_year = 2012 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-SFUND-1989-0008-0091 | EPA | None EPA-HQ-SFUND-1989-0008 | National Oil and Hazardous Substances Pollution Contingency Plan: National Priorities List; Deletion of the New Hanover County Airport Burn Pit Superfund Site | Rule | Final Rule | 2012-09-20T04:00:00Z | 2012 | 9 | 2012-09-20T04:00:00Z | 2019-07-31T22:05:38Z | 2012-23153 | 0 | 0 | 090000648111ff99 | |
| EPA-HQ-SFUND-1989-0008-0089 | EPA | None EPA-HQ-SFUND-1989-0008 | State Concurrence Letter on the New Hanover County Airport Burn Pit Deletion | Supporting & Related Material | Letter | 2012-06-22T04:00:00Z | 2012 | 6 | 2012-06-22T14:10:23Z | 0 | 0 | 0900006480ff4433 | |||
| EPA-HQ-SFUND-1989-0008-0088 | EPA | None EPA-HQ-SFUND-1989-0008 | National Oil and Hazardous Substances Pollution Contingency Plan: National Priorities List; Deletion of New Hanover County Airport Burn Pit Superfund Site | Proposed Rule | 2012-06-22T04:00:00Z | 2012 | 6 | 2012-06-22T04:00:00Z | 2012-07-24T03:59:59Z | 2012-06-22T14:08:15Z | 2012-15340 | 0 | 0 | 090000648105f587 | |
| EPA-HQ-SFUND-1989-0008-0090 | EPA | None EPA-HQ-SFUND-1989-0008 | New Hanover County Airport Burn Pit Final Close Out Report | Supporting & Related Material | Report | 2012-06-22T04:00:00Z | 2012 | 6 | 2012-06-22T14:10:23Z | 0 | 0 | 0900006480ff4435 | |||
| EPA-HQ-SFUND-1989-0008-0086 | EPA | None EPA-HQ-SFUND-1989-0008 | Double Eagle Refinery - Deletion Responsiveness Summary | Supporting & Related Material | Comment Response | 2012-03-08T05:00:00Z | 2012 | 3 | 2012-03-08T20:23:04Z | 0 | 0 | 09000064806c017a | |||
| EPA-HQ-SFUND-1989-0008-0087 | EPA | None EPA-HQ-SFUND-1989-0008 | Fourth Street Abandoned Refinery - Deletion Responsiveness Summary | Supporting & Related Material | Comment Response | 2012-03-08T05:00:00Z | 2012 | 3 | 2012-03-08T20:23:04Z | 0 | 0 | 09000064806c0184 |
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;