documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "EPA-HQ-OPP-2008-0626" and posted_year = 2015 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), 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-OPP-2008-0626-0021 | EPA | None EPA-HQ-OPP-2008-0626 | Iron Salts: Tier 1 Review of Human Incidents for Draft Risk Assessment | Supporting & Related Material | Risk Assessment | 2015-04-07T04:00:00Z | 2015 | 4 | 2015-04-07T20:23:50Z | 0 | 0 | 0900006481a78a9f | |||
| EPA-HQ-OPP-2008-0626-0023 | EPA | None EPA-HQ-OPP-2008-0626 | Iron Salts Generic Data Call-In - Ferrous Sulfate Monohydrate ID # GDCI-050507-NNNNN | Supporting & Related Material | 2015-04-07T04:00:00Z | 2015 | 4 | 2015-04-07T20:23:51Z | 0 | 0 | 0900006481a78612 | ||||
| EPA-HQ-OPP-2008-0626-0025 | EPA | None EPA-HQ-OPP-2008-0626 | HED Risk Assessment from the Reregistration Eligibility Decision for Iron Salts Case No. 4058 | Supporting & Related Material | Risk Assessment | 2015-04-07T04:00:00Z | 2015 | 4 | 2015-04-07T20:23:52Z | 0 | 0 | 0900006481a78b12 | |||
| EPA-HQ-OPP-2008-0626-0024 | EPA | None EPA-HQ-OPP-2008-0626 | Iron Salts Reregistration Eligibility Decision dated February, 1993 | Supporting & Related Material | Publication - USEPA | 2015-04-07T04:00:00Z | 2015 | 4 | 2015-04-07T20:23:52Z | 0 | 0 | 0900006481a7861e | |||
| EPA-HQ-OPP-2008-0626-0020 | EPA | None EPA-HQ-OPP-2008-0626 | Iron Salts Interim Registration Review Decision Case No. 4058 | Supporting & Related Material | Decision | 2015-04-07T04:00:00Z | 2015 | 4 | 2015-04-07T20:23:49Z | 0 | 0 | 0900006481a78a98 | |||
| EPA-HQ-OPP-2008-0626-0022 | EPA | None EPA-HQ-OPP-2008-0626 | Iron Salts Registration Review Ferric sulfate Data Call In ID # RR-034902-29978 | Supporting & Related Material | 2015-04-07T04:00:00Z | 2015 | 4 | 2015-04-07T20:23:51Z | 0 | 0 | 0900006481a78610 | ||||
| EPA-HQ-OPP-2008-0626-0019 | EPA | None EPA-HQ-OPP-2008-0626 | Registration Review Interim Decisions | Notice | 2015-03-27T04:00:00Z | 2015 | 3 | 2015-03-27T04:00:00Z | 2015-03-27T19:10:44Z | 2015-07004 | 0 | 0 | 0900006481a6daa9 |
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;