documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "FERC", document_type = "Proposed Rule" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FERC-2019-1181-0001 | FERC | Qualifying Facility Rates and Requirements | Proposed Rule | 2019-10-04T04:00:00Z | 2019 | 10 | 2019-10-04T04:00:00Z | 2019-12-04T04:59:59Z | 2019-10-04T11:42:23Z | 2019-20803 | 0 | 0 | 090000648401fcb1 | ||
| FERC-2019-0737-0001 | FERC | Transmission Planning Reliability Standard | Proposed Rule | 2019-06-27T04:00:00Z | 2019 | 6 | 2019-06-27T04:00:00Z | 2019-08-27T03:59:59Z | 2019-06-27T11:44:33Z | 2019-13582 | 0 | 0 | 0900006483d469d7 | ||
| FERC-2019-0618-0001 | FERC | Standards for Business Practices and Communication Protocols for Public Utilities | Proposed Rule | 2019-05-24T04:00:00Z | 2019 | 5 | 2019-05-24T04:00:00Z | 2019-07-24T03:59:59Z | 2019-05-24T11:42:17Z | 2019-10695 | 0 | 0 | 0900006483cc36dc | ||
| FERC-2019-0474-0001 | FERC | Critical Infrastructure Protection Reliability Standard CIP-012-1-Cyber Security-Communications between Control Centers | Proposed Rule | 2019-04-24T04:00:00Z | 2019 | 4 | 2019-04-24T04:00:00Z | 2019-06-25T03:59:59Z | 2019-04-24T11:53:08Z | 2019-08236 | 0 | 0 | 0900006483be9b34 | ||
| FERC-2019-0221-0001 | FERC | Mergers or Consolidations by a Public Utility; Correction | Proposed Rule | 2019-03-04T05:00:00Z | 2019 | 3 | 2019-03-04T05:00:00Z | 2019-03-04T13:03:39Z | 2019-03686 | 0 | 0 | 0900006483abad2e | |||
| FERC-2019-0179-0001 | FERC | Revisions to the Filing Process for Commission Forms | Proposed Rule | 2019-02-25T05:00:00Z | 2019 | 2 | 2019-02-25T05:00:00Z | 2019-02-25T12:53:40Z | C1-2019-00460 | 0 | 0 | 0900006483aa3140 | |||
| FERC-2019-0088-0001 | FERC | Hydroelectric Licensing Regulations Under the America's Water Infrastructure Act of 2018 | Proposed Rule | 2019-02-07T05:00:00Z | 2019 | 2 | 2019-02-07T05:00:00Z | 2019-03-12T03:59:59Z | 2019-02-07T12:55:33Z | 2019-01256 | 0 | 0 | 0900006483a4ff7d | ||
| FERC-2019-0057-0001 | FERC | Revisions to the Filing Process for Commission Forms | Proposed Rule | 2019-02-04T05:00:00Z | 2019 | 2 | 2019-02-04T05:00:00Z | 2019-03-07T04:59:59Z | 2019-02-04T13:34:54Z | 2019-00460 | 0 | 0 | 0900006483a38b40 | ||
| FERC-2019-0055-0001 | FERC | Refinements to Horizontal Market Power Analysis for Sellers in Certain Regional Transmission Organization and Independent System Operator Markets | Proposed Rule | 2019-02-01T05:00:00Z | 2019 | 2 | 2019-02-01T05:00:00Z | 2019-03-19T03:59:59Z | 2019-02-01T13:11:54Z | 2019-00459 | 0 | 0 | 0900006483a32ad1 |
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;