documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "STB", document_type = "Proposed 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), 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-2017-0127-0001 | STB | Ex Parte Communications in Informal Rulemaking Proceedings | Proposed Rule | 2017-10-02T04:00:00Z | 2017 | 10 | 2017-10-02T04:00:00Z | 2017-11-17T04:59:59Z | 2017-10-02T11:56:33Z | 2017-21093 | 0 | 0 | 0900006482b8fda1 | ||
| STB-2017-0084-0001 | STB | Regulatory Reform Task Force Listening Session | Proposed Rule | 2017-06-23T04:00:00Z | 2017 | 6 | 2017-06-23T04:00:00Z | 2017-07-26T03:59:59Z | 2017-06-23T11:53:12Z | 2017-13131 | 0 | 0 | 0900006482758e76 | ||
| STB-2017-0055-0001 | STB | Revisions to Cost-of-Capital Composite Railroad Criteria | Proposed Rule | 2017-04-18T04:00:00Z | 2017 | 4 | 2017-04-18T04:00:00Z | 2017-06-20T03:59:59Z | 2017-04-18T12:10:08Z | 2017-07815 | 0 | 0 | 090000648255c2d4 | ||
| STB-2017-0051-0001 | STB | Expediting Rate Cases | Proposed Rule | 2017-04-05T04:00:00Z | 2017 | 4 | 2017-04-05T04:00:00Z | 2017-06-15T03:59:59Z | 2017-04-05T11:47:24Z | 2017-06718 | 0 | 0 | 090000648253c01a | ||
| STB-2017-0001-0001 | STB | Publication Requirements for Agricultural Products; Rail Transportation of Grain, Rate Regulation Review | Proposed Rule | 2017-01-04T05:00:00Z | 2017 | 1 | 2017-01-04T05:00:00Z | 2017-03-21T03:59:59Z | 2017-01-04T12:46:04Z | 2016-31906 | 0 | 0 | 090000648244964e |
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;