documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FRA-2019-0069" and document_type = "Other" sorted by posted_date descending
This data as json, CSV (advanced)
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FRA-2019-0069-0384 | FRA | Metrics and Minimum Standards for Intercity Passenger Rail Service FRA-2019-0069 | Record of EO 12866 meeting on Metrics and Minimum Standards rulemaking | Other | Minutes | 2020-10-26T04:00:00Z | 2020 | 10 | 2020-10-26T04:00:00Z | 2020-10-26T16:15:52Z | 0 | 0 | 0900006484931536 | ||
| FRA-2019-0069-0383 | FRA | Metrics and Minimum Standards for Intercity Passenger Rail Service FRA-2019-0069 | EO 12866 Meeting on Metrics and Minimum Standards for Intercity Passenger Rail Service | Other | Report | 2020-10-14T04:00:00Z | 2020 | 10 | 2020-10-14T04:00:00Z | 2020-10-14T14:51:15Z | 0 | 0 | 0900006484908fb9 | ||
| FRA-2019-0069-0382 | FRA | Metrics and Minimum Standards for Intercity Passenger Rail Service FRA-2019-0069 | U.S. DOT/FRA-Joint Conference Call - Class Is & Amtrak Letter - 9.4.2020 | Other | Letter(s) | 2020-09-10T04:00:00Z | 2020 | 9 | 2020-09-10T04:00:00Z | 2020-09-10T14:38:20Z | 0 | 0 | 090000648484cd9e | ||
| FRA-2019-0069-0381 | FRA | Metrics and Minimum Standards for Intercity Passenger Rail Service FRA-2019-0069 | Request for Final Rule Clarification | Other | Request for Extension | 2020-07-16T04:00:00Z | 2020 | 7 | 2020-07-16T04:00:00Z | 2020-07-16T14:25:05Z | 0 | 0 | 0900006484775a59 | ||
| FRA-2019-0069-0379 | FRA | Metrics and Minimum Standards for Intercity Passenger Rail Service FRA-2019-0069 | U.S. DOT/FRA-Outgoing Letters | Other | Letter(s) | 2020-07-15T04:00:00Z | 2020 | 7 | 2020-07-15T04:00:00Z | 2020-07-15T20:32:43Z | 0 | 0 | 0900006484716501 | ||
| FRA-2019-0069-0380 | FRA | Metrics and Minimum Standards for Intercity Passenger Rail Service FRA-2019-0069 | U.S. DOT/FRA- Decision Letter 2018 | Other | Letter(s) | 2020-07-15T04:00:00Z | 2020 | 7 | 2020-07-16T04:00:00Z | 2020-07-16T14:20:49Z | 0 | 0 | 0900006484716589 | ||
| FRA-2019-0069-0376 | FRA | Metrics and Minimum Standards for Intercity Passenger Rail Service FRA-2019-0069 | U.S. DOT/FRA- Outgoing Letters to Reps. Graves and Crawford (Metrics and Standards) | Other | Letter(s) | 2020-06-16T04:00:00Z | 2020 | 6 | 2020-06-16T04:00:00Z | 2020-06-16T17:35:32Z | 0 | 0 | 09000064846ee8a4 |
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;