home / openregs

documents

Regulatory documents from Regulations.gov including rules, proposed rules, notices, and supporting materials.

Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API

11 rows where docket_id = "EPA-HQ-OW-2009-0761" sorted by posted_date descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: subtype, posted_date, posted_month, comment_start_date, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)

posted_year 2

  • 2009 10
  • 2010 1

document_type 2

  • Other 8
  • Notice 3

agency_id 1

  • EPA 11
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-2009-0761-0318 EPA None EPA-HQ-OW-2009-0761 Executive Order 13508 Chesapeake Bay Protection and Restoration Section 203 Final Coordinated Implementation Strategy Notice Federal Register Document 2010-05-11T04:00:00Z 2010 5     2010-05-11T13:50:04Z 2010-11143 0 0 0900006480aeb0fc
EPA-HQ-OW-2009-0761-0026 EPA None EPA-HQ-OW-2009-0761 Executive Order 13508 Chesapeake Bay Protection and Restoration Section 202 Federal Agency Reports Notice Federal Register Document 2009-12-04T05:00:00Z 2009 12     2009-12-04T15:29:03Z E9-28974 0 0 0900006480a6348c
EPA-HQ-OW-2009-0761-0029 EPA None EPA-HQ-OW-2009-0761 Storm Water Management at Federal Facilities and on Federal Lands in the Chesapeake Bay Watershed - A Report Fulfilling Section 202(c) of Executive Order 13508 Other NA 2009-12-04T05:00:00Z 2009 12 2009-12-04T05:00:00Z 2010-01-09T04:59:59Z 2009-12-04T15:21:26Z   0 0 0900006480a5eaac
EPA-HQ-OW-2009-0761-0027 EPA None EPA-HQ-OW-2009-0761 The Next Generation of Tools and Actions to Restore Water Quality in the Chesapeake Bay; A Revised Report Fulfilling Section 202(a) of Executive Order 13508 Other NA 2009-12-04T05:00:00Z 2009 12 2009-12-04T05:00:00Z 2010-01-09T04:59:59Z 2009-12-04T15:18:59Z   0 0 0900006480a5f420
EPA-HQ-OW-2009-0761-0028 EPA None EPA-HQ-OW-2009-0761 Focusing Resources to Restore and Protect the Chesapeake Bay and its Tributary Waters; Executive Order 13508, Section 202(b) Report Other NA 2009-12-04T05:00:00Z 2009 12 2009-12-04T05:00:00Z 2010-01-09T04:59:59Z 2009-12-04T15:20:23Z   0 0 0900006480a5e692
EPA-HQ-OW-2009-0761-0032 EPA None EPA-HQ-OW-2009-0761 Strengthening Science and Decision Support for Ecosystem Management in the Chesapeake Bay and its Watershed; A Revised Report Fulfilling Section 202(f) of Executive Order 13508 Other NA 2009-12-04T05:00:00Z 2009 12 2009-12-04T05:00:00Z 2010-01-09T04:59:59Z 2009-12-04T15:24:42Z   0 0 0900006480a5d24c
EPA-HQ-OW-2009-0761-0031 EPA None EPA-HQ-OW-2009-0761 Landscape Conservation and Public Access in the Chesapeake Bay Region; A Revised Report Fulfilling Section 202(e) of Executive Order 13508 Other NA 2009-12-04T05:00:00Z 2009 12 2009-12-04T05:00:00Z 2010-01-09T04:59:59Z 2009-12-04T15:23:32Z   0 0 0900006480a5d0cd
EPA-HQ-OW-2009-0761-0030 EPA None EPA-HQ-OW-2009-0761 Responding to Climate Change in the Chesapeake Bay Watershed; A draft report fulfilling Section 202(d) of Executive Order 13508 Other NA 2009-12-04T05:00:00Z 2009 12 2009-12-04T05:00:00Z 2010-01-09T04:59:59Z 2009-12-04T15:22:35Z   0 0 0900006480a5f41f
EPA-HQ-OW-2009-0761-0033 EPA None EPA-HQ-OW-2009-0761 Habitat and Research Activities to Protect and Restore Chesapeake Bay Living Resources and Water Quality; A Revised Report Fulfilling Section 202(g) of Executive 13508 Other NA 2009-12-04T05:00:00Z 2009 12 2009-12-04T05:00:00Z 2010-01-09T04:59:59Z 2009-12-04T15:25:56Z   0 0 0900006480a5e695
EPA-HQ-OW-2009-0761-0002 EPA None EPA-HQ-OW-2009-0761 Executive Order 13508 Draft Strategy for Protecting and Restoring the Chesapeake Bay Other NA 2009-11-09T05:00:00Z 2009 11 2009-11-09T05:00:00Z 2010-01-09T04:59:59Z 2009-11-09T15:57:08Z   0 0 0900006480a54032
EPA-HQ-OW-2009-0761-0001 EPA None EPA-HQ-OW-2009-0761 Executive Order 13508 Chesapeake Bay Protection and Restoration Section 203 Draft Strategy and Section 202 Federal Agency Reports Notice Federal Register Document 2009-11-09T05:00:00Z 2009 11     2009-11-09T15:55:55Z E9-26923 0 0 0900006480a53fc4

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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;
Powered by Datasette · Queries took 275.493ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API