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-2012-0813" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
agency_id 1
- EPA 7
| 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-2012-0813-0218 | EPA | None EPA-HQ-OW-2012-0813 | Semiannual Regulatory Agenda - Fall 2014 | Notice | 2014-12-22T05:00:00Z | 2014 | 12 | 2014-12-22T05:00:00Z | 2015-01-12T03:26:07Z | 2014-28976 | 0 | 0 | 090000648198cb21 | ||
| EPA-HQ-OW-2012-0813-0217 | EPA | None EPA-HQ-OW-2012-0813 | Semiannual Regulatory Agenda - Spring 2014 | Other | Memorandum to Open a Docket | 2014-06-13T04:00:00Z | 2014 | 6 | 2014-06-13T04:00:00Z | 2014-06-13T16:05:13Z | 0 | 0 | 0900006481746298 | ||
| EPA-HQ-OW-2012-0813-0216 | EPA | None EPA-HQ-OW-2012-0813 | Regulatory Flexibility Act Section 610 Review of the National Pollutant Discharge Elimination System (NPDES) Permit Regulation and Effluent Limitation Guidelines and Standards for Concentrated Animal Feeding Operations (CAFOs) | Supporting & Related Material | Publication - USEPA | 2014-06-04T04:00:00Z | 2014 | 6 | 2014-06-04T17:41:26Z | 0 | 0 | 0900006481727366 | |||
| EPA-HQ-OW-2012-0813-0215 | EPA | None EPA-HQ-OW-2012-0813 | Fall 2013 Regulatory Agenda | Proposed Rule | 2014-01-07T05:00:00Z | 2014 | 1 | 2014-01-09T22:09:49Z | 2013-29640 | 0 | 0 | 09000064814f1586 | |||
| EPA-HQ-OW-2012-0813-0213 | EPA | None EPA-HQ-OW-2012-0813 | Spring 2013 Regulatory Agenda | Proposed Rule | 2013-07-23T04:00:00Z | 2013 | 7 | 2013-07-23T04:00:00Z | 2014-01-09T22:02:51Z | 2013-17068 | 0 | 0 | 09000064813767e1 | ||
| EPA-HQ-OW-2012-0813-0030 | EPA | None EPA-HQ-OW-2012-0813 | NPDES Permit Regulation and Effluent Limitations Guidelines Standards: Concentrated Animal Feeding Operations | Proposed Rule | Extension of Comment Period | 2013-01-03T05:00:00Z | 2013 | 1 | 2013-01-03T05:00:00Z | 2013-01-03T14:23:15Z | 2012-31091 | 0 | 0 | 09000064811a3bca | |
| EPA-HQ-OW-2012-0813-0001 | EPA | None EPA-HQ-OW-2012-0813 | Section 610 Reviews of Heavy-Duty Engine and Vehicle Standards and Highway Diesel Fuel Sulfur Control Requirements; Reinforced PlasticComposites Production; and NPDES Permit Regulation and Effluent Limitations Guidelines Standards for Concentrated Animal Feeding Operations(CAFOs) | Proposed Rule | 2012-10-31T04:00:00Z | 2012 | 10 | 2012-10-31T04:00:00Z | 2013-03-02T04:59:59Z | 2013-09-04T01:02:47Z | 2012-26794 | 0 | 0 | 0900006481157162 |
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;