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 = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, subtype, posted_month, 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-2009-0092-0526 | DOT | None DOT-OST-2009-0092 | Inflationary Adjustment: Disadvantaged Business Enterprise Program | Rule | Final Rule | 2020-12-14T05:00:00Z | 2020 | 12 | 2020-12-14T05:00:00Z | 2024-11-12T23:27:12Z | 2020-26549 | 1 | 0 | 090000648499bb61 | |
| DOT-OST-2018-0068-32400 | DOT | None DOT-OST-2018-0068 | Traveling by Air With Service Animals | Rule | Final Rule | 2020-12-10T05:00:00Z | 2020 | 12 | 2020-12-10T05:00:00Z | 2020-12-10T12:56:16Z | 2020-26679 | 0 | 0 | 0900006484995654 | |
| 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-1999-5129-0030 | DOT | Semiannual Regulatory Agenda DOT-OST-1999-5129 | Department Regulatory and Deregulatory Agenda; Semiannual Summary | Rule | Temporary Rule | 2020-08-26T04:00:00Z | 2020 | 8 | 2021-03-10T14:13:17Z | 2020-16760 | 0 | 0 | 0900006484a66306 | ||
| DOT-OST-2018-0104-0033 | DOT | None DOT-OST-2018-0104 | Tribal Transportation Self-Governance Program | Rule | Final Rule | 2020-06-01T04:00:00Z | 2020 | 6 | 2020-06-01T04:00:00Z | 2024-11-12T23:20:56Z | 2020-11618 | 1 | 0 | 09000064846bf560 | |
| DOT-OST-2009-0092-0517 | DOT | None DOT-OST-2009-0092 | Repeal of Aircraft Allocation Regulations | Rule | Final Rule | 2020-02-25T05:00:00Z | 2020 | 2 | 2020-02-25T05:00:00Z | 2020-03-13T19:28:24Z | 2020-02757 | 0 | 0 | 09000064843ad3f0 | |
| DOT-OST-2009-0092-0515 | DOT | None DOT-OST-2009-0092 | Administrative Rulemaking, Guidance, and Enforcement Procedures | Rule | Correction | 2020-01-21T05:00:00Z | 2020 | 1 | 2020-01-21T05:00:00Z | 2020-01-22T13:37:11Z | C2-2019-26672 | 0 | 0 | 09000064842c91d7 | |
| DOT-OST-2009-0092-0513 | DOT | None DOT-OST-2009-0092 | Administrative Rulemaking, Guidance, and Enforcement Procedures | Rule | Final Rule | 2020-01-13T05:00:00Z | 2020 | 1 | 2020-01-13T05:00:00Z | 2020-01-13T20:44:54Z | C1-2019-26672 | 0 | 0 | 090000648429180d |
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;