documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-HQ-ORD-2006-0979" 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 9
| 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-ORD-2006-0979-0010 | EPA | None EPA-HQ-ORD-2006-0979 | Agenda for April 25, 2007 meeting of Board of Scientific Counselors (BOSC) Safe Pesticides/Safe Products (SP2) Subcommittee | Supporting & Related Material | Meeting/Teleconference Materials | 2007-04-27T04:00:00Z | 2007 | 4 | 2010-07-15T19:23:08Z | 0 | 0 | 090000648022dbad | |||
| EPA-HQ-ORD-2006-0979-0009 | EPA | None EPA-HQ-ORD-2006-0979 | Agenda for April 3, 2007 meeting of Board of Scientific Counselors, Safe Pesticides/Safe Products (SP2) Subcommittee | Supporting & Related Material | Meeting/Teleconference Materials | 2007-04-11T04:00:00Z | 2007 | 4 | 2010-07-15T19:23:05Z | 0 | 0 | 090000648021f960 | |||
| EPA-HQ-ORD-2006-0979-0007 | EPA | None EPA-HQ-ORD-2006-0979 | Board of Scientific Counselors, Safe Pesticides/Safe Products (SP2) Research Program Subcommittee Meeting--April 2007 | Notice | Federal Register Document | 2007-04-03T04:00:00Z | 2007 | 4 | 2007-04-03T04:00:00Z | 2007-04-26T03:59:59Z | 2010-07-15T19:23:05Z | E7-06147 | 0 | 0 | 090000648021f836 |
| EPA-HQ-ORD-2006-0979-0006 | EPA | None EPA-HQ-ORD-2006-0979 | Agenda for March 22, 2007 meeting of Safe Pesticides/Safe Products (SP2) Subcommittee | Supporting & Related Material | Meeting/Teleconference Materials | 2007-03-21T04:00:00Z | 2007 | 3 | 2010-07-15T19:23:01Z | 0 | 0 | 0900006480216347 | |||
| EPA-HQ-ORD-2006-0979-0005 | EPA | None EPA-HQ-ORD-2006-0979 | Board of Scientific Counselors, Safe Pesticides/Safe Products (SP2) Research Program Subcommittee Meetings--March/April 2007, February 27, 2007 | Notice | Federal Register Document | 2007-02-27T05:00:00Z | 2007 | 2 | 2007-02-27T05:00:00Z | 2007-04-04T03:59:59Z | 2010-07-15T19:22:56Z | E7-03319 | 0 | 0 | 090000648020bf63 |
| EPA-HQ-ORD-2006-0979-0004 | EPA | None EPA-HQ-ORD-2006-0979 | Agenda for February 7-9, 2007 meeting of USEPA/Board of Scientific Counselors | Supporting & Related Material | Meeting/Teleconference Materials | 2007-02-06T05:00:00Z | 2007 | 2 | 2010-07-15T19:22:54Z | 0 | 0 | 09000064801fa11b | |||
| EPA-HQ-ORD-2006-0979-0003 | EPA | None EPA-HQ-ORD-2006-0979 | Agenda for January 29, 2007 Conference Call of the USEPA/Board Of Scientific Counselors | Supporting & Related Material | Meeting/Teleconference Materials | 2007-01-30T05:00:00Z | 2007 | 1 | 2010-07-15T19:22:53Z | 0 | 0 | 09000064801f833c | |||
| EPA-HQ-ORD-2006-0979-0002 | EPA | None EPA-HQ-ORD-2006-0979 | Agenda for January 17, 2007 Conference Call of the USEPA/Board of Scientific Counselors | Supporting & Related Material | Meeting/Teleconference Materials | 2007-01-12T05:00:00Z | 2007 | 1 | 2010-07-15T19:22:51Z | 0 | 0 | 09000064801f398f | |||
| EPA-HQ-ORD-2006-0979-0001 | EPA | None EPA-HQ-ORD-2006-0979 | Board of Scientific Counselors, Safe Pesticides/Safe Products (SP2) Subcommittee Meetings--Winter 2007 | Notice | Federal Register Document | 2006-12-08T05:00:00Z | 2006 | 12 | 2006-12-08T05:00:00Z | 2007-02-17T04:59:59Z | 2010-07-15T19:22:45Z | E6-20893 | 0 | 0 | 09000064801e9d3e |
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;