• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  "intentName": "PlayMusicList",
3  "intentVersion": "1.0.2",
4  "llmDescription": "播放歌单",
5  "keywords": ["PlayMusicList"],
6  "domain": "MediaDomain",
7  "parameters": {
8    "type": "object",
9    "propertyNames": {
10      "enum": [
11        "entityId",
12        "entityGroupId",
13        "sceneType",
14        "city"
15      ]
16    },
17    "properties": {
18      "entityId": {
19        "description": "数据唯一标识。",
20        "type": "string"
21      },
22      "entityGroupId": {
23        "description": "用于确定歌单的ui形式(每日私享30首、排行榜、新歌推荐,type=公开的歌单,但UI不同)。",
24        "type": "string"
25      },
26      "sceneType": {
27        "description": "场景名称。",
28        "type": "string",
29        "enum": [
30          "MORNING_SCENE",
31          "MIDDAY_SCENE",
32          "EVENNING_SCENE",
33          "NIGHT_SCENE",
34          "WEEKEND_SCENE",
35          "FESTIVAL_SCENE",
36          "BIRTHDAY_SCENE",
37          "ANNIEVERSARIE_SCENE",
38          "DRIVE_SCENE",
39          "SUBWAY_SCENE",
40          "TRAVEL_SCENE",
41          "CITY_SCENE"
42        ]
43      },
44      "city": {
45        "description": "城市名。",
46        "type": "string",
47        "enum": [
48          "北京市",
49          "沈阳市"
50        ]
51      }
52    }
53
54  },
55  "result": {
56    "type": "object",
57    "propertyNames": {
58      "enum": [
59        "code",
60        "result"
61      ]
62    },
63    "required": [
64      "code",
65      "result"
66    ],
67    "properties": {
68      "code": {
69        "description": "意图调用返回的结果码,0代表成功。",
70        "type": "number"
71      },
72      "result": {
73        "description": "意图调用返回的数据,如果无数据则返回空。",
74        "type": "object"
75      }
76    }
77  }
78}
79