documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-HQ-OPP-2019-0701" and posted_year = 2022 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)
| 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-2019-0701-0027 | EPA | None EPA-HQ-OPP-2019-0701 | Chitosan Potentiation of Warfarin Effect | Supporting & Related Material | Publication - Copyrighted Materials | 2022-11-08T05:00:00Z | 2022 | 11 | 2022-11-09T01:40:47Z | 0 | 0 | 0900006485416434 | |||
| EPA-HQ-OPP-2019-0701-0029 | EPA | None EPA-HQ-OPP-2019-0701 | Addendum to the Science Review in Support of the Addition of Chitosan (Poly-DGlucosamine) to the List of Minimum Risk Pesticides (MRPs) Contained in 40 CFR 152.25(f) | Supporting & Related Material | Risk Assessment | 2022-11-08T05:00:00Z | 2022 | 11 | 2022-11-09T01:40:34Z | 0 | 0 | 090000648541646d | |||
| EPA-HQ-OPP-2019-0701-0028 | EPA | None EPA-HQ-OPP-2019-0701 | Regulatory-Framework-for-Substances-Intended-for-Use-in-Human-Food-or-Animal-Food-on-the-Basis-of-the-Generally-Recognized-as-Safe (GRAS) Provision of the Federal Food, Drug, and Cosmetic Act: Guidance for Industry | Supporting & Related Material | Guidance | 2022-11-08T05:00:00Z | 2022 | 11 | 2022-11-09T01:40:21Z | 0 | 0 | 0900006485416470 | |||
| EPA-HQ-OPP-2019-0701-0026 | EPA | None EPA-HQ-OPP-2019-0701 | Pesticide Tolerance; Exemptions, Petitions, Revocations, etc.: Addition of Chitosan (Including Chitosan Salts) to the List of Active Ingredients Permitted in Exempted Minimum Risk Pesticide Products | Rule | 2022-11-08T05:00:00Z | 2022 | 11 | 2022-11-08T05:00:00Z | 2022-11-08T17:25:30Z | 2022-23682 | 0 | 0 | 0900006485499405 | ||
| EPA-HQ-OPP-2019-0701-0025 | EPA | None EPA-HQ-OPP-2019-0701 | Pesticides: Addition of Chitosan (Including Chitosan Salts) to the List of Active Ingredients Permitted in Exempted Minimum Risk Pesticide Products | Proposed Rule | 2022-10-12T04:00:00Z | 2022 | 10 | 2022-10-12T04:00:00Z | 2022-10-12T13:02:39Z | 2022-22079 | 0 | 0 | 09000064853f6261 | ||
| EPA-HQ-OPP-2019-0701-0022 | EPA | None EPA-HQ-OPP-2019-0701 | Proposal to Add Chitosan to the List of Active Ingredients Permitted in Exempted Minimum Risk Pesticide Products: Pesticides; Data Availability on Chitosan and Chitosan Salts | Proposed Rule | 2022-05-06T04:00:00Z | 2022 | 5 | 2022-05-06T04:00:00Z | 2022-06-07T03:59:59Z | 2022-05-06T15:29:03Z | 2022-09731 | 0 | 0 | 09000064850560a9 | |
| EPA-HQ-OPP-2019-0701-0024 | EPA | None EPA-HQ-OPP-2019-0701 | Aquatic Toxicology Report | Supporting & Related Material | Report | 2022-05-06T04:00:00Z | 2022 | 5 | 2022-05-07T00:38:55Z | 0 | 0 | 0900006485026609 | |||
| EPA-HQ-OPP-2019-0701-0023 | EPA | None EPA-HQ-OPP-2019-0701 | Environment Testing TestAmerica Aquatic Toxicology Report | Supporting & Related Material | Report | 2022-05-06T04:00:00Z | 2022 | 5 | 2022-05-07T00:39:06Z | 0 | 0 | 09000064850262aa |
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;