documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "EPA-HQ-RCRA-2001-0032" and posted_year = 2005 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, last_modified, posted_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-2001-0032-0110 | EPA | None EPA-HQ-RCRA-2001-0032 | Corrected Federal Register Notice for original Federal Register which is document number RCRA-2001-0032-0105 | Rule | Federal Register Document | 2005-06-16T04:00:00Z | 2005 | 6 | 2008-01-08T21:16:44Z | 35034 | 0 | 0 | 09000064800e248d | ||
| EPA-HQ-RCRA-2001-0032-0107 | EPA | None EPA-HQ-RCRA-2001-0032 | Information Collection Request: (ICR) Paperwork Reduction Act Submission | Supporting & Related Material | Office of Management and Budget (OMB) | 2005-03-21T05:00:00Z | 2005 | 3 | 2006-10-23T20:16:57Z | 0 | 0 | 09000064800e2472 | |||
| EPA-HQ-RCRA-2001-0032-0108 | EPA | None EPA-HQ-RCRA-2001-0032 | Supporting Statement for Information Collection Request (ICR) 801.15, Requirements for Generators, Transporters, & Waste Management Facilities Under the RCRA Hazardous Waste Manifest System | Supporting & Related Material | Office of Management and Budget (OMB) | 2005-03-21T05:00:00Z | 2005 | 3 | 2006-10-23T20:16:57Z | 0 | 0 | 09000064800e247c | |||
| EPA-HQ-RCRA-2001-0032-0109 | EPA | None EPA-HQ-RCRA-2001-0032 | Uniform Hazardous Waste Manifest Form | Supporting & Related Material | Other | 2005-03-21T05:00:00Z | 2005 | 3 | 2006-10-23T20:16:58Z | 0 | 0 | 09000064800e2484 | |||
| EPA-HQ-RCRA-2001-0032-0105 | EPA | None EPA-HQ-RCRA-2001-0032 | Hazardous Waste Management System; Modification of the Hazardous Waste Manifest System; Final Rule | Rule | Federal Register Document | 2005-03-04T05:00:00Z | 2005 | 3 | 2008-01-08T21:09:54Z | 10775 | 0 | 0 | 09000064800e2459 | ||
| EPA-HQ-RCRA-2001-0032-0106 | EPA | None EPA-HQ-RCRA-2001-0032 | Economics Background Document: Economic Analysis of the USEPA's Final Rule Revisions to the RCRA Hazardous Waste Manifest Form | Supporting & Related Material | Other | 2005-03-04T05:00:00Z | 2005 | 3 | 2006-10-23T20:16:57Z | 0 | 0 | 09000064800e2463 | |||
| EPA-HQ-RCRA-2001-0032-0104 | EPA | None EPA-HQ-RCRA-2001-0032 | Reponse to Comments Document Regarding Hazardous Waste Management System: Modifications of the Hazardous Wate Manifest Sytem; Proposed Rule - Published May 22, 2001 | Supporting & Related Material | Comment Response | 2005-03-02T05:00:00Z | 2005 | 3 | 2006-10-23T20:16:57Z | 0 | 0 | 09000064800e244f |
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;