documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "DOT-OST-2019-0182" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, posted_date (date), comment_start_date (date), comment_end_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-2019-0182-0237 | DOT | None DOT-OST-2019-0182 | Guidance Regarding Interpretation of Unfair and Deceptive Practices | Rule | Notice of Interim Rule | 2022-08-29T04:00:00Z | 2022 | 8 | 2022-08-29T04:00:00Z | 2022-08-30T12:56:01Z | 2022-18170 | 0 | 0 | 09000064852853b7 | |
| DOT-OST-2019-0182-0235 | DOT | None DOT-OST-2019-0182 | Defining Unfair or Deceptive Practices | Rule | Final Rule | 2020-12-07T05:00:00Z | 2020 | 12 | 2020-12-07T05:00:00Z | 2020-12-08T12:55:36Z | 2020-26416 | 0 | 0 | 0900006484989f3a | |
| DOT-OST-2019-0182-0233 | DOT | None DOT-OST-2019-0182 | Defining Unfair or Deceptive Practices: Final Rule | Other | Supplement (SUP) | 2020-11-27T05:00:00Z | 2020 | 11 | 2020-11-27T05:00:00Z | 2020-12-04T13:05:22Z | 0 | 0 | 0900006484979939 | ||
| DOT-OST-2019-0182-0231 | DOT | None DOT-OST-2019-0182 | Ex Parte Correspondence to Honorable Katie Porter | Other | Correspondence | 2020-11-23T05:00:00Z | 2020 | 11 | 2020-11-23T05:00:00Z | 2020-11-27T19:21:05Z | 0 | 0 | 0900006484970abf | ||
| DOT-OST-2019-0182-0232 | DOT | None DOT-OST-2019-0182 | Honorable Edward J. Markey, Honorable Maria Cantwell, Honorable Tammy Baldwin, and Honorable Richard Blumenthal (Correspondence) | Other | Correspondence | 2020-11-23T05:00:00Z | 2020 | 11 | 2020-11-23T05:00:00Z | 2020-11-27T19:21:13Z | 0 | 0 | 0900006484970c94 | ||
| DOT-OST-2019-0182-0189 | DOT | None DOT-OST-2019-0182 | Defining Unfair or Deceptive Practices | Proposed Rule | Extension of Comment Period | 2020-05-05T04:00:00Z | 2020 | 5 | 2020-05-05T04:00:00Z | 2020-11-29T11:41:18Z | 2020-08996 | 0 | 0 | 090000648455e158 | |
| DOT-OST-2019-0182-0182 | DOT | None DOT-OST-2019-0182 | Grant of Request to Extend Comment Period | Other | Extension of Time | 2020-04-23T04:00:00Z | 2020 | 4 | 2020-04-23T04:00:00Z | 2020-04-23T15:41:50Z | 0 | 0 | 09000064844c69fd | ||
| DOT-OST-2019-0182-0183 | DOT | None DOT-OST-2019-0182 | Airlines for America Letter Regarding Comment Period | Other | Request | 2020-04-23T04:00:00Z | 2020 | 4 | 2020-04-23T04:00:00Z | 2020-04-23T18:09:30Z | 0 | 0 | 09000064844c8485 | ||
| DOT-OST-2019-0182-0016 | DOT | None DOT-OST-2019-0182 | Defining Unfair or Deceptive Practices | Proposed Rule | Request for Comment | 2020-02-28T05:00:00Z | 2020 | 2 | 2020-02-28T05:00:00Z | 2020-05-29T03:59:59Z | 2020-11-27T19:20:28Z | 2020-03836 | 0 | 0 | 09000064843c5085 |
| DOT-OST-2019-0182-0001 | DOT | None DOT-OST-2019-0182 | Defining Unfair or Deceptive Practices: Notice of Proposed Rulemaking | Other | Supplement (SUP) | 2020-02-20T05:00:00Z | 2020 | 2 | 2020-02-20T05:00:00Z | 2020-02-29T02:00:19Z | 0 | 0 | 090000648439517b |
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;