• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  "intentName": "ViewMarriageRegistration",
3  "intentVersion": "1.0.1",
4  "llmDescription": "查看婚姻登记",
5  "keywords": ["ViewMarriageRegistration"],
6  "domain": "LifestyleDomain",
7  "parameters": {
8    "type": "object",
9    "propertyNames": {
10      "enum": [
11        "city",
12        "type"
13      ]
14    },
15    "properties": {
16      "city": {
17        "description": "查询城市信息。",
18        "type": "string"
19      },
20      "type": {
21        "description": "婚姻登记类型。",
22        "type": "string",
23        "enum": [
24          "Marriage",
25          "Divorce"
26        ],
27        "default": "Marriage"
28      }
29    }
30  },
31  "result": {
32    "type": "object",
33    "propertyNames": {
34      "enum": [
35        "code",
36        "result"
37      ]
38    },
39    "required": [
40      "code",
41      "result"
42    ],
43    "properties": {
44      "code": {
45        "description": "意图调用返回的结果码,0代表成功。",
46        "type": "number"
47      },
48      "result": {
49        "description": "意图调用返回的数据,如果无数据则返回空。",
50        "type": "object"
51      }
52    }
53  }
54}
55