documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FRA-2019-0099" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, open_for_comment, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FRA-2019-0099-0009 | FRA | Notice of NS Test Program to Evaluate Automated Track Inspection Technologies FRA-2019-0099 | FRA Deputy Administrator Letter to Mr. Boyle 10.13.21 | Other | Action Memo or Letter | 2022-03-08T05:00:00Z | 2022 | 3 | 2022-03-08T05:00:00Z | 2022-03-08T14:43:22Z | 0 | 0 | 0900006484fbeecb | ||
| FRA-2019-0099-0007 | FRA | Notice of NS Test Program to Evaluate Automated Track Inspection Technologies FRA-2019-0099 | Petition for Approval Extension: Norfolk Southern Railway Co. | Notice | Notice of Receipt of Petition | 2021-08-02T04:00:00Z | 2021 | 8 | 2021-08-02T04:00:00Z | 2021-09-08T03:59:59Z | 2024-11-06T23:49:27Z | 2021-16440 | 1 | 0 | 0900006484c2038a |
| FRA-2019-0099-0006 | FRA | Notice of NS Test Program to Evaluate Automated Track Inspection Technologies FRA-2019-0099 | NS Test Program Extension Request and FRA’s Decision | Other | Decision | 2020-12-09T05:00:00Z | 2020 | 12 | 2020-12-09T05:00:00Z | 2020-12-09T17:47:13Z | 0 | 0 | 090000648498d533 | ||
| FRA-2019-0099-0005 | FRA | Notice of NS Test Program to Evaluate Automated Track Inspection Technologies FRA-2019-0099 | U.S. DOT/FRA's decision permitting NS to move from Phase 2 to Phase 3 of their Test Program | Other | Decision | 2020-10-03T04:00:00Z | 2020 | 10 | 2020-10-03T04:00:00Z | 2024-11-06T23:39:34Z | 1 | 0 | 09000064848af8c1 | ||
| FRA-2019-0099-0004 | FRA | Notice of NS Test Program to Evaluate Automated Track Inspection Technologies FRA-2019-0099 | Program Approval: Norfolk Southern Railway Co. | Notice | Notice of Intent | 2020-01-30T05:00:00Z | 2020 | 1 | 2020-01-30T05:00:00Z | 2024-11-12T23:16:33Z | 2020-01667 | 1 | 0 | 090000648430a1ff | |
| FRA-2019-0099-0003 | FRA | Notice of NS Test Program to Evaluate Automated Track Inspection Technologies FRA-2019-0099 | NS Petition for Suspension | Other | Petition(s) | 2020-01-29T05:00:00Z | 2020 | 1 | 2020-01-29T05:00:00Z | 2020-01-29T15:24:44Z | 0 | 0 | 09000064842fd4cc | ||
| FRA-2019-0099-0002 | FRA | Notice of NS Test Program to Evaluate Automated Track Inspection Technologies FRA-2019-0099 | FRA Technical Documents on Autonomous Track Geometry Measurement Systems | Other | Additional Information | 2020-01-29T05:00:00Z | 2020 | 1 | 2020-01-29T05:00:00Z | 2020-01-29T15:21:12Z | 0 | 0 | 09000064842fdda4 | ||
| FRA-2019-0099-0001 | FRA | Notice of NS Test Program to Evaluate Automated Track Inspection Technologies FRA-2019-0099 | FRA Decision Approving NS Petition for Suspension | Other | Petition(s) | 2020-01-29T05:00:00Z | 2020 | 1 | 2020-01-29T05:00:00Z | 2024-11-12T23:16:12Z | 1 | 0 | 09000064842fd97b |
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;