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 = 2024 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-2024-1432-0001 | FERC | Supplemental Review of the Oil Pipeline Index Level | Proposed Rule | 2024-10-23T04:00:00Z | 2024 | 10 | 2024-10-23T04:00:00Z | 2024-12-21T04:59:59Z | 2024-10-23T12:06:37Z | 2024-24518 | 0 | 0 | 09000064867df2ff | ||
| FERC-2024-1319-0001 | FERC | Supply Chain Risk Management Reliability Standards | Proposed Rule | 2024-10-01T04:00:00Z | 2024 | 10 | 2024-10-01T04:00:00Z | 2024-12-03T04:59:59Z | 2024-10-01T11:47:52Z | 2024-22230 | 0 | 0 | 09000064867a448f | ||
| FERC-2024-1302-0001 | FERC | Critical Infrastructure Protection Reliability Standard: Cyber Security—Internal Network Security Monitoring | Proposed Rule | 2024-09-27T04:00:00Z | 2024 | 9 | 2024-09-27T04:00:00Z | 2024-11-27T04:59:59Z | 2024-09-27T12:47:58Z | 2024-22231 | 0 | 0 | 0900006486799542 | ||
| FERC-2024-1222-0001 | FERC | Petition for Rulemaking: Alliance for Tribal Clean Energy; Tribal Consultation Meetings | Proposed Rule | 2024-09-12T04:00:00Z | 2024 | 9 | 2024-09-12T04:00:00Z | 2024-11-05T04:59:59Z | 2024-09-12T12:29:52Z | 2024-20312 | 0 | 0 | 09000064866eea46 | ||
| FERC-2024-0946-0001 | FERC | Implementation of Dynamic Line Ratings | Proposed Rule | 2024-07-15T04:00:00Z | 2024 | 7 | 2024-07-15T04:00:00Z | 2024-11-13T04:59:59Z | 2024-07-15T12:43:59Z | 2024-14666 | 0 | 0 | 09000064865eedf3 | ||
| FERC-2024-0907-0001 | FERC | Electric Reliability Organization Performance Assessments; Withdrawal | Proposed Rule | 2024-07-05T04:00:00Z | 2024 | 7 | 2024-07-05T04:00:00Z | 2024-07-05T12:25:25Z | 2024-14667 | 0 | 0 | 09000064865dc4de | |||
| FERC-2024-0770-0001 | FERC | Establishment of Categorical Reasonable Period of Time for Action on Requests for Water Quality Certification | Proposed Rule | 2024-06-06T04:00:00Z | 2024 | 6 | 2024-06-06T04:00:00Z | 2024-07-09T03:59:59Z | 2024-06-06T12:13:00Z | 2024-11896 | 0 | 0 | 09000064865988ed | ||
| FERC-2024-0616-0001 | FERC | Standards for Business Practices and Communication Protocols for Public Utilities | Proposed Rule | 2024-05-06T04:00:00Z | 2024 | 5 | 2024-05-06T04:00:00Z | 2024-07-06T03:59:59Z | 2024-05-06T12:29:57Z | 2024-09438 | 0 | 0 | 090000648654253e | ||
| FERC-2024-0473-0001 | FERC | Standards for Business Practices of Interstate Natural Gas Pipelines | Proposed Rule | 2024-04-05T04:00:00Z | 2024 | 4 | 2024-04-05T04:00:00Z | 2024-06-05T03:59:59Z | 2024-04-05T12:35:36Z | 2024-06561 | 0 | 0 | 09000064864bce9e | ||
| FERC-2024-0442-0001 | FERC | Petition for Rulemaking to Update Commission Regulations Regarding Allocation of Interstate Pipeline Capacity | Proposed Rule | 2024-03-29T04:00:00Z | 2024 | 3 | 2024-03-29T04:00:00Z | 2024-07-30T03:59:59Z | 2024-03-29T12:14:27Z | 2024-06562 | 0 | 0 | 09000064864a26b4 | ||
| FERC-2024-0439-0001 | FERC | Compensation for Reactive Power Within the Standard Power Factor Range | Proposed Rule | 2024-03-28T04:00:00Z | 2024 | 3 | 2024-03-28T04:00:00Z | 2024-06-27T03:59:59Z | 2024-03-28T12:10:51Z | 2024-06556 | 0 | 0 | 090000648649f2cc |
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;