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-1998-0073" 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-RCRA-1998-0073-0019 | EPA | None EPA-HQ-RCRA-1998-0073 | Response to comments regarding on the Inorganic Chemicals Listing Determination Information Request (ICR), Docket No. F-98-SICP-FFFFF [F-1998-SICP-S0007] | Supporting & Related Material | Comment Response | 1998-10-23T04:00:00Z | 1998 | 10 | 2006-10-23T20:03:24Z | 0 | 0 | 09000064800df601 | |||
| EPA-HQ-RCRA-1998-0073-0021 | EPA | None EPA-HQ-RCRA-1998-0073 | Supporting Statement for EPA Information Collection Request Number 1848.01 "Survey of the Inorganic Chemical Industry" [F-1998-SICP-S0009] | Supporting & Related Material | Office of Management and Budget (OMB) | 1998-10-23T04:00:00Z | 1998 | 10 | 2006-10-23T20:03:24Z | 0 | 0 | 09000064800df60f | |||
| EPA-HQ-RCRA-1998-0073-0020 | EPA | None EPA-HQ-RCRA-1998-0073 | 1998 RCRA 3007 Survey of the Inorganic Chemicals Industry, Instructions [F-1998-SICP-S0008] | Supporting & Related Material | Other | 1998-10-23T04:00:00Z | 1998 | 10 | 2006-10-23T20:03:24Z | 0 | 0 | 09000064800df609 | |||
| EPA-HQ-RCRA-1998-0073-0018 | EPA | None EPA-HQ-RCRA-1998-0073 | Agency Information Collection Activities: Submission for OMB Review; Comment Request; Survey of the Inorganic Chemical Industry [F-1998-SICP-S0006] | Notice | Federal Register Document | 1998-09-29T04:00:00Z | 1998 | 9 | 2008-01-08T21:21:52Z | 0 | 0 | 09000064800df5ff | |||
| EPA-HQ-RCRA-1998-0073-0001 | EPA | None EPA-HQ-RCRA-1998-0073 | Agency Information Collection Activities - Proposed Collection; Comment Request; Survey of the Inorganic Chemicals Industry | Notice | Federal Register Document | 1998-04-08T04:00:00Z | 1998 | 4 | 1998-04-08T04:00:00Z | 1998-06-09T03:59:59Z | 2008-01-08T21:13:31Z | 17170 | 0 | 0 | 09000064800df5b4 |
| EPA-HQ-RCRA-1998-0073-0016 | EPA | None EPA-HQ-RCRA-1998-0073 | RCRA Confidential Business Information Security Manual [F-1998-SICP-S0004] | Supporting & Related Material | Other | 1998-04-01T05:00:00Z | 1998 | 4 | 2006-10-23T20:03:24Z | 0 | 0 | 09000064800df5f4 | |||
| EPA-HQ-RCRA-1998-0073-0014 | EPA | None EPA-HQ-RCRA-1998-0073 | 1998 RCRA 3007 Survey of the Inorganic Chemicals Industry, Instructions [F-1998-SICP-S0002] | Supporting & Related Material | Other | 1998-04-01T05:00:00Z | 1998 | 4 | 2006-10-23T20:03:24Z | 0 | 0 | 09000064800df5e7 | |||
| EPA-HQ-RCRA-1998-0073-0017 | EPA | None EPA-HQ-RCRA-1998-0073 | Contractor Requirements for the Control and Security of RCRA Confidential Business Information [F-1998-SICP-S0005] | Supporting & Related Material | Other | 1998-04-01T05:00:00Z | 1998 | 4 | 2006-10-23T20:03:24Z | 0 | 0 | 09000064800df5f9 | |||
| EPA-HQ-RCRA-1998-0073-0013 | EPA | None EPA-HQ-RCRA-1998-0073 | Supporting Statement for EPA Information Collection Request Number 1848.01, "Survey of the Inorganic Chemical Industry", Part A [F-1998-SICP-S0001] | Supporting & Related Material | Office of Management and Budget (OMB) | 1998-04-01T05:00:00Z | 1998 | 4 | 2006-10-23T20:03:24Z | 0 | 0 | 09000064800df5e1 | |||
| EPA-HQ-RCRA-1998-0073-0015 | EPA | None EPA-HQ-RCRA-1998-0073 | Consent Decree of United States District Court in the matter of Environmental Defense Fund (EDF), Inc., vs. Carol Browner, Administrator, USEPA, American Petroleum Institute (API) and Edision Electric Institute, et al., Case No. 89-0598 [F-1998-SICP-S0003] | Supporting & Related Material | Adjudication, Brief, Decision, Decree, Motion, Order | 1998-04-01T05:00:00Z | 1998 | 4 | 2006-10-23T20:03:24Z | 0 | 0 | 09000064800df5ee |
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;