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 = 2006 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, last_modified, 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-0028 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by ASRC Management Services, Incorporated | Notice | Federal Register Document | 2006-11-02T13:16:14Z | 2006 | 11 | 2006-11-02T13:16:14Z | 2024-03-15T18:15:40Z | E6-18490 | 0 | 0 | 09000064801dca5e | |
| EPA-HQ-OPPT-2003-0004-0027 | EPA | None EPA-HQ-OPPT-2003-0004 | Confidential business information and data transfer | Notice | Federal Register Document | 2006-08-18T13:17:55Z | 2006 | 8 | 2006-08-18T13:17:55Z | 2008-01-08T21:11:38Z | 06-07004 | 0 | 0 | 09000064801b9e91 | |
| EPA-HQ-OPPT-2003-0004-0026 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by Computer Sciences Corporations Identified Subcontractors | Notice | Federal Register Document | 2006-08-15T12:03:53Z | 2006 | 8 | 2006-08-15T12:03:53Z | 2008-01-08T21:18:04Z | E6-13348 | 0 | 0 | 09000064801b7253 | |
| EPA-HQ-OPPT-2003-0004-0025 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by Eagle Technologies, Incorporated | Notice | Federal Register Document | 2006-06-09T12:43:46Z | 2006 | 6 | 2006-06-09T12:43:46Z | 2008-01-08T21:20:11Z | E6-09008 | 0 | 0 | 090000648018495c | |
| EPA-HQ-OPPT-2003-0004-0024 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by the Food and Drug Administration | Notice | Federal Register Document | 2006-05-24T12:14:29Z | 2006 | 5 | 2006-05-24T12:14:29Z | 2008-01-08T21:20:11Z | E6-07930 | 0 | 0 | 09000064801795cc | |
| EPA-HQ-OPPT-2003-0004-0023 | EPA | None EPA-HQ-OPPT-2003-0004 | Access to Confidential Business Information by Chemical Abstract Services; Correction | Notice | Federal Register Document | 2006-04-05T12:07:28Z | 2006 | 4 | 2006-04-05T12:07:28Z | 2008-01-08T21:16:01Z | E6-04931 | 0 | 0 | 0900006480156367 |
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;