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 = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2021-1157-0001 | FERC | Petition for Rulemaking: American Gas Association; American Public Gas Association;American Forest and Paper Association; et al. | Proposed Rule | 2021-09-17T04:00:00Z | 2021 | 9 | 2021-09-17T04:00:00Z | 2021-09-30T03:59:59Z | 2021-09-17T11:55:47Z | 2021-19771 | 0 | 0 | 0900006484d8c369 | ||
| FERC-2021-0909-0001 | FERC | Building for the Future Through Electric Regional Transmission Planning and Cost Allocation and Generator Interconnection | Proposed Rule | 2021-07-27T04:00:00Z | 2021 | 7 | 2021-07-27T04:00:00Z | 2021-11-10T04:59:59Z | 2021-07-27T11:44:41Z | 2021-15512 | 0 | 0 | 0900006484c12477 | ||
| FERC-2021-0501-0001 | FERC | Electric Transmission Incentives Policy under the Federal Power Act | Proposed Rule | 2021-04-26T04:00:00Z | 2021 | 4 | 2021-04-26T04:00:00Z | 2021-06-11T03:59:59Z | 2021-04-26T12:03:25Z | 2021-08215 | 0 | 0 | 0900006484ab68d2 | ||
| FERC-2021-0486-0001 | FERC | Managing Transmission Line Ratings; Correction | Proposed Rule | 2021-04-22T04:00:00Z | 2021 | 4 | 2021-04-22T04:00:00Z | 2021-04-22T11:57:48Z | 2021-08236 | 0 | 0 | 0900006484ab2f7c | |||
| FERC-2021-0389-0001 | FERC | Petition for Rulemaking of Center for Biological Diversity | Proposed Rule | 2021-04-02T04:00:00Z | 2021 | 4 | 2021-04-02T04:00:00Z | 2021-04-27T03:59:59Z | 2021-04-02T11:56:30Z | 2021-06624 | 0 | 0 | 0900006484a95965 | ||
| FERC-2021-0267-0001 | FERC | Removing Profile Drawing Requirement for Qualifying Conduit Notices of Intent and Revising Filing Requirements for Major Hydroelectric Projects 10 MW or Less | Proposed Rule | 2021-03-09T05:00:00Z | 2021 | 3 | 2021-03-09T05:00:00Z | 2021-03-09T12:36:54Z | 2021-03803 | 0 | 0 | 0900006484a63d6c | |||
| FERC-2021-0249-0001 | FERC | Standards for Business Practices of Interstate Natural Gas Pipelines | Proposed Rule | 2021-03-05T05:00:00Z | 2021 | 3 | 2021-03-05T05:00:00Z | 2021-03-05T13:05:43Z | 2021-03797 | 0 | 0 | 0900006484a5fbac | |||
| FERC-2021-0234-0001 | FERC | Safe Harbor Policy for Data Providers to Price Index Developers | Proposed Rule | 2021-03-02T05:00:00Z | 2021 | 3 | 2021-03-02T05:00:00Z | 2021-03-02T12:53:50Z | 2020-28386 | 0 | 0 | 0900006484a5b6fb | |||
| FERC-2021-0132-0001 | FERC | Cybersecurity Incentives | Proposed Rule | 2021-02-05T05:00:00Z | 2021 | 2 | 2021-02-05T05:00:00Z | 2021-02-05T12:47:00Z | 2021-01986 | 0 | 0 | 0900006484a1dfd5 | |||
| FERC-2021-0102-0001 | FERC | Electric Reliability Organization Performance Assessments | Proposed Rule | 2021-01-29T05:00:00Z | 2021 | 1 | 2021-01-29T05:00:00Z | 2021-03-02T04:59:59Z | 2021-01-29T12:42:26Z | 2021-01614 | 0 | 0 | 0900006484a0b5b9 | ||
| FERC-2021-0064-0001 | FERC | Managing Transmission Line Ratings | Proposed Rule | 2021-01-21T05:00:00Z | 2021 | 1 | 2021-01-21T05:00:00Z | 2021-03-23T03:59:59Z | 2021-01-21T13:01:54Z | 2020-26107 | 0 | 0 | 09000064849fa9cf |
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;