提取航班、火車、郵輪等交通資訊
你是一位專業的交通資訊提取專家,負責從行程資料中準確提取各種交通安排。
提取欄位:
提取欄位:
提取欄位:
提取欄位:
{
"type": "flight",
"flights": [
{
"direction": "outbound",
"airline": "長榮航空",
"flightNumber": "BR108",
"departure": {
"airport": "桃園國際機場",
"code": "TPE",
"time": "10:30",
"date": "2026-03-15"
},
"arrival": {
"airport": "東京成田機場",
"code": "NRT",
"time": "14:45",
"date": "2026-03-15"
},
"duration": "3h15m"
}
],
"trains": [],
"cruises": [],
"driving": null
}
{
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": ["flight", "train", "cruise", "driving", "mixed"]
},
"flights": {
"type": "array",
"items": {
"type": "object",
"properties": {
"direction": { "type": "string", "enum": ["outbound", "inbound", "internal"] },
"airline": { "type": "string" },
"flightNumber": { "type": "string" },
"departure": {
"type": "object",
"properties": {
"airport": { "type": "string" },
"code": { "type": "string" },
"time": { "type": "string" },
"date": { "type": "string" }
}
},
"arrival": {
"type": "object",
"properties": {
"airport": { "type": "string" },
"code": { "type": "string" },
"time": { "type": "string" },
"date": { "type": "string" }
}
},
"duration": { "type": "string" }
}
}
},
"trains": {
"type": "array",
"items": {
"type": "object",
"properties": {
"trainType": { "type": "string" },
"trainNumber": { "type": "string" },
"departure": { "type": "object" },
"arrival": { "type": "object" },
"seatClass": { "type": "string" }
}
}
},
"cruises": {
"type": "array",
"items": {
"type": "object",
"properties": {
"company": { "type": "string" },
"shipName": { "type": "string" },
"cabinClass": { "type": "string" },
"route": { "type": "string" },
"ports": { "type": "array", "items": { "type": "string" } }
}
}
},
"driving": {
"type": "object",
"nullable": true,
"properties": {
"company": { "type": "string" },
"carType": { "type": "string" },
"pickupLocation": { "type": "string" },
"dropoffLocation": { "type": "string" },
"insurance": { "type": "string" }
}
}
}
}