• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  "intentName": "ReadBook",
3  "intentVersion": "1.0.1",
4  "llmDescription": "阅读书籍",
5  "keywords": ["ReadBook"],
6  "domain": "BooksDomain",
7  "parameters": {
8    "type": "object",
9    "propertyNames": {
10      "enum": [
11        "entityId"
12      ]
13    },
14    "required": [
15      "entityId"
16    ],
17    "properties": {
18      "entityId": {
19          "description": "数据唯一标识,书籍id。",
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