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-2020-0533" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 5
agency_id 1
- EPA 8
| 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-0533-0010 | EPA | None EPA-HQ-OPP-2020-0533 | Pesticide Tolerance; Exemptions, Petitions, Revocations, etc.: Glufosinate-P | Rule | 2024-10-29T04:00:00Z | 2024 | 10 | 2024-10-29T04:00:00Z | 2024-12-31T04:59:59Z | 2024-12-24T02:00:56Z | 2024-24831 | 0 | 0 | 09000064867eafb4 | |
| EPA-HQ-OPP-2020-0533-0009 | EPA | None EPA-HQ-OPP-2020-0533 | Endangered Species Act Section 7(d) Consistency Determination with Respect to the Application for the Registration of Products Containing the New Active Ingredient Glufosinate-P. | Supporting & Related Material | Application | 2024-10-18T04:00:00Z | 2024 | 10 | 2024-10-19T00:38:46Z | 0 | 0 | 09000064867d42e9 | |||
| EPA-HQ-OPP-2020-0533-0008 | EPA | None EPA-HQ-OPP-2020-0533 | Memorandum to Open Docket for Public Comment | Other | Memorandum to Open a Docket | 2024-05-09T04:00:00Z | 2024 | 5 | 2024-05-09T04:00:00Z | 2024-05-10T04:06:02Z | 0 | 0 | 0900006486554464 | ||
| EPA-HQ-OPP-2020-0533-0006 | EPA | None EPA-HQ-OPP-2020-0533 | Draft-MCCLS Label - L-Glufosinate Free Acid Technical | Supporting & Related Material | 2024-05-01T04:00:00Z | 2024 | 5 | 2024-05-02T00:41:35Z | 0 | 0 | 090000648652d09b | ||||
| EPA-HQ-OPP-2020-0533-0007 | EPA | None EPA-HQ-OPP-2020-0533 | Draft-MCCLS Label - L-Gluconate Free Acid Liquid Formulation | Supporting & Related Material | 2024-05-01T04:00:00Z | 2024 | 5 | 2024-05-02T00:41:47Z | 0 | 0 | 090000648652d09c | ||||
| EPA-HQ-OPP-2020-0533-0004 | EPA | None EPA-HQ-OPP-2020-0533 | Meiji Seika Pharma Co., Ltd. Notice of Filing Pesticide Petition establish an exemption from the requirement of a tolerance for L-glufosinate free acid, (2S)-2-amino-4-[hydroxy(methyl)phosphinoyl]butyric acid, including its metabolites and degradates, 2-(acetylamino)-4-(hydroxymethyl phosphinyl) butanoic acid (NAG), and 3-(hydroxymethylphosphinyl) propanoic acid (MPP) | Supporting & Related Material | Petition | 2023-11-21T05:00:00Z | 2023 | 11 | 2023-11-22T02:21:29Z | 0 | 0 | 0900006484938f03 | |||
| EPA-HQ-OPP-2020-0533-0003 | EPA | None EPA-HQ-OPP-2020-0533 | Pesticide Tolerance; Exemptions, Petitions, Revocations, etc.: Residues of Pesticide Chemicals in or on Various Commodities (October 2023) EPA–HQ–OPP–2023–0069 | Proposed Rule | 2023-11-21T05:00:00Z | 2023 | 11 | 2023-11-21T05:00:00Z | 2023-12-22T04:59:59Z | 2023-12-19T02:03:32Z | 2023-25751 | 0 | 0 | 09000064862a11da | |
| EPA-HQ-OPP-2020-0533-0001 | EPA | None EPA-HQ-OPP-2020-0533 | Pesticide Product Registration; Receipt of Applications for New Active Ingredients (October 2020) | Notice | 2021-03-01T05:00:00Z | 2021 | 3 | 2021-03-01T05:00:00Z | 2021-03-11T04:59:59Z | 2021-03-11T02:00:44Z | 0 | 0 | 0900006484a56f30 |
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;