documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "DOT", document_type = "Rule" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_date, posted_month, comment_start_date, 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-2020-0251-0002 | DOT | None DOT-OST-2020-0251 | Implementing Certain Provisions of the TICKETS Act and Revisions to Denied Boarding Compensation and Domestic Baggage Liability Limits | Rule | Final Rule | 2021-08-02T04:00:00Z | 2021 | 8 | 2021-08-02T04:00:00Z | 2021-08-03T11:54:07Z | 2021-16196 | 0 | 0 | 0900006484c20388 | |
| DOT-OST-2018-0068-32401 | DOT | None DOT-OST-2018-0068 | Traveling by Air with Service Animals | Rule | Final Rule | 2021-08-02T04:00:00Z | 2021 | 8 | 2021-08-02T04:00:00Z | 2021-08-03T11:55:04Z | 2021-16194 | 0 | 0 | 0900006484c20450 | |
| DOT-OST-2009-0092-0533 | DOT | None DOT-OST-2009-0092 | Civil Penalty Amounts | Rule | Final Rule | 2021-05-03T04:00:00Z | 2021 | 5 | 2021-05-03T04:00:00Z | 2021-05-03T12:15:59Z | 2021-08224 | 0 | 0 | 0900006484ac7c5d | |
| DOT-OST-2019-0144-0023 | DOT | None DOT-OST-2019-0144 | Tarmac Delay Rule | Rule | Final Rule | 2021-05-03T04:00:00Z | 2021 | 5 | 2021-05-03T04:00:00Z | 2021-05-03T12:05:26Z | 2021-08850 | 0 | 0 | 0900006484ac790c | |
| DOT-OST-2009-0092-0531 | DOT | None DOT-OST-2009-0092 | Administrative Rulemaking, Guidance, and Enforcement Procedures | Rule | Final Rule | 2021-04-02T04:00:00Z | 2021 | 4 | 2021-04-02T04:00:00Z | 2021-04-02T20:59:48Z | 2021-06416 | 0 | 0 | 0900006484a94c8f | |
| DOT-OST-2020-0251-0001 | DOT | None DOT-OST-2020-0251 | Implementing Certain Provisions of the TICKETS Act and Revisions to Denied Boarding Compensation and Domestic Baggage Liability Limits | Rule | Final Rule | 2021-01-13T05:00:00Z | 2021 | 1 | 2021-01-13T05:00:00Z | 2021-01-13T14:57:11Z | 2020-28001 | 0 | 0 | 09000064849f0c20 | |
| DOT-OST-2009-0092-0528 | DOT | None DOT-OST-2009-0092 | Revisions to Civil Penalty Amounts | Rule | Final Rule | 2021-01-11T05:00:00Z | 2021 | 1 | 2021-01-11T05:00:00Z | 2024-11-06T23:45:02Z | 2020-25236 | 1 | 0 | 09000064849ec1b7 |
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;