documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "DOT", document_type = "Proposed Rule" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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-1999-5129-0029 | DOT | Semiannual Regulatory Agenda DOT-OST-1999-5129 | UA: Reg Flex Agenda | Proposed Rule | Request for Comment | 2019-12-26T05:00:00Z | 2019 | 12 | 2019-12-26T05:00:00Z | 2019-12-26T13:30:49Z | 2019-26583 | 0 | 0 | 090000648424fda3 | |
| DOT-OST-2019-0144-0001 | DOT | None DOT-OST-2019-0144 | Tarmac Delay Rule | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2019-10-25T04:00:00Z | 2019 | 10 | 2019-10-25T04:00:00Z | 2019-12-25T04:59:59Z | 2019-12-27T02:01:14Z | 2019-22973 | 0 | 0 | 09000064840f8fad |
| DOT-OST-2018-0104-0001 | DOT | None DOT-OST-2018-0104 | Tribal Transportation Self-Governance Program | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2019-10-02T04:00:00Z | 2019 | 10 | 2019-10-02T04:00:00Z | 2019-12-03T04:59:59Z | 2024-11-12T23:10:21Z | 2019-21464 | 1 | 0 | 0900006484003860 |
| DOT-OST-2019-0025-0001 | DOT | None DOT-OST-2019-0025 | Modernizing Payment of Denied Boarding Compensation | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2019-03-28T04:00:00Z | 2019 | 3 | 2019-03-28T04:00:00Z | 2019-05-29T03:59:59Z | 2024-11-12T22:57:03Z | 2019-05858 | 1 | 0 | 0900006483b38034 |
| DOT-OST-2016-0028-0004 | DOT | None DOT-OST-2016-0028 | Maintenance of and Access to Records Pertaining to Individuals; Correction | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2019-02-21T05:00:00Z | 2019 | 2 | 2019-02-21T05:00:00Z | 2024-11-12T22:56:26Z | 2019-02956 | 1 | 0 | 0900006483a94092 | |
| DOT-OST-2016-0028-0002 | DOT | None DOT-OST-2016-0028 | Privacy Act; Systems of Records: Maintenance of and Access to Records Pertaining to Individuals | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2019-02-06T05:00:00Z | 2019 | 2 | 2019-02-11T05:00:00Z | 2019-04-09T03:59:59Z | 2019-04-08T01:00:47Z | 2019-01338 | 0 | 0 | 0900006483a62039 |
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;