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 = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, subtype, posted_month, open_for_comment, withdrawn, 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-2010-0298-0003 | DOT | None DOT-OST-2010-0298 | Defense Production Act: Prioritization and Allocation Authority Exercised by the Secretary of Transportation | Rule | Confirmation of Effective Date | 2012-11-21T05:00:00Z | 2012 | 11 | 2012-11-21T05:00:00Z | 2012-11-21T14:56:48Z | 2012-28303 | 0 | 0 | 090000648116fd2f | |
| DOT-OST-2010-0026-0045 | DOT | None DOT-OST-2010-0026 | Procedures for Transportation Workplace Drug and Alcohol Testing Programs: 6-acetylmorphine (6-AM) Testing | Rule | Final Rule | 2012-10-03T04:00:00Z | 2012 | 10 | 2012-10-03T04:00:00Z | 2024-11-12T05:06:33Z | 2012-24337 | 1 | 0 | 09000064811325b6 | |
| DOT-OST-2010-0298-0002 | DOT | None DOT-OST-2010-0298 | Prioritization and Allocation Authority Exercised by Secretary of Transportation under Defense Production Act | Rule | Final Rule with Request for Comments | 2012-10-01T04:00:00Z | 2012 | 10 | 2012-10-01T04:00:00Z | 2012-11-01T03:59:59Z | 2024-11-12T05:05:44Z | 2012-23789 | 1 | 0 | 090000648112ef8b |
| DOT-OST-2012-0123-0001 | DOT | None DOT-OST-2012-0123 | Organization and Delegation of Powers and Duties | Rule | Final Rule | 2012-08-17T04:00:00Z | 2012 | 8 | 2012-08-17T04:00:00Z | 2012-08-17T13:57:15Z | 2012-19397 | 0 | 0 | 09000064810e10f4 | |
| DOT-OST-2009-0092-0242 | DOT | None DOT-OST-2009-0092 | Removal of Category IIIa, IIIb, and IIIc Definitions: Confirmation of Effective Date; Response to Public Comments | Rule | 2012-07-03T04:00:00Z | 2012 | 7 | 2012-07-03T04:00:00Z | 2012-07-05T14:09:38Z | 2012-16280 | 0 | 0 | 0900006481077f58 | ||
| DOT-OST-2011-0101-0014 | DOT | None DOT-OST-2011-0101 | Airport Concessions Disadvantaged Business Enterprise: Program Improvements | Rule | Final Rule | 2012-06-20T04:00:00Z | 2012 | 6 | 2012-06-20T04:00:00Z | 2024-11-07T22:41:28Z | 2012-14893 | 1 | 0 | 0900006481059350 | |
| DOT-OST-2010-0026-0042 | DOT | None DOT-OST-2010-0026 | Procedures for Transportation Workplace Drug and Alcohol Testing Programs: 6-acetylmorphine (6-AM) Testing | Rule | Interim Final Rule | 2012-05-08T04:00:00Z | 2012 | 5 | 2012-05-08T04:00:00Z | 2012-06-05T03:59:59Z | 2012-06-05T02:02:09Z | 2012-10665 | 0 | 0 | 0900006481007a3d |
| DOT-OST-2011-0026-0004 | DOT | None DOT-OST-2011-0026 | Procedures for Transportation Workplace Drug and Alcohol Testing Programs: 6-acetylmorphine (6-AM) Testing | Rule | 2012-05-04T00:00:00Z | 2012 | 5 | 2012-05-08T14:00:02Z | 0 | 1 | 0900006481004fd9 | ||||
| DOT-OST-1996-1437-0282 | DOT | Notice of Proposed Rulemaking - Privacy Act; Maintenance of and Access to Records Pertaining to Individuals; Amendment DOT-OST-1996-1437 | Privacy Act; Implementation of Exemptions: DOT/ALL 24 - Departmental Office of Civil Rights System System of Records | Rule | Final Rule | 2012-04-03T04:00:00Z | 2012 | 4 | 2012-04-03T04:00:00Z | 2012-04-03T14:13:59Z | 2012-07980 | 0 | 0 | 0900006480fe7794 |
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;