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 = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, posted_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-0120 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by Chemical Abstracts Service | Notice | 2018-12-28T05:00:00Z | 2018 | 12 | 2024-03-15T18:48:51Z | 2018-28302 | 0 | 0 | 09000064839cbd87 | |||
| EPA-HQ-OPPT-2003-0004-0121 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by Science Applications International Corporation | Notice | 2018-12-28T05:00:00Z | 2018 | 12 | 2024-03-15T18:49:04Z | 2018-28293 | 0 | 0 | 09000064839cbe28 | |||
| EPA-HQ-OPPT-2003-0004-0119 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by Syracuse Research Corporation | Notice | 2018-12-21T05:00:00Z | 2018 | 12 | 2024-03-15T18:48:37Z | 2018-27769 | 0 | 0 | 09000064839be280 | |||
| EPA-HQ-OPPT-2003-0004-0118 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information: General Dynamics Information Technology | Notice | 2018-09-18T04:00:00Z | 2018 | 9 | 2024-03-15T18:48:22Z | 2018-20286 | 0 | 0 | 090000648370f6fb | |||
| EPA-HQ-OPPT-2003-0004-0117 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information: Industrial Economics, Inc. | Notice | 2018-06-28T04:00:00Z | 2018 | 6 | 2024-03-15T18:48:03Z | 2018-13945 | 0 | 0 | 0900006483470c7e | |||
| EPA-HQ-OPPT-2003-0004-0116 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by CGI Federal Inc. | Notice | 2018-04-13T04:00:00Z | 2018 | 4 | 2024-03-15T18:47:47Z | 2018-07644 | 0 | 0 | 090000648313a71e | |||
| EPA-HQ-OPPT-2003-0004-0115 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by Accelera Solutions, Inc. | Notice | 2018-03-15T04:00:00Z | 2018 | 3 | 2024-03-15T18:47:31Z | 2018-05290 | 0 | 0 | 0900006483016b70 | |||
| EPA-HQ-OPPT-2003-0004-0114 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information: Science Applications International Corp. | Notice | 2018-02-27T05:00:00Z | 2018 | 2 | 2024-03-15T18:47:15Z | 2018-03988 | 0 | 0 | 0900006482f67bc3 |
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;