documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-HQ-OPPT-2003-0004" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-0113 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information: Patriot, LLC and Its Identified Subcontractor, Vision Technologies, Inc. | Notice | 2017-10-16T04:00:00Z | 2017 | 10 | 2024-03-15T18:46:56Z | 2017-22366 | 0 | 0 | 0900006482bcdfa2 | |||
| EPA-HQ-OPPT-2003-0004-0112 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information: Syracuse Research Corp. and its Identified Subcontractors | Notice | 2017-07-07T04:00:00Z | 2017 | 7 | 2017-07-07T04:00:00Z | 2024-03-15T18:46:31Z | 2017-14324 | 0 | 0 | 090000648283c2c3 | ||
| EPA-HQ-OPPT-2003-0004-0111 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information: Versar, Inc. and Its Identified Subcontractors | Notice | 2017-05-11T04:00:00Z | 2017 | 5 | 2024-03-15T18:46:15Z | 2017-09560 | 0 | 0 | 09000064825a37e0 | |||
| EPA-HQ-OPPT-2003-0004-0108 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information: Arctic Slope Mission Services, LLC | Notice | 2017-05-11T04:00:00Z | 2017 | 5 | 2024-03-15T18:44:58Z | 2017-09556 | 0 | 0 | 09000064825a36f1 | |||
| EPA-HQ-OPPT-2003-0004-0110 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information: Eastern Research Group, Inc. and its Identified Subcontractors, Avanti Corp. and BeakerTree Corp. | Notice | 2017-05-11T04:00:00Z | 2017 | 5 | 2024-03-15T18:45:34Z | 2017-09555 | 0 | 0 | 09000064825a3813 | |||
| EPA-HQ-OPPT-2003-0004-0109 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information: Arctic Slope Mission Services, LLC | Notice | 2017-05-11T04:00:00Z | 2017 | 5 | 2024-03-15T18:45:14Z | 2017-09557 | 0 | 0 | 09000064825a36a9 |
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;