documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "FRA-2007-0007" 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-2007-0007-0015 | FRA | SMS Rail Service - Waiver Petition FRA-2007-0007 | FRA-2007-0007 Decision Letter 2022 | Other | Decision | 2023-05-22T04:00:00Z | 2023 | 5 | 2023-05-22T04:00:00Z | 2023-05-22T20:57:06Z | 0 | 0 | 0900006485a1cd0b | ||
| FRA-2007-0007-0013 | FRA | SMS Rail Service - Waiver Petition FRA-2007-0007 | FRA-2007-0007 Waiver Amend. Request Ack. Letter 2022 | Other | Acknowledgement Letter/Receipt | 2022-02-18T05:00:00Z | 2022 | 2 | 2022-02-18T05:00:00Z | 2022-02-18T13:58:49Z | 0 | 0 | 0900006484f87a70 | ||
| FRA-2007-0007-0012 | FRA | SMS Rail Service - Waiver Petition FRA-2007-0007 | Request for renewal | Other | Request | 2020-07-28T04:00:00Z | 2020 | 7 | 2020-07-28T04:00:00Z | 2020-07-28T16:48:23Z | 0 | 0 | 09000064847a43a1 | ||
| FRA-2007-0007-0011 | FRA | SMS Rail Service - Waiver Petition FRA-2007-0007 | U.S. DOT/FRA-SMS Rail Service Decision Letter 2018 | Other | Decision | 2018-04-20T04:00:00Z | 2018 | 4 | 2018-04-20T04:00:00Z | 2018-04-20T14:05:28Z | 0 | 0 | 090000648319184a | ||
| FRA-2007-0007-0009 | FRA | SMS Rail Service - Waiver Petition FRA-2007-0007 | Waiver Extension Request | Other | Waiver | 2018-01-29T05:00:00Z | 2018 | 1 | 2018-01-29T05:00:00Z | 2018-01-29T21:26:57Z | 0 | 0 | 0900006482e780b4 | ||
| FRA-2007-0007-0008 | FRA | SMS Rail Service - Waiver Petition FRA-2007-0007 | U.S. DOT/ FRA- Expiration Notice | Other | Action Memo or Letter | 2017-12-13T05:00:00Z | 2017 | 12 | 2017-12-13T05:00:00Z | 2017-12-13T18:58:56Z | 0 | 0 | 0900006482d042a8 | ||
| FRA-2007-0007-0007 | FRA | SMS Rail Service - Waiver Petition FRA-2007-0007 | U.S. DOT/FRA - Decision Letter - (SMS Rail Service - Safety Glazing) | Other | Decision | 2013-04-03T04:00:00Z | 2013 | 4 | 2013-04-03T04:00:00Z | 2024-11-12T05:19:27Z | 1 | 0 | 0900006481265d31 | ||
| FRA-2007-0007-0006 | FRA | SMS Rail Service - Waiver Petition FRA-2007-0007 | SMS Rail Service - Waiver Extension Request (Part 223) | Other | Waiver | 2012-11-07T05:00:00Z | 2012 | 11 | 2012-11-07T05:00:00Z | 2024-11-12T05:06:52Z | 1 | 0 | 090000648115f8fb | ||
| FRA-2007-0007-0005 | FRA | SMS Rail Service - Waiver Petition FRA-2007-0007 | U.S. DOT/FRA - Waiver Expiration Notice | Other | Waiver | 2012-09-27T04:00:00Z | 2012 | 9 | 2012-09-27T04:00:00Z | 2024-11-11T20:42:31Z | 1 | 0 | 0900006481129554 | ||
| FRA-2007-0007-0004 | FRA | SMS Rail Service - Waiver Petition FRA-2007-0007 | U.S. DOT/FRA - Decision Letter | Other | Decision | 2008-02-29T05:00:00Z | 2008 | 2 | 2008-02-29T05:00:00Z | 2013-08-11T04:03:28Z | 0 | 0 | 09000064803cb806 | ||
| FRA-2007-0007-0003 | FRA | SMS Rail Service - Waiver Petition FRA-2007-0007 | U.S. DOT/FRA - SMS Rail Service - Acknowledgement of Request for Waiver Petition | Other | Acknowledgement Letter/Receipt | 2008-01-22T05:00:00Z | 2008 | 1 | 2008-01-22T05:00:00Z | 2013-07-27T20:31:55Z | 0 | 0 | 090000648039a785 | ||
| FRA-2007-0007-0002 | FRA | SMS Rail Service - Waiver Petition FRA-2007-0007 | U.S. DOT/FRA - SMS Rail Service - Waiver Petition | Other | Petition(s) | 2007-12-28T05:00:00Z | 2007 | 12 | 2007-12-28T05:00:00Z | 2013-07-28T01:29:00Z | 0 | 0 | 090000648037f1a3 |
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;