documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FRA-1999-5026" 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-1999-5026-0007 | FRA | Bluegrass Railroad Museum Inc. - Waiver Petition FRA-1999-5026 | FRA-1999-5026 Dismissal Letter 2023 | Other | Dismissal | 2023-09-15T04:00:00Z | 2023 | 9 | 2023-09-15T04:00:00Z | 2023-09-15T23:04:01Z | 0 | 0 | 0900006485fa7a78 | ||
| FRA-1999-5026-0006 | FRA | Bluegrass Railroad Museum Inc. - Waiver Petition FRA-1999-5026 | FRA-1999-5026 Inc Waiver Addendum Petition 2023 | Other | Waiver | 2023-07-17T04:00:00Z | 2023 | 7 | 2023-07-17T04:00:00Z | 2023-07-17T18:12:47Z | 0 | 0 | 0900006485cc85c7 | ||
| FRA-1999-5026-0005 | FRA | Bluegrass Railroad Museum Inc. - Waiver Petition FRA-1999-5026 | ... | Other | 2021-12-16T00:00:00Z | 2021 | 12 | 2023-08-15T18:38:18Z | 0 | 1 | 0900006484ed0222 | ||||
| FRA-1999-5026-0004 | FRA | Bluegrass Railroad Museum Inc. - Waiver Petition FRA-1999-5026 | U.S. DOT/FRA - Decision 1999 (duplicate) | Other | Decision | 1999-08-09T04:00:00Z | 1999 | 8 | 1999-08-09T04:00:00Z | 1999-08-11T03:59:59Z | 2023-08-15T18:39:49Z | 0 | 0 | 0900006480329908 | |
| FRA-1999-5026-0003 | FRA | Bluegrass Railroad Museum Inc. - Waiver Petition FRA-1999-5026 | U.S. DOT/FRA - Grant of Waiver | Other | Waiver | 1999-07-16T04:00:00Z | 1999 | 7 | 1999-07-16T04:00:00Z | 1999-07-22T03:59:59Z | 2008-01-08T19:59:28Z | 0 | 0 | 0900006480329907 | |
| FRA-1999-5026-0001 | FRA | Bluegrass Railroad Museum Inc. - Waiver Petition FRA-1999-5026 | Bluegrass Railroad Museum Inc. - Waiver Petition | Other | Waiver | 1999-01-21T05:00:00Z | 1999 | 1 | 1999-01-21T05:00:00Z | 1999-01-23T04:59:59Z | 2008-01-08T19:57:57Z | 0 | 0 | 0900006480329904 |
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;