This repository has been archived by the owner on Apr 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathConfiguration.json
65 lines (64 loc) · 2.07 KB
/
Configuration.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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"discord": {
"description": "Discord webhook URL or bot token",
"properties": {
"channel_id": {
"description": "Discord channel ID (required if using bot)",
"type": "string"
},
"prefix": {
"description": "Discord message prefix",
"type": "string"
},
"suffix": {
"description": "Discord message suffix",
"type": "string"
},
"token": {
"description": "Discord bot token (required if using bot)",
"type": "string"
},
"webhook_url": {
"description": "Discord webhook URL (required if using webhook)",
"type": "string"
}
},
"type": "object"
},
"twitter": {
"description": "Twitter API keys",
"properties": {
"access_token": {
"description": "Twitter API (v1) access token",
"type": "string"
},
"access_token_secret": {
"description": "Twitter API (v1) access token secret",
"type": "string"
},
"consumer_key": {
"description": "Twitter API (v1) consumer key",
"type": "string"
},
"consumer_secret": {
"description": "Twitter API (v1) consumer secret",
"type": "string"
}
},
"required": [
"access_token",
"access_token_secret",
"consumer_key",
"consumer_secret"
],
"type": "object"
}
},
"required": [
"discord",
"twitter"
],
"type": "object"
}