documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "EPA-HQ-RCRA-2007-1168" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, last_modified, open_for_comment, 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-RCRA-2007-1168-0005 | EPA | None EPA-HQ-RCRA-2007-1168 | 2007 Public Assistance Debris Management Guide, FEMA 325 | Supporting & Related Material | Guidance, Interpretation, Policy, Procedure | 2008-04-01T04:00:00Z | 2008 | 4 | 2008-04-01T20:50:25Z | 0 | 0 | 090000648040a0b6 | |||
| EPA-HQ-RCRA-2007-1168-0004 | EPA | None EPA-HQ-RCRA-2007-1168 | City of Fairfax Debris Management Plan | Supporting & Related Material | Guidance, Interpretation, Policy, Procedure | 2008-04-01T04:00:00Z | 2008 | 4 | 2008-04-01T20:28:45Z | 0 | 0 | 090000648040a169 | |||
| EPA-HQ-RCRA-2007-1168-0008 | EPA | None EPA-HQ-RCRA-2007-1168 | Florida Department of Environmental Protection Guidance for Establishment, Operation and Closure of Staging Areas for Hurricane-Generated Debris | Supporting & Related Material | Guidance, Interpretation, Policy, Procedure | 2008-04-01T04:00:00Z | 2008 | 4 | 2008-04-01T20:50:27Z | 0 | 0 | 090000648040a16c | |||
| EPA-HQ-RCRA-2007-1168-0010 | EPA | None EPA-HQ-RCRA-2007-1168 | Almeda County Disaster Waste Management Plan | Supporting & Related Material | Guidance, Interpretation, Policy, Procedure | 2008-04-01T04:00:00Z | 2008 | 4 | 2008-04-01T20:50:29Z | 0 | 0 | 090000648040a16e | |||
| EPA-HQ-RCRA-2007-1168-0009 | EPA | None EPA-HQ-RCRA-2007-1168 | Escambia County, Florida Disaster Debris Management Plan | Supporting & Related Material | Guidance, Interpretation, Policy, Procedure | 2008-04-01T04:00:00Z | 2008 | 4 | 2008-04-01T20:50:28Z | 0 | 0 | 090000648040a16d | |||
| EPA-HQ-RCRA-2007-1168-0006 | EPA | None EPA-HQ-RCRA-2007-1168 | Memorandum to All Municipal Chief Elected Officials from Gina McCarthy, Commisioner, re: Disaster Debris Management Planning | Supporting & Related Material | Letter, Memorandum, Email | 2008-04-01T04:00:00Z | 2008 | 4 | 2008-04-01T20:50:26Z | 0 | 0 | 090000648040a16a | |||
| EPA-HQ-RCRA-2007-1168-0002 | EPA | None EPA-HQ-RCRA-2007-1168 | 2006 Pinellas County Disaster Debris Management Plan | Supporting & Related Material | Guidance, Interpretation, Policy, Procedure | 2008-04-01T04:00:00Z | 2008 | 4 | 2008-04-01T20:28:43Z | 0 | 0 | 090000648040a167 | |||
| EPA-HQ-RCRA-2007-1168-0001 | EPA | None EPA-HQ-RCRA-2007-1168 | Planning for Natural Disaster Debris Guidance [EPA530-K-08-001] | Other | Significant Guidance | 2008-04-01T04:00:00Z | 2008 | 4 | 2008-04-01T04:00:00Z | 2010-04-02T03:59:59Z | 2024-11-07T21:51:55Z | 1 | 0 | 0900006480409fdb | |
| EPA-HQ-RCRA-2007-1168-0007 | EPA | None EPA-HQ-RCRA-2007-1168 | Palm Beach County Debris Management Plan | Supporting & Related Material | Guidance, Interpretation, Policy, Procedure | 2008-04-01T04:00:00Z | 2008 | 4 | 2008-04-01T20:50:27Z | 0 | 0 | 090000648040a16b | |||
| EPA-HQ-RCRA-2007-1168-0003 | EPA | None EPA-HQ-RCRA-2007-1168 | Integrated Waste Management Disaster Plan: Guidance for Local Government on Disaster Debris Management | Supporting & Related Material | Guidance, Interpretation, Policy, Procedure | 2008-04-01T04:00:00Z | 2008 | 4 | 2008-04-01T20:28:44Z | 0 | 0 | 090000648040a168 |
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;