documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "DOT-OST-2010-0264" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-2010-0264-0008 | DOT | None DOT-OST-2010-0264 | Notice of Action Taken re: WhiteJets Transportes Aereos LTDA. | Other | Decision | 2011-12-21T05:00:00Z | 2011 | 12 | 2011-12-21T05:00:00Z | 2024-11-08T03:46:41Z | 1 | 0 | 0900006480f86ce4 | ||
| DOT-OST-2010-0264-0007 | DOT | None DOT-OST-2010-0264 | Whitejets Transportes Aereos Ltda. | Other | Letter(s) | 2011-12-14T05:00:00Z | 2011 | 12 | 2011-12-14T05:00:00Z | 2024-11-07T01:39:22Z | 1 | 0 | 0900006480f815c7 | ||
| DOT-OST-2010-0264-0006 | DOT | None DOT-OST-2010-0264 | Application of Whitejets Transportes Aéreos Ltda. for Amendment to Foreign Air Carrier Permit and an Exemption | Other | Application-SubPartB | 2011-12-08T05:00:00Z | 2011 | 12 | 2011-12-08T05:00:00Z | 2024-11-07T21:59:22Z | 1 | 0 | 0900006480f7c8d2 | ||
| DOT-OST-2010-0264-0005 | DOT | None DOT-OST-2010-0264 | 2011-3-15 Final Order | Other | Order | 2011-03-11T05:00:00Z | 2011 | 3 | 2011-03-11T05:00:00Z | 2011-03-11T15:33:55Z | 0 | 0 | 0900006480c05d7a | ||
| DOT-OST-2010-0264-0004 | DOT | None DOT-OST-2010-0264 | 2010-12-19 Order Granting Exemption and to Show Cause | Other | Order | 2010-12-15T05:00:00Z | 2010 | 12 | 2010-12-15T05:00:00Z | 2010-12-15T15:16:05Z | 0 | 0 | 0900006480bb71ab | ||
| DOT-OST-2010-0264-0003 | DOT | None DOT-OST-2010-0264 | Whitejets Transportes Aereos Ltda. | Other | Correspondence | 2010-11-22T05:00:00Z | 2010 | 11 | 2010-11-22T05:00:00Z | 2013-08-11T03:11:47Z | 0 | 0 | 0900006480b9b20d | ||
| DOT-OST-2010-0264-0002 | DOT | None DOT-OST-2010-0264 | Motion of Whitejets Transportes Aéreos Ltda. for Confidential Treatment Under Rule 12 of the Department's Rules of Practice | Other | Motion | 2010-10-25T04:00:00Z | 2010 | 10 | 2010-10-25T04:00:00Z | 2013-07-27T23:35:34Z | 0 | 0 | 0900006480b76f4e | ||
| DOT-OST-2010-0264-0001 | DOT | None DOT-OST-2010-0264 | Application of Whitejets Transportes Aereos Ltda for Foreign Permit/Exemption | Other | Application-SubPartB | 2010-10-22T04:00:00Z | 2010 | 10 | 2010-10-22T04:00:00Z | 2013-08-11T04:42:38Z | 0 | 0 | 0900006480b75811 |
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;