• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  "intentName": "ViewLogistics",
3  "intentVersion": "1.0.1",
4  "llmDescription": "查看快递",
5  "keywords": ["ViewLogistics"],
6  "domain": "LifestyleDomain",
7  "parameters": {
8    "type": "object",
9    "propertyNames": {
10      "enum": [
11        "trackingNo",
12        "entityId"
13      ]
14    },
15    "properties": {
16      "trackingNo": {
17        "description": "快递单号,空则停留在首页。",
18        "maxLength": 64,
19        "type": "string"
20      },
21      "entityId": {
22        "description": "快递实体ID,查询场景下默认使用该字段回传打开。",
23        "maxLength": 64,
24        "type": "string"
25      }
26    }
27  },
28  "result": {
29    "type": "object",
30    "propertyNames": {
31      "enum": [
32        "code",
33        "result"
34      ]
35    },
36    "required": [
37      "code",
38      "result"
39    ],
40    "properties": {
41      "code": {
42        "description": "意图调用返回的结果码,0代表成功。",
43        "type": "number"
44      },
45      "result": {
46        "description": "意图调用返回的数据,如果无数据则返回空。",
47        "type": "object"
48      }
49    }
50  }
51}
52