documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "DOT-OST-2018-0068" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, 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-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-2018-0068-32398 | DOT | None DOT-OST-2018-0068 | Traveling by Air with Service Animals Final Rule (FR) | Other | Supplement (SUP) | 2020-12-02T05:00:00Z | 2020 | 12 | 2020-12-02T05:00:00Z | 2020-12-02T15:28:35Z | 0 | 0 | 09000064849815e6 | ||
| DOT-OST-2018-0068-32399 | DOT | None DOT-OST-2018-0068 | Traveling by Air with Service Animals (FR) - Regulatory Impact Analysis (November 2020) | Supporting & Related Material | Regulatory Analysis | 2020-12-02T05:00:00Z | 2020 | 12 | 2020-12-02T15:30:14Z | 0 | 0 | 09000064849815e8 | |||
| DOT-OST-2018-0068-22945 | DOT | None DOT-OST-2018-0068 | Ex Parte Correspondence to International Association of Canine Professionals | Other | Correspondence | 2020-05-14T04:00:00Z | 2020 | 5 | 2020-05-14T04:00:00Z | 2020-05-14T18:18:58Z | 0 | 0 | 09000064845fc583 | ||
| DOT-OST-2018-0068-22946 | DOT | None DOT-OST-2018-0068 | Ex Parte Correspondence to Allie Epstein | Other | Correspondence | 2020-05-14T04:00:00Z | 2020 | 5 | 2020-05-14T04:00:00Z | 2020-05-14T18:21:33Z | 0 | 0 | 09000064845fc584 | ||
| 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-2018-0068-19419 | DOT | None DOT-OST-2018-0068 | Denial of Request for Extension of Comment Period | Other | Agency Response | 2020-04-07T04:00:00Z | 2020 | 4 | 2020-04-07T04:00:00Z | 2020-04-07T13:51:30Z | 0 | 0 | 090000648448f5cd | ||
| 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-2018-0068-4792 | DOT | None DOT-OST-2018-0068 | Traveling by Air with Service Animals (NPRM) - Regulatory Evaluation (January 2020) | Supporting & Related Material | Regulatory Analysis | 2020-01-22T05:00:00Z | 2020 | 1 | 2020-12-02T13:24:47Z | 0 | 0 | 09000064842d898e | |||
| DOT-OST-2018-0068-4724 | DOT | None DOT-OST-2018-0068 | Traveling by Air with Service Animals Notice of Proposed Rulemaking (NPRM) | Other | Supplement (SUP) | 2020-01-22T05:00:00Z | 2020 | 1 | 2020-01-22T05:00:00Z | 2020-02-06T02:01:23Z | 0 | 0 | 09000064842d3d83 |
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;