documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where agency_id = "STB", document_type = "Proposed Rule" and posted_year = 2019 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| STB-2019-0199-0001 | STB | UA: Reg Flex Agenda | Proposed Rule | 2019-12-26T05:00:00Z | 2019 | 12 | 2019-12-26T05:00:00Z | 2019-12-26T12:52:03Z | 2019-26564 | 0 | 0 | 090000648424fe4a | |||
| STB-2019-0182-0001 | STB | Waybill Sample Reporting | Proposed Rule | 2019-11-29T05:00:00Z | 2019 | 11 | 2019-11-29T05:00:00Z | 2020-02-28T04:59:59Z | 2019-11-29T12:59:04Z | 2019-25924 | 0 | 0 | 09000064841c8de6 | ||
| STB-2019-0155-0001 | STB | Methodology for Determining the Railroad Industry's Cost of Capital | Proposed Rule | 2019-10-18T04:00:00Z | 2019 | 10 | 2019-10-18T04:00:00Z | 2019-12-05T04:59:59Z | 2019-10-18T11:44:50Z | 2019-22748 | 0 | 0 | 09000064840be303 | ||
| STB-2019-0154-0001 | STB | Exclusion of Demurrage Regulation from Certain Class Exemptions | Proposed Rule | 2019-10-15T04:00:00Z | 2019 | 10 | 2019-10-15T04:00:00Z | 2019-12-07T04:59:59Z | 2019-10-15T11:47:18Z | 2019-22201 | 0 | 0 | 090000648408dee3 | ||
| STB-2019-0153-0001 | STB | Demurrage Billing Requirements | Proposed Rule | 2019-10-15T04:00:00Z | 2019 | 10 | 2019-10-15T04:00:00Z | 2019-12-07T04:59:59Z | 2019-10-15T11:43:46Z | 2019-22202 | 0 | 0 | 090000648408dd1c | ||
| STB-2019-0147-0001 | STB | Petition for Rulemaking: Railroad Performance Data Reporting | Proposed Rule | 2019-10-07T04:00:00Z | 2019 | 10 | 2019-10-07T04:00:00Z | 2020-01-07T04:59:59Z | 2019-10-07T11:43:06Z | 2019-21627 | 0 | 0 | 0900006484048c21 | ||
| STB-2019-0146-0001 | STB | Revisions to the Board's Methodology for Determining the Railroad Industry's Cost of Capital | Proposed Rule | 2019-10-04T04:00:00Z | 2019 | 10 | 2019-10-04T04:00:00Z | 2019-12-05T04:59:59Z | 2019-10-04T11:40:53Z | 2019-21590 | 0 | 0 | 090000648401fbbc | ||
| STB-2019-0133-0001 | STB | Final Offer Rate Review; Expanding Access to Rate Relief | Proposed Rule | 2019-09-17T04:00:00Z | 2019 | 9 | 2019-09-17T04:00:00Z | 2020-01-11T04:59:59Z | 2019-09-17T12:02:56Z | 2019-20093 | 0 | 0 | 0900006483f863d8 | ||
| STB-2019-0134-0001 | STB | Market Dominance Streamlined Approach | Proposed Rule | 2019-09-17T04:00:00Z | 2019 | 9 | 2019-09-17T04:00:00Z | 2020-01-11T04:59:59Z | 2019-09-17T12:03:15Z | 2019-20087 | 0 | 0 | 0900006483f864a1 | ||
| STB-2019-0068-0001 | STB | Limiting Extensions of Trail Use Negotiating Periods; Rails-To-Trails Conservancy | Proposed Rule | 2019-06-06T04:00:00Z | 2019 | 6 | 2019-06-06T04:00:00Z | 2019-07-27T03:59:59Z | 2019-06-06T12:09:56Z | 2019-11883 | 0 | 0 | 0900006483cf0612 | ||
| STB-2019-0048-0001 | STB | Petition for Rulemaking; Railroad Performance Data Reporting | Proposed Rule | 2019-04-12T04:00:00Z | 2019 | 4 | 2019-04-12T04:00:00Z | 2019-04-12T11:58:01Z | 2019-07272 | 0 | 0 | 0900006483b89e53 | |||
| STB-2019-0004-0001 | STB | Water Carrier Tariff Filing Procedures | Proposed Rule | 2019-02-01T05:00:00Z | 2019 | 2 | 2019-02-01T05:00:00Z | 2019-03-05T04:59:59Z | 2019-02-01T13:09:23Z | 2019-00788 | 0 | 0 | 0900006483a32a4d |
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;