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 = 2023 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-0142 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by CGI Federal Inc. | Notice | 2023-12-22T05:00:00Z | 2023 | 12 | 2023-12-22T05:00:00Z | 2024-03-15T18:59:22Z | 2023-28172 | 0 | 0 | 0900006486351112 | ||
| EPA-HQ-OPPT-2003-0004-0141 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by Chemical Abstracts Service (CAS) | Notice | 2023-12-05T05:00:00Z | 2023 | 12 | 2024-03-15T18:59:07Z | 2023-26575 | 0 | 0 | 09000064862f429c | |||
| EPA-HQ-OPPT-2003-0004-0140 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by Abt Associates and Subcontractors | Notice | 2023-10-16T04:00:00Z | 2023 | 10 | 2024-03-15T18:58:52Z | 2023-22781 | 0 | 0 | 09000064860eb322 | |||
| EPA-HQ-OPPT-2003-0004-0139 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by Battelle Memorial Institute and Its Subcontractors | Notice | 2023-10-16T04:00:00Z | 2023 | 10 | 2024-03-15T18:58:27Z | 2023-22782 | 0 | 0 | 09000064860ea9fa | |||
| EPA-HQ-OPPT-2003-0004-0138 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information: Eastern Research Group (ERG) and its Subcontractors | Notice | 2023-09-22T04:00:00Z | 2023 | 9 | 2024-03-15T18:58:15Z | 2023-20575 | 0 | 0 | 0900006485fe5725 | |||
| EPA-HQ-OPPT-2003-0004-0137 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information: Eastern Research Group | Notice | 2023-09-15T04:00:00Z | 2023 | 9 | 2024-03-15T18:58:04Z | 2023-20028 | 0 | 0 | 0900006485fadb2a | |||
| EPA-HQ-OPPT-2003-0004-0136 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information: Agile Decision Sciences, LLC | Notice | 2023-06-09T04:00:00Z | 2023 | 6 | 2024-03-15T18:57:53Z | 2023-12319 | 0 | 0 | 0900006485aeb2a6 | |||
| EPA-HQ-OPPT-2003-0004-0135 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by Agile Decision Sciences, LLC and Subcontractor Abaco-Blackfish JV, LLC | Notice | 2023-06-08T04:00:00Z | 2023 | 6 | 2024-03-15T18:57:40Z | 2023-12259 | 0 | 0 | 0900006485adeb51 | |||
| EPA-HQ-OPPT-2003-0004-0134 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information; Industrial Economics, Inc. | Notice | 2023-05-19T04:00:00Z | 2023 | 5 | 2024-03-15T18:57:26Z | 2023-10672 | 0 | 0 | 0900006485a22a33 | |||
| EPA-HQ-OPPT-2003-0004-0133 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by Abt Associates | Notice | 2023-03-30T04:00:00Z | 2023 | 3 | 2023-03-30T04:00:00Z | 2024-03-15T18:57:13Z | 2023-06586 | 0 | 0 | 090000648589827c |
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;