documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "DOT", document_type = "Rule" and posted_year = 2023 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_month, 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-2009-0092-0554 | DOT | None DOT-OST-2009-0092 | Revisions to Civil Penalty Amounts, 2024 | Rule | Final Rule | 2023-12-28T05:00:00Z | 2023 | 12 | 2023-12-28T05:00:00Z | 2023-12-28T13:43:15Z | 2023-28066 | 0 | 0 | 09000064863616ad | |
| DOT-OST-2009-0092-0553 | DOT | None DOT-OST-2009-0092 | Solicitation Provisions and Contract Clauses | Rule | Final Rule | 2023-12-21T05:00:00Z | 2023 | 12 | 2023-12-21T05:00:00Z | 2023-12-21T14:45:04Z | 2023-27890 | 0 | 0 | 090000648634dbf9 | |
| DOT-OST-2021-0137-0364 | DOT | None DOT-OST-2021-0137 | Accessible Lavatories on Single-Aisle Aircraft | Rule | Final Rule | 2023-08-01T04:00:00Z | 2023 | 8 | 2023-08-01T04:00:00Z | 2023-08-01T13:05:24Z | 2023-16178 | 0 | 0 | 0900006485d9b841 | |
| DOT-OST-2021-0142-0002 | DOT | None DOT-OST-2021-0142 | Clarification of Formal Enforcement Procedures for Unfair and Deceptive Practices | Rule | Final Rule | 2023-06-16T04:00:00Z | 2023 | 6 | 2023-06-16T04:00:00Z | 2023-06-16T16:56:44Z | 2023-12845 | 0 | 0 | 0900006485b388e6 | |
| DOT-OST-2021-0093-0420 | DOT | None DOT-OST-2021-0093 | Procedures for Transportation Workplace Drug and Alcohol Testing Programs: Addition of Oral Fluid Specimen Testing for Drugs | Rule | Final Rule | 2023-05-02T04:00:00Z | 2023 | 5 | 2023-05-02T04:00:00Z | 2023-05-02T12:29:20Z | 2023-08041 | 0 | 0 | 09000064859b7bb8 | |
| DOT-OST-2023-0032-0001 | DOT | None DOT-OST-2023-0032 | Uniform Administrative Requirements, Cost Principles, and Audit Requirements for Federal Awards | Rule | Final Rule | 2023-03-01T05:00:00Z | 2023 | 3 | 2023-03-01T05:00:00Z | 2023-03-01T14:38:22Z | 2023-03891 | 0 | 0 | 09000064857323d8 | |
| DOT-OST-2018-0132-0021 | DOT | None DOT-OST-2018-0132 | Updates to the Origin: Destination Survey of Airline Passengers | Rule | Final Rule | 2023-01-31T05:00:00Z | 2023 | 1 | 2023-01-31T05:00:00Z | 2023-01-31T13:09:08Z | 2022-28535 | 0 | 0 | 090000648561eeab | |
| DOT-OST-2009-0092-0549 | DOT | None DOT-OST-2009-0092 | Civil Penalty Amounts | Rule | Final Rule | 2023-01-06T05:00:00Z | 2023 | 1 | 2023-01-06T05:00:00Z | 2023-01-06T13:07:50Z | 2022-28580 | 0 | 0 | 090000648559b337 |
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;