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 = 2024 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, posted_date (date), comment_start_date (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-0148 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by General Dynamics Information Technology (GDIT) and its Subcontractors | Notice | 2024-12-26T05:00:00Z | 2024 | 12 | 2024-12-26T14:33:40Z | 2024-30731 | 0 | 0 | 090000648688c0b2 | |||
| EPA-HQ-OPPT-2003-0004-0147 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information: SRC, Inc. | Notice | 2024-12-13T05:00:00Z | 2024 | 12 | 2024-12-13T05:00:00Z | 2024-12-13T14:48:30Z | 2024-29385 | 0 | 0 | 090000648686c30d | ||
| EPA-HQ-OPPT-2003-0004-0146 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information: Eastern Research Group | Notice | 2024-06-26T04:00:00Z | 2024 | 6 | 2024-06-26T12:53:57Z | 2024-13976 | 0 | 0 | 09000064865c9d19 | |||
| EPA-HQ-OPPT-2003-0004-0145 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by General Dynamics Information Technology (GDIT) | Notice | 2024-05-06T04:00:00Z | 2024 | 5 | 2024-05-06T12:36:59Z | 2024-09738 | 0 | 0 | 0900006486542687 | |||
| EPA-HQ-OPPT-2003-0004-0144 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information: ICF Inc. and Its Subcontractors | Notice | 2024-03-15T04:00:00Z | 2024 | 3 | 2024-03-15T19:00:18Z | 2024-05488 | 0 | 0 | 090000648647cd72 | |||
| EPA-HQ-OPPT-2003-0004-0143 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by Avanti Corp. | Notice | 2024-02-26T05:00:00Z | 2024 | 2 | 2024-02-26T05:00:00Z | 2024-03-15T19:00:04Z | 2024-03812 | 0 | 0 | 090000648642e3b1 |
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;