documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "EPA-HQ-OPP-2020-0529" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- EPA 10
| 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-OPP-2020-0529-0026 | EPA | None EPA-HQ-OPP-2020-0529 | Agency Response to Public Comments on Draft Guidance Document and Method for Products Adding Residual Efficacy Claims | Supporting & Related Material | Comment Response | 2022-10-07T04:00:00Z | 2022 | 10 | 2022-10-08T00:55:28Z | 0 | 0 | 090000648537aaf6 | |||
| EPA-HQ-OPP-2020-0529-0027 | EPA | None EPA-HQ-OPP-2020-0529 | Summary Report: Microbiology Laboratory Branch Study Protocol# R-2021-09; Evaluation of Potential Modifications to the EPA Interim Method for Evaluating the Efficacy of Antimicrobial Surface Coatings | Supporting & Related Material | Report | 2022-10-07T04:00:00Z | 2022 | 10 | 2022-10-08T00:55:11Z | 0 | 0 | 090000648537aaf9 | |||
| EPA-HQ-OPP-2020-0529-0028 | EPA | None EPA-HQ-OPP-2020-0529 | Method for the Evaluation of Antimicrobial Activity of Hard, Nonporous Copper-Containing Surface Products MB-41-00 Copper Surface Method | Supporting & Related Material | Evaluation | 2022-10-07T04:00:00Z | 2022 | 10 | 2022-10-08T00:55:46Z | 0 | 0 | 090000648537aaf7 | |||
| EPA-HQ-OPP-2020-0529-0025 | EPA | None EPA-HQ-OPP-2020-0529 | Guidance for Products Adding Residual Efficacy Claims | Supporting & Related Material | Guidance | 2022-10-07T04:00:00Z | 2022 | 10 | 2022-10-08T00:55:37Z | 0 | 0 | 090000648537a979 | |||
| EPA-HQ-OPP-2020-0529-0029 | EPA | None EPA-HQ-OPP-2020-0529 | Test Method for Evaluating the Efficacy of Antimicrobial Surface Coatings MB-40-00 Antimicrobial Surface Coatings Method | Supporting & Related Material | Evaluation | 2022-10-07T04:00:00Z | 2022 | 10 | 2022-10-08T00:55:20Z | 0 | 0 | 090000648537aaf8 | |||
| EPA-HQ-OPP-2020-0529-0021 | EPA | None EPA-HQ-OPP-2020-0529 | Material for Posting in the Public Docket for the EPA Interim Method for Antimicrobial Surface Coatings | Supporting & Related Material | Study | 2021-01-28T05:00:00Z | 2021 | 1 | 2021-01-29T01:39:41Z | 0 | 0 | 09000064849f57af | |||
| EPA-HQ-OPP-2020-0529-0002 | EPA | None EPA-HQ-OPP-2020-0529 | Interim Guidance - Expedited Review - Products Adding Residual Claims | Supporting & Related Material | Guidance | 2020-10-26T04:00:00Z | 2020 | 10 | 2020-10-27T00:54:04Z | 0 | 0 | 09000064849111b1 | |||
| EPA-HQ-OPP-2020-0529-0003 | EPA | None EPA-HQ-OPP-2020-0529 | Interim Method for the Evaluation of Bactericidal Activity of Hard, Non-Porous Copper-Containing Surface Products | Supporting & Related Material | Evaluation | 2020-10-26T04:00:00Z | 2020 | 10 | 2020-10-27T00:54:21Z | 0 | 0 | 09000064849111b2 | |||
| EPA-HQ-OPP-2020-0529-0001 | EPA | None EPA-HQ-OPP-2020-0529 | Interim Guidance - Expedited Review for Products Adding Residual Efficacy Claims | Other | Memorandum to Open a Docket | 2020-10-26T04:00:00Z | 2020 | 10 | 2020-10-26T04:00:00Z | 2021-01-05T04:59:59Z | 2022-02-16T02:00:43Z | 0 | 0 | 09000064849312cd | |
| EPA-HQ-OPP-2020-0529-0004 | EPA | None EPA-HQ-OPP-2020-0529 | Interim Method for Evaluating the Efficacy of Antimicrobial Surface Coatings | Supporting & Related Material | 2020-10-26T04:00:00Z | 2020 | 10 | 2020-10-27T00:54:37Z | 0 | 0 | 0900006484910fe6 |
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;