documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FRA-2017-0126" 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-2017-0126-0009 | FRA | Denton County Transportation Authority FRA-2017-0126 | FRA-2017-0126 Decision Letter 2023 | Other | Decision | 2023-10-02T04:00:00Z | 2023 | 10 | 2023-10-02T04:00:00Z | 2023-10-02T17:57:44Z | 0 | 0 | 0900006486014b07 | ||
| FRA-2017-0126-0008 | FRA | Denton County Transportation Authority FRA-2017-0126 | FRA-2017-0126 Temporary Extension of Relief Letter April 2023 | Other | Letter(s) | 2023-04-10T04:00:00Z | 2023 | 4 | 2023-04-10T04:00:00Z | 2023-04-10T16:26:34Z | 0 | 0 | 09000064858f466d | ||
| FRA-2017-0126-0006 | FRA | Denton County Transportation Authority FRA-2017-0126 | FRA-2017-0126 Inc Waiver Ext Petition 2023 | Other | Petition(s) | 2023-03-24T04:00:00Z | 2023 | 3 | 2023-03-24T04:00:00Z | 2023-03-24T15:54:28Z | 0 | 0 | 09000064858267a1 | ||
| FRA-2017-0126-0005 | FRA | Denton County Transportation Authority FRA-2017-0126 | U.S. DOT/FRA- Decision Letter (DCTA) | Other | Decision | 2018-05-09T04:00:00Z | 2018 | 5 | 2018-05-09T04:00:00Z | 2018-05-09T19:32:57Z | 0 | 0 | 090000648324fdb4 | ||
| FRA-2017-0126-0002 | FRA | Denton County Transportation Authority FRA-2017-0126 | U.S. DOT/FRA-Acknowledgement Letter | Other | Acknowledgement Letter/Receipt | 2017-12-15T05:00:00Z | 2017 | 12 | 2017-12-15T05:00:00Z | 2017-12-15T18:51:41Z | 0 | 0 | 0900006482d08611 | ||
| FRA-2017-0126-0001 | FRA | Denton County Transportation Authority FRA-2017-0126 | Denton County Transportation Authority Incoming | Other | Waiver | 2017-12-12T05:00:00Z | 2017 | 12 | 2017-12-12T05:00:00Z | 2024-11-07T01:12:40Z | 1 | 0 | 0900006482cf42a9 |
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;