documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "DOT-OST-2011-0139" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| DOT-OST-2011-0139-0009 | DOT | None DOT-OST-2011-0139 | Notice of Action Taken re: The Yellowstone Mountain Club, L.L.C. | Other | Decision | 2025-04-24T04:00:00Z | 2025 | 4 | 2025-04-24T04:00:00Z | 2025-04-24T12:15:07Z | 1 | 0 | 0900006486ab4dfc | ||
| DOT-OST-2011-0139-0008 | DOT | None DOT-OST-2011-0139 | Supplement to Application of The Yellowstone Mountain Club, L.L.C. for Amendment of Exemption | Other | Supplement (SUP) | 2024-12-16T05:00:00Z | 2024 | 12 | 2024-12-16T05:00:00Z | 2024-12-17T16:20:17Z | 1 | 0 | 0900006486876563 | ||
| DOT-OST-2011-0139-0007 | DOT | None DOT-OST-2011-0139 | Application of The Yellowstone Mountain Club, L.L.C. for Amendment of Exemption | Other | Application-Other | 2023-08-22T04:00:00Z | 2023 | 8 | 2023-08-22T04:00:00Z | 2024-11-11T21:31:10Z | 1 | 0 | 0900006485ed6cdd | ||
| DOT-OST-2011-0139-0006 | DOT | None DOT-OST-2011-0139 | Approval of the Application | Other | Decision | 2014-06-13T04:00:00Z | 2014 | 6 | 2014-06-13T04:00:00Z | 2014-06-13T19:19:31Z | 0 | 0 | 09000064817470cc | ||
| DOT-OST-2011-0139-0005 | DOT | None DOT-OST-2011-0139 | Application of The Yellowstone Mountain Club L.L.C. for Modification of an Exemption | Other | Application-Other | 2014-05-13T04:00:00Z | 2014 | 5 | 2014-05-13T04:00:00Z | 2024-11-11T20:51:41Z | 1 | 0 | 09000064816f0464 | ||
| DOT-OST-2011-0139-0004 | DOT | None DOT-OST-2011-0139 | Application of The Yellowstone Mountain Club, L.L.C. for Modification of an Exemption | Other | Application-Other | 2012-03-14T04:00:00Z | 2012 | 3 | 2012-03-14T04:00:00Z | 2024-11-07T22:09:40Z | 1 | 0 | 0900006480fd5355 | ||
| DOT-OST-2011-0139-0003 | DOT | None DOT-OST-2011-0139 | 2012-2-1 Order Granting Exemption | Other | Order | 2012-02-01T05:00:00Z | 2012 | 2 | 2012-02-01T05:00:00Z | 2012-02-01T20:29:34Z | 0 | 0 | 0900006480fab548 | ||
| DOT-OST-2011-0139-0001 | DOT | None DOT-OST-2011-0139 | Application of The Yellowstone Mountain Club, L.L.C. for an Exemption | Other | Application-Other | 2011-07-19T04:00:00Z | 2011 | 7 | 2011-07-19T04:00:00Z | 2014-05-17T23:13:04Z | 0 | 0 | 0900006480ec5955 |
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;