documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FRA-2016-0089" 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), 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-2016-0089-0009 | FRA | Richard Gilliland - Petition FRA-2016-0089 | Richard Gilliland- Denial of Petition | Other | Denial of Petition | 2017-04-17T04:00:00Z | 2017 | 4 | 2017-04-17T04:00:00Z | 2017-04-17T19:03:24Z | 0 | 0 | 090000648255979d | ||
| FRA-2016-0089-0008 | FRA | Richard Gilliland - Petition FRA-2016-0089 | Richard Gilliland - Comments | Other | Letter(s) | 2017-02-10T05:00:00Z | 2017 | 2 | 2017-02-10T05:00:00Z | 2024-11-11T21:34:44Z | 1 | 0 | 09000064824b7e59 | ||
| FRA-2016-0089-0007 | FRA | Richard Gilliland - Petition FRA-2016-0089 | CSX Transportation - Letter | Other | Letter(s) | 2017-01-30T05:00:00Z | 2017 | 1 | 2017-01-30T05:00:00Z | 2024-11-11T21:33:13Z | 1 | 0 | 090000648249a3d6 | ||
| FRA-2016-0089-0006 | FRA | Richard Gilliland - Petition FRA-2016-0089 | CSX Transportation - Response | Other | Response(s) | 2016-12-01T05:00:00Z | 2016 | 12 | 2016-12-01T05:00:00Z | 2024-11-07T23:52:06Z | 1 | 0 | 09000064823d13bc | ||
| FRA-2016-0089-0005 | FRA | Richard Gilliland - Petition FRA-2016-0089 | Response of CSX Transportation, Inc. to the Petition filed by Richard Gililand in Docket FRA-2016-0089 | Other | Response(s) | 2016-11-30T05:00:00Z | 2016 | 11 | 2016-11-30T05:00:00Z | 2024-11-12T06:17:29Z | 1 | 0 | 09000064823cfebb | ||
| FRA-2016-0089-0004 | FRA | Richard Gilliland - Petition FRA-2016-0089 | CSX Transportation - Letter | Other | Letter(s) | 2016-11-17T05:00:00Z | 2016 | 11 | 2016-11-17T05:00:00Z | 2024-11-12T06:16:30Z | 1 | 0 | 090000648239da77 | ||
| FRA-2016-0089-0003 | FRA | Richard Gilliland - Petition FRA-2016-0089 | Richard Gilliland - Comments | Other | Letter(s) | 2016-11-17T05:00:00Z | 2016 | 11 | 2016-08-31T04:00:00Z | 2024-11-07T23:52:36Z | 1 | 0 | 090000648239a84d | ||
| FRA-2016-0089-0002 | FRA | Richard Gilliland - Petition FRA-2016-0089 | U.S. DOT/FRA - Acknowledgment Letter | Other | Acknowledgement Letter/Receipt | 2016-09-14T04:00:00Z | 2016 | 9 | 2016-09-14T04:00:00Z | 2024-11-07T23:48:56Z | 1 | 0 | 090000648220660c | ||
| FRA-2016-0089-0001 | FRA | Richard Gilliland - Petition FRA-2016-0089 | Richard Gilland - Petition | Other | Petition(s) | 2016-08-31T04:00:00Z | 2016 | 8 | 2016-08-31T04:00:00Z | 2024-11-11T21:30:17Z | 1 | 0 | 09000064821b6ef8 |
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;