documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "EPA-HQ-OW-2010-0192" and posted_year = 2013 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, 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-OW-2010-0192-0367 | EPA | None EPA-HQ-OW-2010-0192 | Email messages regarding Notice of Data Availability | Supporting & Related Material | 2013-03-07T05:00:00Z | 2013 | 3 | 2013-03-07T14:04:13Z | 0 | 0 | 09000064811fe7b3 | ||||
| EPA-HQ-OW-2010-0192-0364 | EPA | None EPA-HQ-OW-2010-0192 | Response to Public Comments on Notice of Data Availability | Supporting & Related Material | Comment Response | 2013-03-07T05:00:00Z | 2013 | 3 | 2013-03-07T14:04:13Z | 0 | 0 | 09000064811fe73b | |||
| EPA-HQ-OW-2010-0192-0368 | EPA | None EPA-HQ-OW-2010-0192 | Guidelines Establishing Test Procedures for the Analysis of Oil and Grease and Non-Polar Material Under the Clean Water Act and Resource Conservation and Recovery Act; Final Rule (64 FR 26315) | Supporting & Related Material | Publication - Previous/Related FR Notice | 2013-03-07T05:00:00Z | 2013 | 3 | 2013-03-07T14:04:14Z | 0 | 0 | 09000064811ff58e | |||
| EPA-HQ-OW-2010-0192-0365 | EPA | None EPA-HQ-OW-2010-0192 | Response to USEPA Questions Derived from Notice of Data Availability Comments | Supporting & Related Material | Report | 2013-03-07T05:00:00Z | 2013 | 3 | 2013-03-07T14:04:13Z | 0 | 0 | 09000064811fe7ad | |||
| EPA-HQ-OW-2010-0192-0369 | EPA | None EPA-HQ-OW-2010-0192 | Analytical Method Guidance for EPA Method 1664A Implementation and Use (EPA/821-R-00-003) | Supporting & Related Material | Guidance | 2013-03-07T05:00:00Z | 2013 | 3 | 2013-03-07T14:04:14Z | 0 | 0 | 09000064811ff58f | |||
| EPA-HQ-OW-2010-0192-0366 | EPA | None EPA-HQ-OW-2010-0192 | Permits with Oil and Grease Requirements and Potential Burden to States and Control Authorities Associated With ASTM D-7575 | Supporting & Related Material | Memorandum | 2013-03-07T05:00:00Z | 2013 | 3 | 2013-03-07T14:04:13Z | 0 | 0 | 09000064811fe7b0 | |||
| EPA-HQ-OW-2010-0192-0363 | EPA | None EPA-HQ-OW-2010-0192 | Analysis and Sampling Procedures: Guidelines Establishing Test Procedures for the Analysis of Pollutants under the Clean Water Act | Rule | 2013-03-06T05:00:00Z | 2013 | 3 | 2013-03-06T05:00:00Z | 2013-03-07T13:59:19Z | 2013-05248 | 0 | 0 | 090000648121c29b |
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;