1{ 2 "intentName": "ViewFlightTicket", 3 "intentVersion": "1.0.1", 4 "llmDescription": "查看机票", 5 "keywords": ["ViewFlightTicket"], 6 "domain": "NavigationDomain", 7 "parameters": { 8 "type": "object", 9 "propertyNames": { 10 "enum": [ 11 "entityId", 12 "cabin" 13 ] 14 }, 15 "required": [ 16 "entityId" 17 ], 18 "properties": { 19 "entityId": { 20 "description": "数据唯一标识。", 21 "type": "number" 22 }, 23 "cabin": { 24 "description": "舱位:经济舱、头等舱、公务舱、超级经济舱。", 25 "type": "string", 26 "enum": [ 27 "经济舱", 28 "头等舱", 29 "公务舱", 30 "超级经济舱" 31 ] 32 } 33 } 34 }, 35 "result": { 36 "type": "object", 37 "propertyNames": { 38 "enum": [ 39 "code", 40 "result" 41 ] 42 }, 43 "required": [ 44 "code", 45 "result" 46 ], 47 "properties": { 48 "code": { 49 "description": "意图调用返回的结果码,0代表成功。", 50 "type": "number" 51 }, 52 "result": { 53 "description": "意图调用返回的数据,如果无数据则返回空。", 54 "type": "object" 55 } 56 } 57 } 58} 59