1{ 2 "intentName": "StartMeeting", 3 "intentVersion": "1.0.1", 4 "llmDescription": "进入会议", 5 "keywords": ["StartMeeting"], 6 "domain": "BusinessDomain", 7 "parameters": { 8 "type": "object", 9 "propertyNames": { 10 "enum": [ 11 "conferenceId", 12 "participantIds", 13 "conferenceType" 14 ] 15 }, 16 "properties": { 17 "conferenceId": { 18 "description": "会议唯一ID。", 19 "type": "string" 20 }, 21 "participantIds": { 22 "description": "与会人列表,对应联系人实体的entityId。", 23 "type": "array", 24 "items":{ 25 "type":"string", 26 "description":"联系人实体ID" 27 } 28 }, 29 "conferenceType": { 30 "description": "会议类型。Video:视频。Audio:音频。", 31 "type": "string" 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