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