documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "EPA-HQ-OPP-2002-0218" 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 5
| 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-2002-0218-0003 | EPA | Tolerance Petitions for Pesticide on Food /Feed Crops and New Inert Ingredients; Renewal of Pesticide Information Collection Activities and Request for Comment EPA-HQ-OPP-2002-0218 | Agency Information Collection Activities; Submission to OMB; Comment Request; EPA ICR No. 0597.08/OMB Control No. 2070-0024; Tolerance Petitions for Pesticides on Food/Feed Crops and New Inert Ingredients | Notice | Federal Register Document | 2003-04-30T04:00:00Z | 2003 | 4 | 2003-04-30T04:00:00Z | 2003-05-31T03:59:59Z | 2008-01-08T21:08:10Z | 23126 | 0 | 0 | 09000064800b4c0d |
| EPA-HQ-OPP-2002-0218-0005 | EPA | Tolerance Petitions for Pesticide on Food /Feed Crops and New Inert Ingredients; Renewal of Pesticide Information Collection Activities and Request for Comment EPA-HQ-OPP-2002-0218 | Supporting Statement for an Information Collection Request (ICR) - Tolerance Petitions for Pesticides on Food/Feed Crops and New Inert Ingredients (Final Version Submitted to OMB on 4/23/03) | Supporting & Related Material | Other | 2003-04-25T04:00:00Z | 2003 | 4 | 2006-09-02T13:14:44Z | 0 | 0 | 09000064800b4c38 | |||
| EPA-HQ-OPP-2002-0218-0004 | EPA | Tolerance Petitions for Pesticide on Food /Feed Crops and New Inert Ingredients; Renewal of Pesticide Information Collection Activities and Request for Comment EPA-HQ-OPP-2002-0218 | Paperwork Reduction ACT Submission | Supporting & Related Material | Other | 2003-04-24T04:00:00Z | 2003 | 4 | 2006-09-02T13:14:44Z | 0 | 0 | 09000064800b4c1e | |||
| EPA-HQ-OPP-2002-0218-0001 | EPA | Tolerance Petitions for Pesticide on Food /Feed Crops and New Inert Ingredients; Renewal of Pesticide Information Collection Activities and Request for Comment EPA-HQ-OPP-2002-0218 | Tolerance Petitions for Pesticide on Food /Feed Crops and New Inert Ingredients; Renewal of Pesticide Information Collection Activities and Request for Comment | Notice | Federal Register Document | 2002-10-31T05:00:00Z | 2002 | 10 | 2002-10-31T05:00:00Z | 2002-12-31T04:59:59Z | 2008-01-08T21:10:52Z | 66392 | 0 | 0 | 09000064800b4bc4 |
| EPA-HQ-OPP-2002-0218-0002 | EPA | Tolerance Petitions for Pesticide on Food /Feed Crops and New Inert Ingredients; Renewal of Pesticide Information Collection Activities and Request for Comment EPA-HQ-OPP-2002-0218 | Supporting Statement for an Information Request (ICR) - Tolerance Petitions for Pesticides on Food/Feed Crops and New Inert Ingredients | Supporting & Related Material | Other | 2002-10-21T04:00:00Z | 2002 | 10 | 2006-09-02T13:14:44Z | 0 | 0 | 09000064800b4bf0 |
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;