documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-HQ-RCRA-2000-0054" and posted_year = 2004 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-2000-0054-0989 | EPA | None EPA-HQ-RCRA-2000-0054 | Factory Farming: Toxic Waste and Fertilizer in the United States, 1990-1995 | Supporting & Related Material | Other | 2004-03-10T05:00:00Z | 2004 | 3 | 2006-10-23T19:59:18Z | 0 | 0 | 09000064800dfd90 | |||
| EPA-HQ-RCRA-2000-0054-0988 | EPA | None EPA-HQ-RCRA-2000-0054 | New Rules for Zinc - Fact Sheet | Supporting & Related Material | Other | 2004-03-10T05:00:00Z | 2004 | 3 | 2006-10-23T19:59:18Z | 0 | 0 | 09000064800dfd8a | |||
| EPA-HQ-RCRA-2000-0054-0985 | EPA | None EPA-HQ-RCRA-2000-0054 | Zinc MicroNutrient Fertilizer Estimated Market Share Analysis - Hazardous Waste vs Non-hazardous Waste Feedstocks | Supporting & Related Material | Other | 2004-03-10T05:00:00Z | 2004 | 3 | 2006-10-23T19:59:18Z | 0 | 0 | 09000064800dfd74 | |||
| EPA-HQ-RCRA-2000-0054-0991 | EPA | None EPA-HQ-RCRA-2000-0054 | AAPFCO Proposal (B) for SUIP #25 (February 18, 2001) | Supporting & Related Material | Other | 2004-03-10T05:00:00Z | 2004 | 3 | 2006-10-23T19:59:18Z | 0 | 0 | 09000064800dfda3 | |||
| EPA-HQ-RCRA-2000-0054-0992 | EPA | None EPA-HQ-RCRA-2000-0054 | Estimating Exposure To Dioxin-Like Compounds - Volume 1: Executive Summary | Supporting & Related Material | Other | 2004-03-10T05:00:00Z | 2004 | 3 | 2006-10-23T19:59:18Z | 0 | 0 | 09000064800dfda8 | |||
| EPA-HQ-RCRA-2000-0054-0993 | EPA | None EPA-HQ-RCRA-2000-0054 | Estimating Risk from Contaminants Contained in Agricultural Fertilizers, Draft Report (See attachment for complete Report) | Supporting & Related Material | Report | 2004-03-10T05:00:00Z | 2004 | 3 | 2019-11-14T21:42:47Z | 0 | 0 | 09000064800dfdb4 | |||
| EPA-HQ-RCRA-2000-0054-0990 | EPA | None EPA-HQ-RCRA-2000-0054 | Notes from 04/16/1999 telephone conversation between Richard Camp, President, Bay Zinc and Paul Horst, USEPA, OSW | Supporting & Related Material | Meeting or Teleconference Materials | 2004-03-10T05:00:00Z | 2004 | 3 | 2006-10-23T19:59:18Z | 0 | 0 | 09000064800dfd9b | |||
| EPA-HQ-RCRA-2000-0054-0987 | EPA | None EPA-HQ-RCRA-2000-0054 | Facsimile to Ken Herstowski from Tom Miller, Nucor Bar Mill Group, re: Analysis Report | Supporting & Related Material | Letter, Memorandum, Email | 2004-03-10T05:00:00Z | 2004 | 3 | 2006-10-23T19:59:18Z | 0 | 0 | 09000064800dfd7f | |||
| EPA-HQ-RCRA-2000-0054-0986 | EPA | None EPA-HQ-RCRA-2000-0054 | Zinc Sulfate Chemical Profile | Supporting & Related Material | Other | 2004-03-10T05:00:00Z | 2004 | 3 | 2006-10-23T19:59:18Z | 0 | 0 | 09000064800dfd79 |
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;