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 = "Rule" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-2017-0152-0001 | STB | Expediting Rate Cases | Rule | 2017-12-05T05:00:00Z | 2017 | 12 | 2017-12-05T05:00:00Z | 2017-12-05T12:31:38Z | 2017-26153 | 0 | 0 | 0900006482cdbd99 | |||
| STB-2017-0134-0001 | STB | Revisions to the Cost-Of-Capital Composite Railroad Criteria | Rule | 2017-10-25T04:00:00Z | 2017 | 10 | 2017-10-25T04:00:00Z | 2017-10-25T11:47:01Z | 2017-22894 | 0 | 0 | 0900006482c023f0 | |||
| STB-2017-0100-0001 | STB | Fees for Services Performed in Connection with Licensing and Related Services | Rule | 2017-08-02T04:00:00Z | 2017 | 8 | 2017-08-02T04:00:00Z | 2017-08-02T11:54:40Z | 2017-16280 | 0 | 0 | 0900006482994afa | |||
| STB-2017-0091-0001 | STB | Publication Requirements for Agricultural Products; Rail Transportation of Grain, Rate Regulation Review | Rule | 2017-07-06T04:00:00Z | 2017 | 7 | 2017-07-06T04:00:00Z | 2017-07-06T11:53:23Z | 2017-14180 | 0 | 0 | 0900006482808325 | |||
| STB-2017-0090-0001 | STB | Offers of Financial Assistance | Rule | 2017-07-05T04:00:00Z | 2017 | 7 | 2017-07-05T04:00:00Z | 2017-07-05T12:04:51Z | 2017-14044 | 0 | 0 | 09000064827ecbb2 | |||
| STB-2017-0040-0001 | STB | United States Rail Service Issues-Performance Data Reporting; Correction | Rule | 2017-03-13T04:00:00Z | 2017 | 3 | 2017-03-13T04:00:00Z | 2017-03-13T13:19:09Z | 2017-04841 | 0 | 0 | 0900006482502e85 | |||
| STB-2017-0032-0001 | STB | United States Rail Service Issues; Performance Data Reporting | Rule | 2017-02-24T05:00:00Z | 2017 | 2 | 2017-02-24T05:00:00Z | 2017-02-24T13:03:55Z | C1-2017-02492 | 0 | 0 | 09000064824d9a24 | |||
| STB-2017-0025-0001 | STB | United States Rail Service Issues; Performance Data Reporting | Rule | 2017-02-07T05:00:00Z | 2017 | 2 | 2017-02-07T05:00:00Z | 2017-02-07T13:12:51Z | 2017-02492 | 0 | 0 | 09000064824b0166 | |||
| STB-2017-0005-0001 | STB | Civil Monetary Penalties-2017 Adjustment | Rule | 2017-01-17T05:00:00Z | 2017 | 1 | 2017-01-17T05:00:00Z | 2017-01-17T14:06:36Z | 2017-00690 | 0 | 0 | 090000648247d280 |
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;