documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "DOT", document_type = "Proposed 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-2012-0147-0032 | DOT | None DOT-OST-2012-0147 | Disadvantaged Business Enterprise: Program Implementation Modifications | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2012-10-25T04:00:00Z | 2012 | 10 | 2012-10-25T04:00:00Z | 2012-12-25T04:59:59Z | 2024-11-11T20:43:37Z | 2012-26160 | 1 | 0 | 0900006481150293 |
| DOT-OST-2012-0147-0003 | DOT | None DOT-OST-2012-0147 | Disadvantaged Business Enterprise: Program Implementation Modifications | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2012-09-06T04:00:00Z | 2012 | 9 | 2012-09-06T04:00:00Z | 2012-11-06T04:59:59Z | 2024-11-11T20:40:56Z | 2012-21231 | 1 | 0 | 0900006481109196 |
| DOT-OST-2010-0211-3996 | DOT | None DOT-OST-2010-0211 | Reports by Air Carriers on Incidents Involving Animals During Air Transport | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2012-09-04T04:00:00Z | 2012 | 9 | 2012-09-04T04:00:00Z | 2012-09-28T03:59:59Z | 2024-01-24T14:58:28Z | 2012-21615 | 0 | 0 | 09000064811006b1 |
| DOT-OST-2012-0147-0001 | DOT | None DOT-OST-2012-0147 | Disadvantaged Business Enterprise: Program Implementation Modifications - (Federal Register Publication Original) | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2012-08-24T04:00:00Z | 2012 | 8 | 2012-08-24T04:00:00Z | 2014-01-01T02:03:12Z | 0 | 0 | 09000064810efebb | ||
| DOT-OST-2012-0098-0001 | DOT | None DOT-OST-2012-0098 | Nondiscrimination on Basis of Disability in Air Travel: Draft Technical Assistance Manual | Proposed Rule | Request for Comment | 2012-07-05T04:00:00Z | 2012 | 7 | 2012-07-05T04:00:00Z | 2012-10-04T03:59:59Z | 2020-02-09T07:42:39Z | 2012-15233 | 0 | 0 | 090000648107a966 |
| DOT-OST-2010-0211-0008 | DOT | None DOT-OST-2010-0211 | Reports by Air Carriers on Incidents Involving Animals During Air Transport | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2012-06-29T04:00:00Z | 2012 | 6 | 2012-06-29T04:00:00Z | 2012-08-29T03:59:59Z | 2024-01-24T14:57:25Z | 2012-16024 | 0 | 0 | 09000064810700e3 |
| DOT-OST-2009-0092-0225 | DOT | None DOT-OST-2009-0092 | Reporting of Ancillary Airline Passenger Revenues: Public Meeting | Proposed Rule | 2012-04-27T00:00:00Z | 2012 | 4 | 2012-05-07T16:43:15Z | 0 | 1 | 0900006480ffec05 |
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;