documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "EPA" and docket_id = "EPA-HQ-OEI-2009-0795" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, last_modified, 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-OEI-2009-0795-0008 | EPA | Environmental Sampling, Analysis and Results (ESAR) Toxicity & Populations Revisions EPA-HQ-OEI-2009-0795 | Data Standard Change Log October 17, 2008 | Supporting & Related Material | Data | 2009-11-18T05:00:00Z | 2009 | 11 | 2010-07-15T19:27:37Z | 0 | 0 | 0900006480a59276 | |||
| EPA-HQ-OEI-2009-0795-0007 | EPA | Environmental Sampling, Analysis and Results (ESAR) Toxicity & Populations Revisions EPA-HQ-OEI-2009-0795 | Draft. Well Information Data Standard - Standard No.: EX000025.2 | Supporting & Related Material | Report | 2009-11-17T05:00:00Z | 2009 | 11 | 2010-07-15T19:27:28Z | 0 | 0 | 0900006480a46659 | |||
| EPA-HQ-OEI-2009-0795-0006 | EPA | Environmental Sampling, Analysis and Results (ESAR) Toxicity & Populations Revisions EPA-HQ-OEI-2009-0795 | Draft. Quality Assurance and Quality Control Data Standard - Standard No.:EX000012.2 | Supporting & Related Material | Report | 2009-11-17T05:00:00Z | 2009 | 11 | 2010-07-15T19:27:28Z | 0 | 0 | 0900006480a46658 | |||
| EPA-HQ-OEI-2009-0795-0001 | EPA | Environmental Sampling, Analysis and Results (ESAR) Toxicity & Populations Revisions EPA-HQ-OEI-2009-0795 | Office of Environmental Information; Announcement of Availability and Comment Period for Revised Environmental Sampling, Analysis and Results Data Standards (ESAR) | Notice | Federal Register Document | 2009-11-17T05:00:00Z | 2009 | 11 | 2009-11-17T05:00:00Z | 2009-12-18T04:59:59Z | 2010-07-15T19:27:38Z | E9-27605 | 0 | 0 | 0900006480a593b3 |
| EPA-HQ-OEI-2009-0795-0005 | EPA | Environmental Sampling, Analysis and Results (ESAR) Toxicity & Populations Revisions EPA-HQ-OEI-2009-0795 | Draft. Environmental Sampling Analysis and Results: Field Activity Data Standard - Standard No. EX000004.2 | Supporting & Related Material | Report | 2009-11-17T05:00:00Z | 2009 | 11 | 2010-07-15T19:27:28Z | 0 | 0 | 0900006480a46657 | |||
| EPA-HQ-OEI-2009-0795-0002 | EPA | Environmental Sampling, Analysis and Results (ESAR) Toxicity & Populations Revisions EPA-HQ-OEI-2009-0795 | Draft. Environmental Sampling, Analysis and Results: Monitoring Location Data Standard - Standard No.: EX000003.2 | Supporting & Related Material | Report | 2009-11-17T05:00:00Z | 2009 | 11 | 2010-07-15T19:27:27Z | 0 | 0 | 0900006480a45552 | |||
| EPA-HQ-OEI-2009-0795-0003 | EPA | Environmental Sampling, Analysis and Results (ESAR) Toxicity & Populations Revisions EPA-HQ-OEI-2009-0795 | Draft. Environmental Sampling, Analysis and Results: Analysis and Results - Standard No.: EX000005.2 | Supporting & Related Material | Report | 2009-11-17T05:00:00Z | 2009 | 11 | 2010-07-15T19:27:28Z | 0 | 0 | 0900006480a46654 | |||
| EPA-HQ-OEI-2009-0795-0004 | EPA | Environmental Sampling, Analysis and Results (ESAR) Toxicity & Populations Revisions EPA-HQ-OEI-2009-0795 | Draft. Environmental Sampling, Analysis and Results: Project - Standard No. EX000002.2 | Supporting & Related Material | Report | 2009-11-17T05:00:00Z | 2009 | 11 | 2010-07-15T19:27:28Z | 0 | 0 | 0900006480a46656 |
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;