documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "EPA-HQ-OAR-2004-0082" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_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-2004-0082-0044 | EPA | Reporting and Record-keeping Requirements Under EPA's (EPA) Natural Gas STAR Program EPA-HQ-OAR-2004-0082 | Transmission Implementation Plan | Supporting & Related Material | Form | 2019-03-08T05:00:00Z | 2019 | 3 | 2019-03-08T12:09:40Z | 0 | 0 | 0900006483acb652 | |||
| EPA-HQ-OAR-2004-0082-0038 | EPA | Reporting and Record-keeping Requirements Under EPA's (EPA) Natural Gas STAR Program EPA-HQ-OAR-2004-0082 | Distribution Annual Report | Supporting & Related Material | Data | 2019-03-08T05:00:00Z | 2019 | 3 | 2019-03-08T12:09:36Z | 0 | 0 | 0900006483acb64c | |||
| EPA-HQ-OAR-2004-0082-0043 | EPA | Reporting and Record-keeping Requirements Under EPA's (EPA) Natural Gas STAR Program EPA-HQ-OAR-2004-0082 | Production Implementation Plan | Supporting & Related Material | Form | 2019-03-08T05:00:00Z | 2019 | 3 | 2019-03-08T12:09:39Z | 0 | 0 | 0900006483acb651 | |||
| EPA-HQ-OAR-2004-0082-0040 | EPA | Reporting and Record-keeping Requirements Under EPA's (EPA) Natural Gas STAR Program EPA-HQ-OAR-2004-0082 | Production Annual Report | Supporting & Related Material | Data | 2019-03-08T05:00:00Z | 2019 | 3 | 2019-03-08T12:09:37Z | 0 | 0 | 0900006483acb64e | |||
| EPA-HQ-OAR-2004-0082-0036 | EPA | Reporting and Record-keeping Requirements Under EPA's (EPA) Natural Gas STAR Program EPA-HQ-OAR-2004-0082 | Partnership Agreement (EPA Form No. 5900-105) | Supporting & Related Material | Agreement, Contract | 2019-03-08T05:00:00Z | 2019 | 3 | 2019-03-08T13:23:02Z | 0 | 0 | 0900006483ac99cc | |||
| EPA-HQ-OAR-2004-0082-0037 | EPA | Reporting and Record-keeping Requirements Under EPA's (EPA) Natural Gas STAR Program EPA-HQ-OAR-2004-0082 | Distribution Implementation Plan | Supporting & Related Material | Form | 2019-03-08T05:00:00Z | 2019 | 3 | 2019-03-08T12:09:35Z | 0 | 0 | 0900006483acb64b | |||
| EPA-HQ-OAR-2004-0082-0039 | EPA | Reporting and Record-keeping Requirements Under EPA's (EPA) Natural Gas STAR Program EPA-HQ-OAR-2004-0082 | Processing Annual Report | Supporting & Related Material | Data | 2019-03-08T05:00:00Z | 2019 | 3 | 2019-03-08T12:09:37Z | 0 | 0 | 0900006483acb64d | |||
| EPA-HQ-OAR-2004-0082-0041 | EPA | Reporting and Record-keeping Requirements Under EPA's (EPA) Natural Gas STAR Program EPA-HQ-OAR-2004-0082 | Transmission Annual Report | Supporting & Related Material | Data | 2019-03-08T05:00:00Z | 2019 | 3 | 2019-03-08T12:09:38Z | 0 | 0 | 0900006483acb64f | |||
| EPA-HQ-OAR-2004-0082-0042 | EPA | Reporting and Record-keeping Requirements Under EPA's (EPA) Natural Gas STAR Program EPA-HQ-OAR-2004-0082 | Processing Implementation Plan | Supporting & Related Material | Form | 2019-03-08T05:00:00Z | 2019 | 3 | 2019-03-08T12:09:38Z | 0 | 0 | 0900006483acb650 | |||
| EPA-HQ-OAR-2004-0082-0035 | EPA | Reporting and Record-keeping Requirements Under EPA's (EPA) Natural Gas STAR Program EPA-HQ-OAR-2004-0082 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Natural Gas STAR Program | Notice | Information Collection Request (ICR) | 2019-02-22T05:00:00Z | 2019 | 2 | 2019-02-22T05:00:00Z | 2019-03-26T03:59:59Z | 2019-03-26T01:03:53Z | 2019-03060 | 0 | 0 | 0900006483a98830 |
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;