documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "STB", document_type = "Proposed Rule" and posted_year = 2015 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-2015-0183-0001 | STB | On-Time Performance under the Passenger Rail Investment and Improvement Act, | Proposed Rule | 2015-12-28T05:00:00Z | 2015 | 12 | 2015-12-28T05:00:00Z | 2016-02-09T04:59:59Z | 2015-12-28T14:06:07Z | 2015-32411 | 0 | 0 | 0900006481dd415e | ||
| STB-2015-0171-0001 | STB | Offers of Financial Assistance, | Proposed Rule | 2015-12-14T05:00:00Z | 2015 | 12 | 2015-12-14T05:00:00Z | 2016-02-13T04:59:59Z | 2015-12-14T14:19:45Z | 2015-31347 | 0 | 0 | 0900006481da1cb7 | ||
| STB-2015-0119-0001 | STB | Amtrak Emergency Routing Orders | Proposed Rule | 2015-09-08T04:00:00Z | 2015 | 9 | 2015-09-08T04:00:00Z | 2015-09-08T12:38:08Z | 2015-22543 | 0 | 0 | 0900006481c5d89d | |||
| STB-2015-0089-0001 | STB | Accelerating Reporting Requirements for Class I Railroads | Proposed Rule | 2015-07-08T04:00:00Z | 2015 | 7 | 2015-07-08T04:00:00Z | 2015-08-08T03:59:59Z | 2015-07-08T12:22:24Z | 2015-15407 | 0 | 0 | 0900006481b7134a | ||
| STB-2015-0090-0001 | STB | Accounting and Reporting of Business Combinations, Security Investments, Comprehensive Income, Derivative Instruments, and Hedging Activities | Proposed Rule | 2015-07-08T04:00:00Z | 2015 | 7 | 2015-07-08T04:00:00Z | 2015-08-08T03:59:59Z | 2015-07-08T12:23:23Z | 2015-15402 | 0 | 0 | 0900006481b71460 | ||
| STB-2015-0063-0001 | STB | On-Time Performance under the Passenger Rail Investment and Improvement Act | Proposed Rule | 2015-05-20T04:00:00Z | 2015 | 5 | 2015-05-20T04:00:00Z | 2015-05-20T13:20:33Z | 2015-12174 | 0 | 0 | 0900006481aeb60e | |||
| STB-2015-0058-0001 | STB | Rail Transportation of Grain; Rate Regulation Review | Proposed Rule | 2015-05-13T04:00:00Z | 2015 | 5 | 2015-05-13T04:00:00Z | 2015-05-13T13:20:17Z | 2015-11558 | 0 | 0 | 0900006481addf5b | |||
| STB-2015-0059-0001 | STB | Railroad Revenue Adequacy and Railroad Industry's Cost of Equity Capital | Proposed Rule | 2015-05-13T04:00:00Z | 2015 | 5 | 2015-05-13T04:00:00Z | 2015-05-13T13:20:36Z | 2015-11565 | 0 | 0 | 0900006481addfa5 | |||
| STB-2015-0007-0001 | STB | United States Rail Service Issues: Performance Data Reporting | Proposed Rule | 2015-01-06T05:00:00Z | 2015 | 1 | 2015-01-06T05:00:00Z | 2015-03-03T04:59:59Z | 2015-01-06T16:05:20Z | 2014-30940 | 0 | 0 | 09000064819a69a0 |
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;