documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "STB", document_type = "Proposed Rule" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_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-2020-0169-0001 | STB | Joint Petition For Rulemaking: Annual Revenue Adequacy Determinations | Proposed Rule | 2020-12-31T05:00:00Z | 2020 | 12 | 2020-12-31T05:00:00Z | 2020-12-31T13:19:24Z | 2020-28864 | 0 | 0 | 09000064849d60bd | |||
| STB-2020-0154-0001 | STB | Review of Commodity, Boxcar, and TOFC/COFC Exemptions | Proposed Rule | 2020-12-03T05:00:00Z | 2020 | 12 | 2020-12-03T05:00:00Z | 2020-12-03T12:57:18Z | 2020-26420 | 0 | 0 | 09000064849840e3 | |||
| STB-2020-0155-0001 | STB | Voluntary Arbitration Program for Small Rate Disputes | Proposed Rule | 2020-12-03T05:00:00Z | 2020 | 12 | 2020-12-03T05:00:00Z | 2020-12-03T12:57:35Z | 2020-26506 | 0 | 0 | 0900006484984129 | |||
| STB-2020-0122-0001 | STB | Review of Commodity, Boxcar, and TOFC/COFC Exemptions | Proposed Rule | 2020-10-05T04:00:00Z | 2020 | 10 | 2020-10-05T04:00:00Z | 2021-01-05T04:59:59Z | 2020-10-05T11:57:27Z | 2020-21925 | 0 | 0 | 09000064848ce3ff | ||
| STB-2020-0121-0001 | STB | Petition for Rulemaking: Montana Rail Link, Inc., Classification of Carriers | Proposed Rule | 2020-10-02T04:00:00Z | 2020 | 10 | 2020-10-02T04:00:00Z | 2020-12-02T04:59:59Z | 2020-10-02T12:01:21Z | 2020-21859 | 0 | 0 | 09000064848b5083 | ||
| STB-2020-0086-0001 | STB | Methodology for Determining the Railroad Industry's Cost of Capital; Withdrawal Withdrawal | Proposed Rule | 2020-06-30T04:00:00Z | 2020 | 6 | 2020-06-30T04:00:00Z | 2020-06-30T11:56:49Z | 2020-14061 | 0 | 0 | 090000648471afcf | |||
| STB-2020-0064-0001 | STB | Petition for Rulemaking: Classification of Carriers; Montana Rail Link, Inc. | Proposed Rule | 2020-05-20T04:00:00Z | 2020 | 5 | 2020-05-20T04:00:00Z | 2020-05-20T11:54:27Z | 2020-10764 | 0 | 0 | 090000648464d6b4 | |||
| STB-2020-0057-0001 | STB | Demurrage Billing Requirements | Proposed Rule | 2020-05-06T04:00:00Z | 2020 | 5 | 2020-05-06T04:00:00Z | 2020-07-07T03:59:59Z | 2020-05-06T11:44:56Z | 2020-09684 | 0 | 0 | 09000064845651e4 |
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;