documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-HQ-OW-2016-0551" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, 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-OW-2016-0551-0009 | EPA | None EPA-HQ-OW-2016-0551 | Memorandum to extend the comment period - Docket EPA-HQ-OW-2016-0551 | Other | Memorandum to Open a Docket | 2016-12-08T05:00:00Z | 2016 | 12 | 2016-12-08T05:00:00Z | 2016-12-09T05:20:15Z | 0 | 0 | 09000064823eeac9 | ||
| EPA-HQ-OW-2016-0551-0002 | EPA | None EPA-HQ-OW-2016-0551 | Technical Support for Adopting and Implementing EPA’s 2016 Selenium Criterion in Water Quality Standards--Draft | Supporting & Related Material | Technical Support Document | 2016-10-13T04:00:00Z | 2016 | 10 | 2016-10-14T00:41:20Z | 0 | 0 | 09000064822af7da | |||
| EPA-HQ-OW-2016-0551-0005 | EPA | None EPA-HQ-OW-2016-0551 | Technical Support for Fish Tissue Monitoring for Implementation of EPA’s 2016 Selenium Criterion--Draft | Supporting & Related Material | Publication - USEPA | 2016-10-13T04:00:00Z | 2016 | 10 | 2016-10-14T00:41:15Z | 0 | 0 | 09000064822e2d27 | |||
| EPA-HQ-OW-2016-0551-0004 | EPA | None EPA-HQ-OW-2016-0551 | Frequently Asked Questions (FAQs): Implementing WQS that Include Elements Similar or Identical to EPA’s 2016 Selenium Criterion in Clean Water Act Section 402 NPDES Programs--Draft | Supporting & Related Material | Publication - USEPA | 2016-10-13T04:00:00Z | 2016 | 10 | 2016-10-14T00:41:29Z | 0 | 0 | 09000064822af7dc | |||
| EPA-HQ-OW-2016-0551-0001 | EPA | None EPA-HQ-OW-2016-0551 | Memorandum to open docket for public access | Other | Memorandum to Open a Docket | 2016-10-13T04:00:00Z | 2016 | 10 | 2016-10-13T04:00:00Z | 2017-02-11T04:59:59Z | 2017-02-11T02:00:30Z | 0 | 0 | 09000064822f3d1d | |
| EPA-HQ-OW-2016-0551-0003 | EPA | None EPA-HQ-OW-2016-0551 | Frequently Asked Questions (FAQs): Implementing the 2016 Selenium Criterion in Clean Water Act Sections 303(d) and 305(b) Assessment, Listing, and Total Maximum Daily Load (TMDL) Programs--Draft | Supporting & Related Material | Publication - USEPA | 2016-10-13T04:00:00Z | 2016 | 10 | 2016-10-14T00:41:35Z | 0 | 0 | 09000064822af7db |
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;