documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-HQ-ORD-2005-0023" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, last_modified, 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-ORD-2005-0023-0006 | EPA | None EPA-HQ-ORD-2005-0023 | Draft Agenda for December 6, 2005 Conference Call of USEPA/ORD/Board of Scientific Counselors Global Change Subcommittee | Supporting & Related Material | Meeting or Teleconference Materials | 2005-11-15T05:00:00Z | 2005 | 11 | 2006-09-02T15:48:37Z | 0 | 0 | 09000064800c9453 | |||
| EPA-HQ-ORD-2005-0023-0005 | EPA | None EPA-HQ-ORD-2005-0023 | Board of Scientific Counselors, Global Change Subcommittee Meeting - Winter 2005 | Notice | Federal Register Document | 2005-11-10T05:00:00Z | 2005 | 11 | 2008-01-08T21:16:16Z | 68446 | 0 | 0 | 09000064800c944d | ||
| EPA-HQ-ORD-2005-0023-0004 | EPA | None EPA-HQ-ORD-2005-0023 | Agenda for September 26-28, 2005 meeting of the BOSC Global Change Subcommittee: Review of the Global Change Research Program | Supporting & Related Material | Meeting or Teleconference Materials | 2005-09-20T04:00:00Z | 2005 | 9 | 2006-09-02T15:48:36Z | 0 | 0 | 09000064800c9445 | |||
| EPA-HQ-ORD-2005-0023-0003 | EPA | None EPA-HQ-ORD-2005-0023 | Agenda for September 13, 2005 conference call of the BOSC Subcommitte Review of the Global Change Research Program | Supporting & Related Material | Meeting or Teleconference Materials | 2005-09-07T04:00:00Z | 2005 | 9 | 2006-09-02T15:48:36Z | 0 | 0 | 09000064800c943c | |||
| EPA-HQ-ORD-2005-0023-0002 | EPA | None EPA-HQ-ORD-2005-0023 | Draft Agenda for August 4, 2005 conference call of USEPA/ORD/BOSC Global Change Subcommittee | Supporting & Related Material | Meeting or Teleconference Materials | 2005-07-22T04:00:00Z | 2005 | 7 | 2006-09-02T15:48:36Z | 0 | 0 | 09000064800c9434 | |||
| EPA-HQ-ORD-2005-0023-0001 | EPA | None EPA-HQ-ORD-2005-0023 | Board of Scientific Counselors, Global Change Subcommitteee Meetings | Notice | Federal Register Document | 2005-07-13T04:00:00Z | 2005 | 7 | 2008-01-08T21:11:57Z | 40331 | 0 | 0 | 09000064800c942d |
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;