documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where agency_id = "FERC", document_type = "Proposed Rule" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, comment_end_date, 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-2018-1529-0001 | FERC | Mergers or Consolidations by a Public Utility | Proposed Rule | 2018-11-29T05:00:00Z | 2018 | 11 | 2018-11-29T05:00:00Z | 2019-01-01T04:59:59Z | 2018-11-29T12:51:44Z | 2018-25369 | 0 | 0 | 090000648390c155 | ||
| FERC-2018-1487-0001 | FERC | Public Utility Transmission Rate Changes to Address Accumulated Deferred Income Taxes | Proposed Rule | 2018-11-23T05:00:00Z | 2018 | 11 | 2018-11-23T05:00:00Z | 2018-12-25T04:59:59Z | 2018-11-23T13:10:26Z | 2018-25370 | 0 | 0 | 09000064838f5b62 | ||
| FERC-2018-1294-0001 | FERC | Standards for Business Practices and Communication Protocols for Public Utilities | Proposed Rule | 2018-10-12T04:00:00Z | 2018 | 10 | 2018-10-12T04:00:00Z | 2018-11-14T04:59:59Z | 2018-10-12T11:49:50Z | 2018-22074 | 0 | 0 | 09000064837c7157 | ||
| FERC-2018-1109-0001 | FERC | Standards for Business Practices of Interstate Natural Gas Pipelines | Proposed Rule | 2018-08-31T04:00:00Z | 2018 | 8 | 2018-08-31T04:00:00Z | 2018-10-02T03:59:59Z | 2018-08-31T12:12:10Z | 2018-18473 | 0 | 0 | 090000648368451f | ||
| FERC-2018-0975-0001 | FERC | Interlocking Officers and Directors; Requirements for Applicants and Holders | Proposed Rule | 2018-08-01T04:00:00Z | 2018 | 8 | 2018-08-01T04:00:00Z | 2018-10-02T03:59:59Z | 2018-08-01T12:12:12Z | 2018-16463 | 0 | 0 | 09000064835ac9bb | ||
| FERC-2018-0656-0001 | FERC | Geomagnetic Disturbance Reliability Standard | Proposed Rule | 2018-05-23T04:00:00Z | 2018 | 5 | 2018-05-23T04:00:00Z | 2018-07-24T03:59:59Z | 2018-05-23T12:03:29Z | 2018-11001 | 0 | 0 | 09000064832bf135 | ||
| FERC-2018-0648-0001 | FERC | Elimination of Form 80 and Revision of Regulations on Recreational Opportunities and Development at Licensed Hydropower Projects | Proposed Rule | 2018-05-23T04:00:00Z | 2018 | 5 | 2018-05-23T04:00:00Z | 2018-07-24T03:59:59Z | 2018-05-23T11:51:30Z | 2018-11002 | 0 | 0 | 09000064832bed50 | ||
| FERC-2018-0383-0001 | FERC | Natural Gas Pipelines: Interstate and Intrastate Natural Gas Pipelines; Rate Changes Relating to Federal Income Tax Rate | Proposed Rule | 2018-03-26T04:00:00Z | 2018 | 3 | 2018-03-26T04:00:00Z | 2018-04-26T03:59:59Z | 2018-03-26T11:52:00Z | 2018-05669 | 0 | 0 | 090000648304dadb | ||
| FERC-2018-0247-0001 | FERC | Withdrawal of Pleadings | Proposed Rule | 2018-02-23T05:00:00Z | 2018 | 2 | 2018-02-23T05:00:00Z | 2018-03-27T03:59:59Z | 2018-02-23T12:49:08Z | 2018-03648 | 0 | 0 | 0900006482f56021 | ||
| FERC-2018-0223-0001 | FERC | Petitions for Rulemaking: Airlines for America and National Propane Gas Assn. | Proposed Rule | 2018-02-20T05:00:00Z | 2018 | 2 | 2018-02-20T05:00:00Z | 2018-03-15T03:59:59Z | 2018-02-20T13:02:43Z | 2018-03249 | 0 | 0 | 0900006482f453d8 | ||
| FERC-2018-0111-0001 | FERC | Supply Chain Risk Management Reliability Standards | Proposed Rule | 2018-01-25T05:00:00Z | 2018 | 1 | 2018-01-25T05:00:00Z | 2018-03-27T03:59:59Z | 2018-01-25T13:28:01Z | 2018-01247 | 0 | 0 | 0900006482e645c6 |
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;