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-2001-0001" and posted_year = 2006 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, 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-OW-2001-0001-0241 | EPA | None EPA-HQ-OW-2001-0001 | Legacy Index for Docket W-99-16 - V Delay of Effective Date, Final Rule | Supporting & Related Material | Index | 2006-10-10T04:00:00Z | 2006 | 10 | 2006-10-10T14:09:47Z | 0 | 0 | 09000064801d21d5 | |||
| EPA-HQ-OW-2001-0001-0239 | EPA | None EPA-HQ-OW-2001-0001 | Legacy Index for Docket W-99-16 - II Notice of Data Availability | Supporting & Related Material | Index | 2006-10-08T04:00:00Z | 2006 | 10 | 2006-10-08T12:54:37Z | 0 | 0 | 09000064801d216a | |||
| EPA-HQ-OW-2001-0001-0240 | EPA | None EPA-HQ-OW-2001-0001 | Legacy Index for Docket W-99-16 - III Final Rule | Supporting & Related Material | Index | 2006-10-08T04:00:00Z | 2006 | 10 | 2006-10-08T12:54:38Z | 0 | 0 | 09000064801d2185 | |||
| EPA-HQ-OW-2001-0001-0238 | EPA | None EPA-HQ-OW-2001-0001 | Legacy Index for Docket W-99-16 - VI Notice of Proposed Rulemaking and Notice of Data Availability | Supporting & Related Material | Index | 2006-10-06T04:00:00Z | 2006 | 10 | 2006-10-06T13:15:52Z | 0 | 0 | 09000064801d21e2 | |||
| EPA-HQ-OW-2001-0001-0237 | EPA | None EPA-HQ-OW-2001-0001 | Legacy Index for Docket W-99-16 - IV Notice of Proposed Rulemaking | Supporting & Related Material | Index | 2006-10-06T04:00:00Z | 2006 | 10 | 2006-10-06T13:15:51Z | 0 | 0 | 09000064801d21af | |||
| EPA-HQ-OW-2001-0001-0236 | EPA | None EPA-HQ-OW-2001-0001 | Water System Byproducts Treatment and Disposal Cost Document, Final Draft | Supporting & Related Material | Report | 2006-05-25T04:00:00Z | 2006 | 5 | 2006-09-02T16:56:21Z | 0 | 0 | 0900006480178908 |
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;