documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "EPA-HQ-OPPT-2003-0004" and posted_year = 2011 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, 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-0075 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information: Guident Technologies, Inc. and Subcontractor, Impact Innovations Systems, Inc. | Notice | 2011-12-14T05:00:00Z | 2011 | 12 | 2024-03-15T18:27:00Z | 2011-31826 | 0 | 0 | 0900006480f824a9 | |||
| EPA-HQ-OPPT-2003-0004-0076 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information; Authorizations: CGI Federal, Inc. and Subcontractor, Innovate, Inc. | Notice | 2011-12-14T05:00:00Z | 2011 | 12 | 2024-03-15T18:27:15Z | 2011-31647 | 0 | 0 | 0900006480f824ac | |||
| EPA-HQ-OPPT-2003-0004-0074 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information; Authorizations Primus Solutions, Inc. | Notice | 2011-12-12T05:00:00Z | 2011 | 12 | 2024-03-15T18:26:41Z | 2011-31827 | 0 | 0 | 0900006480f80282 | |||
| EPA-HQ-OPPT-2003-0004-0073 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by Primus Solutions, Inc. | Notice | 2011-11-23T05:00:00Z | 2011 | 11 | 2024-03-15T18:26:26Z | 2011-30143 | 0 | 0 | 0900006480f7252f | |||
| EPA-HQ-OPPT-2003-0004-0072 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by U.S. Consumer Product Safety Commission | Notice | 2011-11-16T05:00:00Z | 2011 | 11 | 2024-03-15T18:26:04Z | 2011-29593 | 0 | 0 | 0900006480f6d645 | |||
| EPA-HQ-OPPT-2003-0004-0071 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information: Protection Strategies Inc. | Notice | 2011-11-09T05:00:00Z | 2011 | 11 | 2024-03-15T18:25:42Z | 2011-29074 | 0 | 0 | 0900006480f68d50 | |||
| EPA-HQ-OPPT-2003-0004-0070 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by Computer Sciences Corporation and Its Identified Subcontractors | Notice | 2011-06-24T04:00:00Z | 2011 | 6 | 2011-06-24T04:00:00Z | 2024-03-15T18:25:14Z | 0 | 0 | 0900006480eb32fa | |||
| EPA-HQ-OPPT-2003-0004-0069 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by Syracuse Research Corp. | Notice | Federal Register Document | 2011-04-27T04:00:00Z | 2011 | 4 | 2024-03-15T18:24:53Z | 2011-09851 | 0 | 0 | 0900006480c3a678 | ||
| EPA-HQ-OPPT-2003-0004-0068 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information: Guident Technologies Inc. and Its Identified Subcontractors | Notice | Federal Register Document | 2011-02-24T05:00:00Z | 2011 | 2 | 2024-03-15T18:24:36Z | 2011-04141 | 0 | 0 | 0900006480bf6df8 | ||
| EPA-HQ-OPPT-2003-0004-0067 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by Electronic Consulting Services, Inc. | Notice | Federal Register Document | 2011-02-16T05:00:00Z | 2011 | 2 | 2024-03-15T18:24:20Z | 2011-03526 | 0 | 0 | 0900006480bf0321 |
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;