-
Notifications
You must be signed in to change notification settings - Fork 1
/
database.json
75 lines (74 loc) · 1.8 KB
/
database.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"version":0.1,
"messages":[
{
"category": "Help",
"prefixes":["help"],
"prefixMandatory":true,
"case":false,
"formats":[],
"postfixes":[],
"response":"There is two ways I can help you. Either say hi! or \n Order <block code>"
},
{
"category": "greetings",
"prefixes":[],
"case":false,
"formats":["hi","hello","hey","what's up"],
"postfixes":["!"],
"response":"What's up buddy!?!?!"
},
{
"category": "HowAreYou",
"prefixes":[],
"case":false,
"formats":["how's it going","How are you","what is going on"],
"postfixes":["!"],
"response":"Good. How are you?"
},
{
"category": "HowAreYouResponse",
"prefixes":[],
"case":false,
"formats":["Good","I am good","Awesome","I am awesome"],
"postfixes":["!"],
"response":"Good to know. Take care."
},
{
"category": "Show Justickets Order",
"prefixes":["Show me the order","Order "],
"prefixMandatory":true,
"case":false,
"formats":[],
"postfixes":[],
"response":""
},
{
"category": "Show Justickets Bill",
"prefixes":["Show me the bill","bill "],
"prefixMandatory":true,
"case":false,
"formats":[],
"postfixes":[],
"response":""
},
{
"category": "Staging Report is Down",
"prefixes":[],
"prefixMandatory":false,
"case":false,
"formats":["JT-Staging-Reports-v2 is missing","staging report sync activity"],
"postfixes":[],
"response":""
},
{
"category": "Report is Down",
"prefixes":[],
"prefixMandatory":false,
"case":false,
"formats":["JT-Reports is missing","report sync activity"],
"postfixes":[],
"response":""
}
]
}