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-0058" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- EPA 6
| 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-0058-0033 | EPA | None EPA-HQ-OPPT-2003-0058 | Plasticity of enzyme active sites | Supporting & Related Material | Publication | 2005-09-18T04:00:00Z | 2005 | 9 | 2006-10-23T16:28:14Z | 0 | 0 | 09000064800b0034 | |||
| EPA-HQ-OPPT-2003-0058-0032 | EPA | None EPA-HQ-OPPT-2003-0058 | Follow-up notes from meeting between USEPA and Enzyme Technical Association held on January 2005 | Supporting & Related Material | Meeting or Teleconference Materials | 2005-08-18T04:00:00Z | 2005 | 8 | 2006-10-23T16:28:14Z | 0 | 0 | 09000064800b0015 | |||
| EPA-HQ-OPPT-2003-0058-0007 | EPA | None EPA-HQ-OPPT-2003-0058 | Summary of Policymakers from Biotechnology Industry Organization (BIO) | Supporting & Related Material | Other | 2005-01-12T05:00:00Z | 2005 | 1 | 2006-10-23T16:28:13Z | 0 | 0 | 09000064800af9ee | |||
| EPA-HQ-OPPT-2003-0058-0006 | EPA | None EPA-HQ-OPPT-2003-0058 | TSCA Inventory Nomenclature for Enzymes and Proteins; Extension of Comment Period | Proposed Rule | Federal Register Document | 2004-12-17T05:00:00Z | 2004 | 12 | 2004-12-17T05:00:00Z | 2005-01-31T04:59:59Z | 2008-01-08T21:22:51Z | 75496 | 0 | 0 | 09000064800af9d0 |
| EPA-HQ-OPPT-2003-0058-0001 | EPA | None EPA-HQ-OPPT-2003-0058 | TSCA Inventory Nomenclature for Enzymes and Proteins | Proposed Rule | Federal Register Document | 2004-11-15T05:00:00Z | 2004 | 11 | 2004-11-15T05:00:00Z | 2004-12-16T04:59:59Z | 2008-01-08T21:19:02Z | 65565 | 0 | 0 | 09000064800af954 |
| EPA-HQ-OPPT-2003-0058-0002 | EPA | None EPA-HQ-OPPT-2003-0058 | OMB Review Under Executive Order 12866: Advance Notice of Proposed Rulemaking; TSCA Inventory Nomenclature for Enzymes and Proteins | Supporting & Related Material | Interagency Review | 2004-08-20T04:00:00Z | 2004 | 8 | 2006-10-23T16:28:12Z | 0 | 0 | 09000064800af966 |
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;