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 = "Proposed 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), 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-2020-0229-0029 | DOT | None DOT-OST-2020-0229 | Procedures for Considering Environmental Impacts | Proposed Rule | Request for Comment | 2020-12-23T05:00:00Z | 2020 | 12 | 2020-12-23T05:00:00Z | 2020-12-23T13:08:35Z | 2020-28467 | 0 | 0 | 09000064849c0832 | |
| DOT-OST-2020-0229-0002 | DOT | None DOT-OST-2020-0229 | Procedures for Considering Environmental Impacts | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2020-11-23T05:00:00Z | 2020 | 11 | 2020-11-23T05:00:00Z | 2020-12-24T04:59:59Z | 2022-03-05T23:52:58Z | 2020-25030 | 0 | 0 | 09000064849700db |
| 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-2018-0068-20292 | DOT | None DOT-OST-2018-0068 | Traveling by Air With Service Animals; Denial of Request for Extension of Comment Period | Proposed Rule | Request for Comment | 2020-04-15T04:00:00Z | 2020 | 4 | 2020-04-15T04:00:00Z | 2020-04-21T05:49:19Z | 2020-07802 | 0 | 0 | 09000064844a82c8 | |
| 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-2018-0068-12959 | DOT | None DOT-OST-2018-0068 | Traveling by Air with Service Animals | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2020-02-05T05:00:00Z | 2020 | 2 | 2020-02-05T05:00:00Z | 2020-04-07T03:59:59Z | 2020-09-23T01:00:56Z | 2020-01546 | 0 | 0 | 090000648432b7e1 |
| DOT-OST-2019-0180-0017 | DOT | None DOT-OST-2019-0180 | Accessible Lavatories on Single-Aisle Aircraft; Part 1 | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2020-01-02T05:00:00Z | 2020 | 1 | 2020-01-02T05:00:00Z | 2020-03-03T04:59:59Z | 2024-11-12T23:15:10Z | 2019-27631 | 1 | 0 | 090000648426365b |
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;