documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "DOT-OST-2011-0022" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2011-0022-0015 | DOT | None DOT-OST-2011-0022 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Online Complaint Form and Related Uses of a Modernized Aviation Consumer Protection Information Technology System | Notice | Request for Comments | 2024-06-21T04:00:00Z | 2024 | 6 | 2024-06-21T04:00:00Z | 2024-07-23T03:59:59Z | 2024-06-21T12:23:44Z | 2024-13580 | 0 | 0 | 09000064865c2c39 |
| DOT-OST-2011-0022-0013 | DOT | None DOT-OST-2011-0022 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Online Complaint Form for Service-Related Issues in Air Transportation | Notice | Request for Comments | 2023-11-01T04:00:00Z | 2023 | 11 | 2023-11-01T04:00:00Z | 2024-01-03T04:59:59Z | 2024-01-03T02:01:01Z | 2023-24128 | 0 | 0 | 09000064861bde22 |
| DOT-OST-2011-0022-0011 | DOT | None DOT-OST-2011-0022 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Online Complaint/Comment Form for Service-Related Issues in Air Transportation | Notice | Request for Comments | 2022-02-11T05:00:00Z | 2022 | 2 | 2022-02-11T05:00:00Z | 2022-03-15T03:59:59Z | 2024-11-12T23:37:00Z | 2022-02790 | 1 | 0 | 0900006484f6ce3d |
| DOT-OST-2011-0022-0010 | DOT | None DOT-OST-2011-0022 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Online Complaint Form for Service-Related Issues in Air Transportation | Notice | Request for Comments | 2021-11-29T05:00:00Z | 2021 | 11 | 2021-11-29T05:00:00Z | 2022-01-29T04:59:59Z | 2024-11-07T00:34:35Z | 2021-25891 | 1 | 0 | 0900006484e86a0d |
| DOT-OST-2011-0022-0008 | DOT | None DOT-OST-2011-0022 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: On-Line Complaint/Comment Form for Service-Related Issues in Air Transportation | Notice | Request for Comments | 2018-04-04T04:00:00Z | 2018 | 4 | 2018-04-04T04:00:00Z | 2018-05-05T03:59:59Z | 2018-04-22T01:07:08Z | 2018-06858 | 0 | 0 | 0900006483092fad |
| DOT-OST-2011-0022-0007 | DOT | None DOT-OST-2011-0022 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: On-Line Complaint Form for Service-Related Issues in Air Transportation | Notice | Request for Comments | 2017-10-31T04:00:00Z | 2017 | 10 | 2017-10-31T04:00:00Z | 2018-01-03T04:59:59Z | 2024-11-07T01:10:09Z | 2017-23631 | 1 | 0 | 0900006482c2886e |
| DOT-OST-2011-0022-0006 | DOT | None DOT-OST-2011-0022 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | Request for Comments | 2015-06-10T04:00:00Z | 2015 | 6 | 2015-06-10T04:00:00Z | 2015-07-11T03:59:59Z | 2024-11-11T20:58:22Z | 2015-13990 | 1 | 0 | 0900006481b29168 |
| DOT-OST-2011-0022-0004 | DOT | None DOT-OST-2011-0022 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: On-Line Complaint Form; Service-Related Issues in Air Transportation | Notice | Request for Comments | 2015-02-06T05:00:00Z | 2015 | 2 | 2015-02-06T05:00:00Z | 2015-04-08T03:59:59Z | 2024-11-07T23:18:18Z | 2015-02405 | 1 | 0 | 09000064819f7dd9 |
| DOT-OST-2011-0022-0003 | DOT | None DOT-OST-2011-0022 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | Notice of Change | 2012-02-24T05:00:00Z | 2012 | 2 | 2012-02-24T05:00:00Z | 2012-03-27T03:59:59Z | 2024-11-12T04:39:23Z | 2012-04317 | 1 | 0 | 0900006480fc016c |
| DOT-OST-2011-0022-0001 | DOT | None DOT-OST-2011-0022 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: On-Line Complaint Form for Service-Related Issues in Air Transportation | Notice | Notice of Change | 2011-08-23T04:00:00Z | 2011 | 8 | 2011-08-23T04:00:00Z | 2011-10-25T03:59:59Z | 2011-08-23T13:51:02Z | 2011-21370 | 0 | 0 | 0900006480eea042 |
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;