documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "STB", document_type = "Rule" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, posted_date (date), comment_start_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-0163-0001 | STB | Filing Fee Waiver Requests | Rule | 2020-12-23T05:00:00Z | 2020 | 12 | 2020-12-23T05:00:00Z | 2020-12-23T13:00:21Z | 2020-28408 | 0 | 0 | 09000064849c0f3c | |||
| STB-2020-0110-0001 | STB | Waybill Sample Reporting | Rule | 2020-09-03T04:00:00Z | 2020 | 9 | 2020-09-03T04:00:00Z | 2020-09-03T11:49:24Z | 2020-19195 | 0 | 0 | 09000064848405cf | |||
| STB-2020-0100-0001 | STB | Market Dominance Streamlined Approach | Rule | 2020-08-06T04:00:00Z | 2020 | 8 | 2020-08-06T04:00:00Z | 2020-08-06T11:31:56Z | 2020-17115 | 0 | 0 | 09000064847dcf3a | |||
| STB-2020-0099-0001 | STB | Regulations Governing Fees for Services Performed in Connection With Licensing and Related Services; 2020 Update | Rule | 2020-08-04T04:00:00Z | 2020 | 8 | 2020-08-04T04:00:00Z | 2020-08-04T11:56:53Z | 2020-16831 | 0 | 0 | 09000064847d2638 | |||
| STB-2020-0095-0001 | STB | Policy Statement on Factors Considered in Assessing Civil Monetary Penalties on Small Entities | Rule | 2020-07-10T04:00:00Z | 2020 | 7 | 2020-07-10T04:00:00Z | 2020-07-10T12:17:45Z | 2020-14661 | 0 | 0 | 090000648473b379 | |||
| STB-2020-0065-0001 | STB | Petition for Rulemaking; Railroad Performance Data Reporting | Rule | 2020-05-21T04:00:00Z | 2020 | 5 | 2020-05-21T04:00:00Z | 2020-05-21T11:56:23Z | 2020-10952 | 0 | 0 | 090000648465b76e | |||
| STB-2020-0056-0001 | STB | Demurrage Billing Requirements | Rule | 2020-05-06T04:00:00Z | 2020 | 5 | 2020-05-06T04:00:00Z | 2020-05-06T11:44:51Z | 2020-09683 | 0 | 0 | 09000064845651a7 | |||
| STB-2020-0055-0001 | STB | Policy Statement on Demurrage and Accessorial Rules and Charges | Rule | 2020-05-06T04:00:00Z | 2020 | 5 | 2020-05-06T04:00:00Z | 2020-05-06T11:44:37Z | 2020-09682 | 0 | 0 | 090000648456515a | |||
| STB-2020-0033-0001 | STB | Exclusion of Demurrage Regulation from Certain Class Exemptions | Rule | 2020-03-04T05:00:00Z | 2020 | 3 | 2020-03-04T05:00:00Z | 2020-03-04T12:55:46Z | 2020-04460 | 0 | 0 | 09000064843e746b | |||
| STB-2020-0006-0001 | STB | Civil Monetary Penalties-2020 Adjustment | Rule | 2020-01-08T05:00:00Z | 2020 | 1 | 2020-01-08T05:00:00Z | 2020-01-08T12:46:08Z | 2020-00089 | 0 | 0 | 090000648427be36 |
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;