documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-HQ-OPP-2006-0201" and posted_year = 2007 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, posted_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-2006-0201-0466 | EPA | None EPA-HQ-OPP-2006-0201 | Response to Comments on the Reregistration Eligibility Decision for MSMA, DSMA, CAMA, and Cacodylic Acid (EPA 738-R-06-021) | Supporting & Related Material | 2007-12-07T05:00:00Z | 2007 | 12 | 2007-12-07T17:13:40Z | 0 | 0 | 0900006480371773 | ||||
| EPA-HQ-OPP-2006-0201-0461 | EPA | None EPA-HQ-OPP-2006-0201 | NCC Letter to Jim Gulliford Re: MSMA 1/23/2007 | Supporting & Related Material | 2007-03-12T04:00:00Z | 2007 | 3 | 2007-03-12T20:00:07Z | 0 | 0 | 09000064801f767a | ||||
| EPA-HQ-OPP-2006-0201-0462 | EPA | None EPA-HQ-OPP-2006-0201 | MAATF presentation to EFED on Jan 31 | Supporting & Related Material | 2007-03-12T04:00:00Z | 2007 | 3 | 2007-03-12T16:35:23Z | 0 | 0 | 0900006480210003 | ||||
| EPA-HQ-OPP-2006-0201-0460 | EPA | None EPA-HQ-OPP-2006-0201 | MAA Research Task Force's presentation at the meeting with EFED on January 31, 2007 | Supporting & Related Material | 2007-03-02T05:00:00Z | 2007 | 3 | 2007-03-02T17:01:26Z | 0 | 0 | 090000648020c508 | ||||
| EPA-HQ-OPP-2006-0201-0459 | EPA | None EPA-HQ-OPP-2006-0201 | Meeting Summary EPA/MAATF Organic Arsenical Herbicides RED Meeting | Supporting & Related Material | Meeting/Teleconference Materials | 2007-03-02T05:00:00Z | 2007 | 3 | 2007-03-02T17:01:14Z | 0 | 0 | 090000648020c504 | |||
| EPA-HQ-OPP-2006-0201-0431 | EPA | None EPA-HQ-OPP-2006-0201 | MAA Task Force Presentation to HED | Supporting & Related Material | Meeting/Teleconference Materials | 2007-01-04T05:00:00Z | 2007 | 1 | 2007-01-04T21:37:22Z | 0 | 0 | 09000064801f220b |
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;