• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  "intentName": "ViewInsurancePolicy",
3  "intentVersion": "1.0.1",
4  "llmDescription": "查看保单",
5  "keywords": ["ViewInsurancePolicy"],
6  "domain": "FinanceDomain",
7  "parameters": {
8    "type": "object",
9    "propertyNames": {
10      "enum": [
11        "entityId",
12        "insuranceType"
13      ]
14    },
15    "properties": {
16      "entityId": {
17        "description": "数据唯一标识。",
18        "type": "string",
19        "maxLength": 64
20      },
21      "insuranceType": {
22        "description": "保险类型。Car:车险。TrafficCompulsory:交强险。Health:健康险。Accident:意外险。Property:财产险。Travel:旅行险。Pet:宠物险。Enterprise:企业险。",
23        "type": "string",
24        "enum":[
25          "Car",
26          "TrafficCompulsory",
27          "Health",
28          "Accident",
29          "Property",
30          "Travel",
31          "Pet",
32          "Enterprise"
33        ]
34      }
35    }
36  },
37  "result": {
38    "type": "object",
39    "propertyNames": {
40      "enum": [
41        "code",
42        "result"
43      ]
44    },
45    "required": [
46      "code",
47      "result"
48    ],
49    "properties": {
50      "code": {
51        "description": "意图调用返回的结果码,0代表成功。",
52        "type": "number"
53      },
54      "result": {
55        "description": "意图调用返回的数据,如果无数据则返回空。",
56        "type": "object"
57      }
58    }
59  }
60}
61