• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  "intentName": "ViewBlog",
3  "intentVersion": "1.0.1",
4  "llmDescription": "查看资讯博客",
5  "keywords": ["ViewBlog"],
6  "domain": "NewsDomain",
7  "parameters": {
8    "type": "object",
9    "propertyNames": {
10      "enum": [
11        "entityId",
12        "blogCategory"
13      ]
14    },
15    "properties": {
16      "entityId": {
17        "description": "数据唯一标识,限长64个字符。",
18        "type": "string"
19      },
20      "blogCategory": {
21        "description": "资讯博客频道分类,如:旅行、生活、军事、科技、文化、美食、汽车。",
22        "type": "string"
23      }
24    }
25  },
26  "result": {
27    "type": "object",
28    "propertyNames": {
29      "enum": [
30        "code",
31        "result"
32      ]
33    },
34    "required": [
35      "code",
36      "result"
37    ],
38    "properties": {
39      "code": {
40        "description": "意图调用返回的结果码,0代表成功。",
41        "type": "number"
42      },
43      "result": {
44        "description": "意图调用返回的数据,如果无数据则返回空。",
45        "type": "object"
46      }
47    }
48  }
49}
50