documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "EPA-HQ-OPPT-2003-0004" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, 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-OPPT-2003-0004-0043 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by Guident Technologies Inch. and Science Applications International Corporation | Notice | Federal Register Document | 2008-12-24T05:00:00Z | 2008 | 12 | 2008-12-24T05:00:00Z | 2008-12-24T15:49:39Z | E8-30203 | 0 | 0 | 09000064807f8d06 | |
| EPA-HQ-OPPT-2003-0004-0041 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by Industrial Economics, Inc. | Notice | Federal Register Document | 2008-09-03T04:00:00Z | 2008 | 9 | 2008-09-03T04:00:00Z | 2008-09-03T11:24:40Z | E8-20130 | 0 | 0 | 09000064806ee253 | |
| EPA-HQ-OPPT-2003-0004-0042 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by Computer Sciences Corporations Identified Subcontractor | Notice | Federal Register Document | 2008-08-06T04:00:00Z | 2008 | 8 | 2008-08-06T04:00:00Z | 2008-09-26T19:53:11Z | E8-17933 | 0 | 0 | 09000064806b1640 | |
| EPA-HQ-OPPT-2003-0004-0040 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by Midwest Research Institute | Notice | Federal Register Document | 2008-06-25T04:00:00Z | 2008 | 6 | 2008-06-25T04:00:00Z | 2008-06-25T11:41:20Z | E8-13878 | 0 | 0 | 090000648063bc64 | |
| EPA-HQ-OPPT-2003-0004-0039 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by Solutions by Design II | Notice | Federal Register Document | 2008-04-24T04:00:00Z | 2008 | 4 | 2008-04-24T04:00:00Z | 2008-04-24T11:11:35Z | E8-08995 | 0 | 0 | 0900006480524237 | |
| EPA-HQ-OPPT-2003-0004-0037 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by Abt Associates, Inc. | Notice | Federal Register Document | 2008-02-27T05:00:00Z | 2008 | 2 | 2008-02-27T05:00:00Z | 2008-02-27T12:31:03Z | E8-03249 | 0 | 0 | 09000064803caec8 | |
| EPA-HQ-OPPT-2003-0004-0038 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by Electronic Data Systems Corporation | Notice | Federal Register Document | 2008-02-27T05:00:00Z | 2008 | 2 | 2008-02-27T05:00:00Z | 2008-02-27T12:38:29Z | E8-03272 | 0 | 0 | 09000064803caee5 |
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;