documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "DOT-OST-2022-0089" and posted_year = 2024 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, 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-2022-0089-5348 | DOT | None DOT-OST-2022-0089 | Refunds and Other Consumer Protections (2024 FAA Reauthorization) | Rule | Final Rule | 2024-08-12T04:00:00Z | 2024 | 8 | 2024-08-12T04:00:00Z | 2024-08-12T13:12:37Z | 2024-17602 | 0 | 0 | 0900006486633c48 | |
| DOT-OST-2022-0089-5347 | DOT | None DOT-OST-2022-0089 | (DRAFT) Refunds and Other Consumer Protections - Final Rule | Other | Supplement (SUP) | 2024-08-05T04:00:00Z | 2024 | 8 | 2024-08-05T04:00:00Z | 2024-08-05T15:50:39Z | 0 | 0 | 090000648661d763 | ||
| DOT-OST-2022-0089-5345 | DOT | None DOT-OST-2022-0089 | Airlines for America (Request to DOT - Ticket Refunds Rule Implementation) | Other | Correspondence | 2024-07-30T04:00:00Z | 2024 | 7 | 2024-07-30T04:00:00Z | 2024-07-30T19:24:24Z | 0 | 0 | 090000648660e75b | ||
| DOT-OST-2022-0089-5346 | DOT | None DOT-OST-2022-0089 | Airlines for America (Refunds Interpretation) | Other | Correspondence | 2024-07-30T04:00:00Z | 2024 | 7 | 2024-07-30T04:00:00Z | 2024-07-30T19:27:59Z | 0 | 0 | 090000648660e761 | ||
| DOT-OST-2022-0089-5344 | DOT | None DOT-OST-2022-0089 | Memorandum re: Consolidation of Dockets | Other | Memorandum | 2024-04-30T04:00:00Z | 2024 | 4 | 2024-04-30T04:00:00Z | 2024-04-30T16:01:46Z | 0 | 0 | 0900006486529503 | ||
| DOT-OST-2022-0089-5343 | DOT | None DOT-OST-2022-0089 | Refunds and Other Consumer Protections | Rule | Final Rule | 2024-04-26T04:00:00Z | 2024 | 4 | 2024-04-26T04:00:00Z | 2024-04-26T12:32:49Z | 2024-07177 | 0 | 0 | 09000064864f27ac | |
| DOT-OST-2022-0089-5341 | DOT | None DOT-OST-2022-0089 | Refunds and Other Consumer Protections Final Rule (Unofficial Prepublication) | Other | Supplement (SUP) | 2024-04-24T04:00:00Z | 2024 | 4 | 2024-04-24T04:00:00Z | 2024-04-24T13:09:48Z | 0 | 0 | 09000064864eb86e | ||
| DOT-OST-2022-0089-5342 | DOT | None DOT-OST-2022-0089 | Refunding Airline Tickets and Ancillary Service Fees - Regulatory Impact Analysis (March 2024) | Other | Regulatory Analysis | 2024-04-24T04:00:00Z | 2024 | 4 | 2024-04-24T04:00:00Z | 2024-04-24T12:42:07Z | 0 | 0 | 09000064864eb874 | ||
| DOT-OST-2022-0089-5340 | DOT | None DOT-OST-2022-0089 | U.S. Department of Transportation - Public Hearing Minutes - Notice of Proposed Rulemaking: Airline Ticket Refunds and Consumer Protections (March 21, 2023) | Other | Hearing/Meeting Transcript | 2024-04-03T04:00:00Z | 2024 | 4 | 2024-04-03T04:00:00Z | 2024-12-23T16:36:27Z | 0 | 0 | 09000064864b8823 |
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;