home / openregs

documents

Regulatory documents from Regulations.gov including rules, proposed rules, notices, and supporting materials.

Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API

13 rows where docket_id = "EPA-HQ-OPP-2008-0855" sorted by posted_date descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: title, posted_date, posted_month, last_modified, withdrawn, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)

posted_year 3

  • 2008 6
  • 2009 6
  • 2022 1

document_type 2

  • Supporting & Related Material 8
  • Notice 5

agency_id 1

  • EPA 13
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-2008-0855-0016 EPA None EPA-HQ-OPP-2008-0855 Pesticide Registration Review: Interim Decision; Correction Notice   2022-02-03T05:00:00Z 2022 2 2022-02-03T05:00:00Z   2022-02-03T16:50:02Z 2022-02208 0 0 0900006484f50f5b
EPA-HQ-OPP-2008-0855-0012 EPA None EPA-HQ-OPP-2008-0855 Citric Acid Final Registration Review Decision Registration Review Case 4024 Supporting & Related Material   2009-12-15T05:00:00Z 2009 12     2009-12-15T19:36:00Z   0 0 0900006480a628fd
EPA-HQ-OPP-2008-0855-0011 EPA None EPA-HQ-OPP-2008-0855 Citric Acid Registration Review Final Decision; Notice of Availability Notice Federal Register Document 2009-12-15T05:00:00Z 2009 12 2009-12-15T05:00:00Z   2009-12-15T19:31:54Z E9-29593 0 0 0900006480a6afb5
EPA-HQ-OPP-2008-0855-0009 EPA None EPA-HQ-OPP-2008-0855 Revised Summary of Product Chemistry, Environmental Fate, and Ecotoxicity Data for the Citric Acid Registration Review Decision Document Supporting & Related Material   2009-06-17T04:00:00Z 2009 6     2009-06-17T16:03:20Z   0 0 09000064809b5c7f
EPA-HQ-OPP-2008-0855-0008 EPA None EPA-HQ-OPP-2008-0855 Citric Acid Final Work Plan and Proposed Registration Review Final Decision Supporting & Related Material   2009-06-17T04:00:00Z 2009 6     2009-06-17T16:03:19Z   0 0 09000064809b5c7d
EPA-HQ-OPP-2008-0855-0010 EPA None EPA-HQ-OPP-2008-0855 Revised Summary of Human Health Effects Data for the Citric Acid Registration Review Decision Document Supporting & Related Material   2009-06-17T04:00:00Z 2009 6     2009-06-17T16:03:22Z   0 0 09000064809b5c80
EPA-HQ-OPP-2008-0855-0007 EPA None EPA-HQ-OPP-2008-0855 Pesticide Registrations: Citric Acid; Antimicrobial Registration Review Final Work Plan and Proposed Registration Review Decision; Availability Notice Federal Register Document 2009-06-17T04:00:00Z 2009 6 2009-06-17T04:00:00Z 2009-08-18T03:59:59Z 2009-06-17T16:10:22Z E9-14249 0 0 09000064809d14a1
EPA-HQ-OPP-2008-0855-0006 EPA None EPA-HQ-OPP-2008-0855 Registration Review: Citric Acid, and Salts Docket Opened for Review and Comment Notice Federal Register Document 2008-12-22T05:00:00Z 2008 12 2008-12-22T05:00:00Z   2008-12-22T20:23:39Z Z8-29974 0 0 09000064807e685a
EPA-HQ-OPP-2008-0855-0005 EPA None EPA-HQ-OPP-2008-0855 Citric Acid, and Salts Summary Document:Registration Review Supporting & Related Material   2008-12-22T05:00:00Z 2008 12     2008-12-22T15:05:56Z   0 0 09000064807e6b04
EPA-HQ-OPP-2008-0855-0003 EPA None EPA-HQ-OPP-2008-0855 Summary of Product Chemistry, Environmental Fate, and Ecotoxicity Data for the Citric Acid Registration Review Decision Document Supporting & Related Material   2008-12-18T05:00:00Z 2008 12     2008-12-20T16:36:55Z   0 0 09000064807ddef0
EPA-HQ-OPP-2008-0855-0004 EPA None EPA-HQ-OPP-2008-0855 Summary of Human Health Effects Data for the Citric Acid Registration Review Decision Document Supporting & Related Material   2008-12-18T05:00:00Z 2008 12     2008-12-20T16:36:55Z   0 0 09000064807ddf14
EPA-HQ-OPP-2008-0855-0002 EPA None EPA-HQ-OPP-2008-0855 Citric Acid, and Salts Summary Document:Registration Review Supporting & Related Material   2008-12-18T00:00:00Z 2008 12     2008-12-22T15:09:19Z   0 1 09000064807c937e
EPA-HQ-OPP-2008-0855-0001 EPA None EPA-HQ-OPP-2008-0855 Registration Review; Citric Acid, and Salts Docket Opened for Review and Comment Notice Federal Register Document 2008-12-17T05:00:00Z 2008 12 2008-12-17T05:00:00Z 2009-03-18T03:59:59Z 2008-12-20T16:36:54Z E8-29974 0 0 09000064807defbd

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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;
Powered by Datasette · Queries took 727.668ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API