documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "DOT-OST-1996-1167" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, 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-1996-1167-0110 | DOT | Trans States Airlines - 90-Day Notice of Intent to Suspend Service at Fort Leonard Wood, Missouri DOT-OST-1996-1167 | 2012-11-35 Order Reselecting Carrier | Other | Order | 2012-11-30T05:00:00Z | 2012 | 11 | 2012-11-30T05:00:00Z | 2024-11-12T05:10:53Z | 1 | 0 | 090000648117a59a | ||
| DOT-OST-1996-1167-0109 | DOT | Trans States Airlines - 90-Day Notice of Intent to Suspend Service at Fort Leonard Wood, Missouri DOT-OST-1996-1167 | Waynesville-St. Robert Regional Airport Joint Advisory Board - Comments | Other | Correspondence | 2012-10-31T04:00:00Z | 2012 | 10 | 2012-10-31T04:00:00Z | 2024-11-11T20:42:42Z | 1 | 0 | 0900006481152704 | ||
| DOT-OST-1996-1167-0108 | DOT | Trans States Airlines - 90-Day Notice of Intent to Suspend Service at Fort Leonard Wood, Missouri DOT-OST-1996-1167 | Gary R. Chick | Other | Correspondence | 2012-10-12T04:00:00Z | 2012 | 10 | 2012-10-12T04:00:00Z | 2024-11-11T20:43:07Z | 1 | 0 | 090000648113d688 | ||
| DOT-OST-1996-1167-0107 | DOT | Trans States Airlines - 90-Day Notice of Intent to Suspend Service at Fort Leonard Wood, Missouri DOT-OST-1996-1167 | Department of the Army | Other | Correspondence | 2012-10-02T04:00:00Z | 2012 | 10 | 2012-10-02T04:00:00Z | 2024-11-12T05:07:43Z | 1 | 0 | 090000648112ffd4 | ||
| DOT-OST-1996-1167-0106 | DOT | Trans States Airlines - 90-Day Notice of Intent to Suspend Service at Fort Leonard Wood, Missouri DOT-OST-1996-1167 | City of Waynesville/City of St. Robert | Other | Correspondence | 2012-10-01T04:00:00Z | 2012 | 10 | 2012-10-01T04:00:00Z | 2024-11-12T05:05:53Z | 1 | 0 | 090000648112ffd3 | ||
| DOT-OST-1996-1167-0105 | DOT | Trans States Airlines - 90-Day Notice of Intent to Suspend Service at Fort Leonard Wood, Missouri DOT-OST-1996-1167 | Memorandum | Other | Memo | 2012-09-10T04:00:00Z | 2012 | 9 | 2012-09-10T04:00:00Z | 2024-11-11T20:43:59Z | 1 | 0 | 090000648110bdfd | ||
| DOT-OST-1996-1167-0104 | DOT | Trans States Airlines - 90-Day Notice of Intent to Suspend Service at Fort Leonard Wood, Missouri DOT-OST-1996-1167 | American Airlines, Inc. | Other | Correspondence | 2012-09-05T04:00:00Z | 2012 | 9 | 2012-09-05T04:00:00Z | 2024-11-11T20:42:28Z | 1 | 0 | 0900006481105e38 | ||
| DOT-OST-1996-1167-0102 | DOT | Trans States Airlines - 90-Day Notice of Intent to Suspend Service at Fort Leonard Wood, Missouri DOT-OST-1996-1167 | Air Choice One | Other | Proposal(s) | 2012-08-30T04:00:00Z | 2012 | 8 | 2012-08-30T04:00:00Z | 2024-11-11T20:41:34Z | 1 | 0 | 09000064810fb22a | ||
| DOT-OST-1996-1167-0103 | DOT | Trans States Airlines - 90-Day Notice of Intent to Suspend Service at Fort Leonard Wood, Missouri DOT-OST-1996-1167 | Hyannis Air Service, Inc. d/b/a Cape Air | Other | Proposal(s) | 2012-08-30T04:00:00Z | 2012 | 8 | 2024-11-11T20:41:35Z | 1 | 0 | 09000064810fb22c | |||
| DOT-OST-1996-1167-0101 | DOT | Trans States Airlines - 90-Day Notice of Intent to Suspend Service at Fort Leonard Wood, Missouri DOT-OST-1996-1167 | Notice Granting An Extension of Filing Date | Other | Decision | 2012-08-14T04:00:00Z | 2012 | 8 | 2012-08-14T04:00:00Z | 2012-08-14T19:51:51Z | 0 | 0 | 09000064810d837b | ||
| DOT-OST-1996-1167-0100 | DOT | Trans States Airlines - 90-Day Notice of Intent to Suspend Service at Fort Leonard Wood, Missouri DOT-OST-1996-1167 | 2012-7-19 Order Requesting Proposals | Other | Order | 2012-07-17T04:00:00Z | 2012 | 7 | 2012-07-17T04:00:00Z | 2024-11-07T22:42:17Z | 1 | 0 | 090000648109d8ab |
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;