1{ 2 "intentName": "JumpFunctionPage", 3 "intentVersion": "1.0.1", 4 "llmDescription": "跳转app功能页面", 5 "keywords": ["JumpFunctionPage"], 6 "domain": "ToolsDomain", 7 "parameters": { 8 "type": "object", 9 "propertyNames": { 10 "enum": [ 11 "pageId" 12 ] 13 }, 14 "required": [ 15 "pageId" 16 ], 17 "properties": { 18 "pageId": { 19 "description": "具体功能的标识。", 20 "type": "string" 21 } 22 } 23 }, 24 "result": { 25 "type": "object", 26 "propertyNames": { 27 "enum": [ 28 "code", 29 "result" 30 ] 31 }, 32 "required": [ 33 "code", 34 "result" 35 ], 36 "properties": { 37 "code": { 38 "description": "意图调用返回的结果码,0代表成功。", 39 "type": "number" 40 }, 41 "result": { 42 "description": "意图调用返回的数据,如果无数据则返回空。", 43 "type": "object" 44 } 45 } 46 } 47} 48