documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-HQ-OPPT-2003-0004" and posted_year = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-0066 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information: Science Applications International Corp. and Its Identified Subcontractors | Notice | Federal Register Document | 2010-12-15T05:00:00Z | 2010 | 12 | 2010-12-15T17:51:06Z | 2010-31492 | 0 | 0 | 0900006480bb70bf | ||
| EPA-HQ-OPPT-2003-0004-0065 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information: Computer Sciences Corp. and Identified Subcontractors | Notice | Federal Register Document | 2010-11-18T05:00:00Z | 2010 | 11 | 2010-11-18T16:44:18Z | 2010-29140 | 0 | 0 | 0900006480b986ef | ||
| EPA-HQ-OPPT-2003-0004-0064 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by Avanti Corp. | Notice | Federal Register Document | 2010-10-14T04:00:00Z | 2010 | 10 | 2010-10-14T15:26:13Z | 2010-25908 | 0 | 0 | 0900006480b6edd3 | ||
| EPA-HQ-OPPT-2003-0004-0063 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by Eastern Research Group and Its Identified Subcontractor | Notice | Federal Register Document | 2010-09-22T04:00:00Z | 2010 | 9 | 2010-09-22T14:56:58Z | 2010-23721 | 0 | 0 | 0900006480b555ad | ||
| EPA-HQ-OPPT-2003-0004-0062 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information: Industrial Economics Inc. | Notice | Federal Register Document | 2010-09-15T04:00:00Z | 2010 | 9 | 2010-09-15T16:05:23Z | 2010-22999 | 0 | 0 | 0900006480b4f5fe | ||
| EPA-HQ-OPPT-2003-0004-0061 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by Guident Technologies Inc.'s Identified Subcontractor | Notice | Federal Register Document | 2010-05-05T04:00:00Z | 2010 | 5 | 2010-05-05T14:33:35Z | 2010-10230 | 0 | 0 | 0900006480ae719c | ||
| EPA-HQ-OPPT-2003-0004-0060 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by Eastern Research Group | Notice | Federal Register Document | 2010-02-24T05:00:00Z | 2010 | 2 | 2010-09-15T16:00:52Z | 2010-03671 | 0 | 0 | 0900006480aad92c | ||
| EPA-HQ-OPPT-2003-0004-0059 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by Versar Inc. and Its Identified Subcontractor | Notice | Federal Register Document | 2010-01-20T05:00:00Z | 2010 | 1 | 2010-01-20T05:00:00Z | 2010-06-16T14:15:30Z | 2010-00958 | 0 | 0 | 0900006480a8032e |
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;