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