documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "EPA-HQ-OAR-2002-0027" and posted_year = 1997 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-OAR-2002-0027-0004 | EPA | Regional Haze Regulations Legacy Docket ID #: A-95-38 EPA-HQ-OAR-2002-0027 | Legacy Index for Docket A-95-38 (IV-D-1972 to VIII-D-635) Part 3 of 4. Please see OAR-2002-0027-0035 for complete Index | Supporting & Related Material | Index | 1997-12-02T05:00:00Z | 1997 | 12 | 2017-05-11T18:16:24Z | 0 | 0 | 09000064800bcc46 | |||
| EPA-HQ-OAR-2002-0027-0024 | EPA | Regional Haze Regulations Legacy Docket ID #: A-95-38 EPA-HQ-OAR-2002-0027 | Letter to Subcommittee Members from William F. Hamilton, Designated Federal Officer, USEPA re: next meeting scheduled for October 9-10, 1997 [A-95-38-II-C-19] | Supporting & Related Material | Letter, Memorandum, Email | 1997-10-22T04:00:00Z | 1997 | 10 | 2017-05-11T16:47:19Z | 0 | 0 | 09000064800bcded | |||
| EPA-HQ-OAR-2002-0027-0023 | EPA | Regional Haze Regulations Legacy Docket ID #: A-95-38 EPA-HQ-OAR-2002-0027 | Letter to Subcommittee Members from William F. Hamilton, Designated Federal Officer, USEPA re: next meeting scheduled for August 13-14, 1997 [A-95-38-II-C-18] | Supporting & Related Material | Letter, Memorandum, Email | 1997-09-03T04:00:00Z | 1997 | 9 | 2017-05-11T16:47:03Z | 0 | 0 | 09000064800bcdd5 | |||
| EPA-HQ-OAR-2002-0027-0022 | EPA | Regional Haze Regulations Legacy Docket ID #: A-95-38 EPA-HQ-OAR-2002-0027 | Letter to Subcommittee Members from William F. Hamilton, Designated Federal Officer, USEPA re: next meeting scheduled for February 20-21, 1996 [A-95-38-II-C-17] | Supporting & Related Material | Letter, Memorandum, Email | 1997-03-04T05:00:00Z | 1997 | 3 | 2017-05-11T16:46:48Z | 0 | 0 | 09000064800bcdc8 |
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;