documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "DOT", document_type = "Rule" and posted_year = 2015 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), 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-0424 | DOT | None DOT-OST-2009-0092 | Uniform Administrative Requirements, Cost Principles, and Audit Requirements for Federal Awards, | Rule | Final Rule | 2015-12-17T05:00:00Z | 2015 | 12 | 2015-12-17T05:00:00Z | 2015-12-17T16:26:26Z | 2015-31076 | 0 | 0 | 0900006481db6c4d | |
| DOT-OST-2009-0092-0421 | DOT | None DOT-OST-2009-0092 | (To Submit Comments see FAA-2015-4378) Clarification of Applicability of Aircraft Registration Requirements for Unmanned Aircraft Systems and Request for Information Regarding Electronic Registration | Rule | Final Rule with Request for Comments | 2015-10-22T04:00:00Z | 2015 | 10 | 2015-10-22T04:00:00Z | 2015-10-22T19:03:24Z | 2015-26874 | 0 | 0 | 0900006481ce084c | |
| DOT-OST-2011-0182-0486 | DOT | None DOT-OST-2011-0182 | Nondiscrimination on the Basis of Disability in Programs or Activities Receiving Federal Financial Assistance: U.S. Airports | Rule | Final Rule | 2015-08-05T04:00:00Z | 2015 | 8 | 2015-08-05T04:00:00Z | 2024-11-12T05:39:33Z | 2015-19078 | 1 | 0 | 0900006481bc3bda | |
| DOT-OST-2014-0142-0002 | DOT | None DOT-OST-2014-0142 | Maintenance of and Access to Records Pertaining to Individuals | Rule | Final Rule | 2015-06-05T04:00:00Z | 2015 | 6 | 2015-06-05T04:00:00Z | 2015-06-05T14:17:13Z | 2015-13760 | 0 | 0 | 0900006481b1cc83 | |
| DOT-OST-2015-0104-0001 | DOT | None DOT-OST-2015-0104 | Denied Boarding Compensation, Domestic Baggage Liability Limits, and Civil Penalty Amounts; Revisions | Rule | Final Rule | 2015-05-27T04:00:00Z | 2015 | 5 | 2015-05-27T04:00:00Z | 2024-11-07T23:23:20Z | 2015-12789 | 1 | 0 | 0900006481b0486e | |
| DOT-OST-2006-23985-0398 | DOT | None DOT-OST-2006-23985 | Transportation for Individuals With Disabilities: Reasonable Modification of Policies and Practices; Correction | Rule | Final Rule | 2015-05-07T04:00:00Z | 2015 | 5 | 2015-05-07T04:00:00Z | 2015-05-07T12:55:51Z | 2015-10991 | 0 | 0 | 0900006481ad27d9 | |
| DOT-OST-2015-0045-0001 | DOT | None DOT-OST-2015-0045 | Use of Electronic Chain of Custody and Control Form in DOT-Regulated Drug Testing Programs | Rule | Final Rule | 2015-04-13T04:00:00Z | 2015 | 4 | 2015-04-13T04:00:00Z | 2015-04-13T13:52:38Z | 2015-08256 | 0 | 0 | 0900006481aa13ff | |
| DOT-OST-2006-23985-0397 | DOT | None DOT-OST-2006-23985 | Transportation for Individuals with Disabilities; Reasonable Modification of Policies and Practices | Rule | Final Rule | 2015-03-13T04:00:00Z | 2015 | 3 | 2015-03-13T04:00:00Z | 2015-03-13T14:52:30Z | 2015-05646 | 0 | 0 | 0900006481a42713 | |
| DOT-OST-2014-0231-0002 | DOT | None DOT-OST-2014-0231 | Carriage of Musical Instruments | Rule | Final Rule | 2015-01-05T05:00:00Z | 2015 | 1 | 2015-01-05T05:00:00Z | 2018-04-13T01:02:27Z | 2014-30836 | 0 | 0 | 09000064819a38ad |
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;