forked from MegaPortal/spellboard-reveal-js-intent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintents.json
31 lines (31 loc) · 896 Bytes
/
intents.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "Fortune Telling",
"description": "A simple API to provide fortune-telling results.",
"intents": [
{
"name": "get_fortune",
"description": "Get a random fortune-telling result.",
"parameters": {
"type": "object",
"properties": {},
"required": []
},
"async": true,
"link": "/?fortune={fortune}",
"example": "/?fortune=0",
"preferredSize": {
"width": 640,
"height": 480
},
"returns": {
"type": "object",
"properties": {
"response": {
"type": "string",
"description": "The fortune-telling result."
}
}
}
}
]
}