1{ 2 "intentName": "SetEBicycleLock", 3 "intentVersion": "1.0.2", 4 "llmDescription": "设置电动自行车锁", 5 "keywords": ["SetEBicycleLock"], 6 "domain": "NavigationDomain", 7 "parameters": { 8 "type": "object", 9 "propertyNames": { 10 "enum": [ 11 "operationType" 12 ] 13 }, 14 "required": [ 15 "operationType" 16 ], 17 "properties": { 18 "operationType": { 19 "description": "操作类型。Lock:上锁。Unlock:解锁。", 20 "type": "string", 21 "enum":[ 22 "Lock", 23 "Unlock" 24 ] 25 } 26 } 27 }, 28 "result": { 29 "type": "object", 30 "propertyNames": { 31 "enum": [ 32 "code", 33 "result", 34 "entityId", 35 "entityName", 36 "entityLogoURL", 37 "entityDisplayName", 38 "entityDescription", 39 "statusImageUrl" 40 ] 41 }, 42 "required": [ 43 "code", 44 "result", 45 "entityId", 46 "entityName", 47 "entityLogoURL", 48 "entityDisplayName" 49 ], 50 "properties": { 51 "code": { 52 "description": "意图调用返回的结果码,0代表成功。", 53 "type": "number" 54 }, 55 "result": { 56 "description": "意图调用返回的数据,如果无数据则返回空。", 57 "type": "object" 58 }, 59 "entityId": { 60 "description": "本次执行实例ID。", 61 "type": "string" 62 }, 63 "entityName": { 64 "description": "执行结果实体名称,固定内容。", 65 "type": "string" 66 }, 67 "entityLogoURL": { 68 "description": "执行结果主图片。", 69 "type": "string" 70 }, 71 "entityDisplayName": { 72 "description": "执行结果展示名称(主标题)。", 73 "type": "string" 74 }, 75 "entityDescription": { 76 "description": "执行结果实体描述。", 77 "type": "string" 78 }, 79 "statusImageUrl": { 80 "description": "执行结果状态图片。", 81 "type": "string" 82 } 83 } 84 } 85} 86