documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "EPA-HQ-SFUND-1987-0002" and posted_year = 2011 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, 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-1987-0002-0316 | EPA | None EPA-HQ-SFUND-1987-0002 | Coker’s Sanitation Service Landfill-Third Five Year Review | Supporting & Related Material | Report | 2011-06-07T04:00:00Z | 2011 | 6 | 2011-06-07T17:59:34Z | 0 | 0 | 0900006480e3abab | |||
| EPA-HQ-SFUND-1987-0002-0319 | EPA | None EPA-HQ-SFUND-1987-0002 | Coker’s Sanitation Service Landfill- 2009 Monitoring Report | Supporting & Related Material | Report | 2011-06-07T04:00:00Z | 2011 | 6 | 2011-06-07T17:59:41Z | 0 | 0 | 0900006480e3abb0 | |||
| EPA-HQ-SFUND-1987-0002-0321 | EPA | None EPA-HQ-SFUND-1987-0002 | Coker’s Sanitation Service Landfill- Memo Re: Fence Repair | Supporting & Related Material | Letter, Memorandum, Email | 2011-06-07T04:00:00Z | 2011 | 6 | 2011-06-07T17:59:45Z | 0 | 0 | 0900006480e3abb6 | |||
| EPA-HQ-SFUND-1987-0002-0315 | EPA | None EPA-HQ-SFUND-1987-0002 | Coker’s Sanitation Service Landfill- Final Close Out Report | Supporting & Related Material | Report | 2011-06-07T04:00:00Z | 2011 | 6 | 2011-06-07T17:59:32Z | 0 | 0 | 0900006480e3abaa | |||
| EPA-HQ-SFUND-1987-0002-0318 | EPA | None EPA-HQ-SFUND-1987-0002 | Coker’s Sanitation Service Landfill- Consent Decree with Responsible Parties | Supporting & Related Material | Adjudication, Brief, Decision, Decree, Motion, Order | 2011-06-07T04:00:00Z | 2011 | 6 | 2011-06-07T17:59:39Z | 0 | 0 | 0900006480e3abad | |||
| EPA-HQ-SFUND-1987-0002-0322 | EPA | None EPA-HQ-SFUND-1987-0002 | Coker’s Sanitation Service Landfill- Memo Re: Completion of Sampling Activities | Supporting & Related Material | Letter, Memorandum, Email | 2011-06-07T04:00:00Z | 2011 | 6 | 2011-06-07T17:59:47Z | 0 | 0 | 0900006480e3abb7 | |||
| EPA-HQ-SFUND-1987-0002-0320 | EPA | None EPA-HQ-SFUND-1987-0002 | Coker’s Sanitation Service Landfill- November 2009 Monitoring Report | Supporting & Related Material | Report | 2011-06-07T04:00:00Z | 2011 | 6 | 2011-06-07T17:59:43Z | 0 | 0 | 0900006480e3abb2 | |||
| EPA-HQ-SFUND-1987-0002-0314 | EPA | None EPA-HQ-SFUND-1987-0002 | Coker’s Sanitation Service Landfill-Admin Record Index | Supporting & Related Material | Index | 2011-06-07T04:00:00Z | 2011 | 6 | 2011-06-07T17:59:30Z | 0 | 0 | 0900006480e3aba9 | |||
| EPA-HQ-SFUND-1987-0002-0317 | EPA | None EPA-HQ-SFUND-1987-0002 | Coker’s Sanitation Service Landfill- DNREC Concurrence Letter for Site Deletion | Supporting & Related Material | Letter, Memorandum, Email | 2011-06-07T04:00:00Z | 2011 | 6 | 2011-06-07T17:59:37Z | 0 | 0 | 0900006480e3abac | |||
| EPA-HQ-SFUND-1987-0002-0313 | EPA | None EPA-HQ-SFUND-1987-0002 | National Oil and Hazardous Substances Pollution Contingency Plan; Priorities List: Intent To Delete the Coker's Sanitation Service Landfills Superfund Site | Proposed Rule | Federal Register Document | 2011-06-03T04:00:00Z | 2011 | 6 | 2011-06-03T04:00:00Z | 2011-07-06T03:59:59Z | 2011-06-03T14:24:00Z | 2011-13844 | 0 | 0 | 0900006480e3a79e |
| EPA-HQ-SFUND-1987-0002-0312 | EPA | None EPA-HQ-SFUND-1987-0002 | National Oil and Hazardous Substances Pollution Contingency Plan; Priorities List: Deletion of the Coker's Sanitation Service Landfills Superfund Site | Rule | Federal Register Document | 2011-06-03T04:00:00Z | 2011 | 6 | 2011-06-03T14:19:25Z | 2011-13841 | 0 | 0 | 0900006480e3a783 |
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;