Im getting this SyntaxError: /home/container/config.json: Unexpected token } in JSON at position 2769 error,
here’s my config.json
JavaScript
x
132
132
1
"discordGuildId":"775307362915450900",
2
"hypixelGuildId":"60a690798ea8c9bb7f6d9b30",
3
"colours":{
4
"main":"00FFF0",
5
"secondary":"202225",
6
"success":"00FF50",
7
"warning":"FFFF10",
8
"error":"FF1F00"
9
},
10
"roles":{
11
"guildMemberRole":"955388286539558932",
12
"helpers":[
13
"890624191508926505",
14
"959322231735996426"
15
],
16
"adminRole":[
17
"847067680791986208",
18
"890624191508926505"
19
]
20
},
21
"scheduledEvents":{
22
"leaderboardDataUpdate":"*/1 * */1 * *"
23
},
24
"channels":{
25
"logChannelId":"987630136767705158",
26
"appChannelId":"987630136767705158",
27
"queueChannelId":"841940876077826048",
28
"ticketCategoryId":"955423323095961710",
29
"starboardChannelId":"955423323095961710",
30
"memberCount":{
31
"discord":"960082737249796096",
32
"guild":"960082737249796096"
33
}
34
},
35
"emoji":{
36
"warning":"<:warning_emoji:868054485992357948>",
37
"error":"<:error_emoji:868054485946224680>",
38
"star":"<:GoldStar:905915895937892403>",
39
"log":"<:log_emoji:868054485933625346>",
40
"helpEmoji":"<:KannaSip:889543061821063189>",
41
"helpCommands":"<:slash:913172347639435285>",
42
"helpButtons":"<:button:913172562001928193>",
43
"helpMenus":"<:dropdown_select:914106174754947113>",
44
"github":"<:github:888155742719328276>",
45
"plus":"<:plus:888072519582634075>",
46
"minus":"<:minus:888072653003452516>"
47
},
48
"selectMenus":[
49
{
50
"name":"UNIQUE_STRING",
51
"description":"STRING",
52
"placeholder":"STRING",
53
"disabled":true,
54
"maxValues":"INTEGER",
55
"minValues":"INTEGER",
56
"options":[
57
{
58
"value":"UNIQUE_STRING-example_name_1",
59
"label":"STRING",
60
"description":"STRING",
61
"emoji":"EMOJI"
62
},
63
{
64
"value":"UNIQUE_STRING-example_name_2",
65
"label":"STRING",
66
"description":"STRING",
67
"emoji":"EMOJI"
68
},
69
{
70
"value":"UNIQUE_STRING-example_name_3",
71
"label":"STRING",
72
"description":"STRING",
73
"emoji":"EMOJI"
74
},
75
"..."
76
],
77
"actions":{
78
"UNIQUE_STRING-example_name_1":{
79
"actionType":"toggleRole",
80
"roleID":"DISCORDID"
81
},
82
"UNIQUE_STRING-example_name_2":{
83
"actionType":"removeRole",
84
"roleID":"DISCORDID"
85
},
86
"UNIQUE_STRING-example_name_3":{
87
"actionType":"addRole",
88
"roleID":"DISCORDID"
89
},
90
"..."
91
}, // error seems to be from like right here
92
},
93
"..."
94
],
95
"chatbridge":{
96
"enabled":true,
97
"channelId":"987630984541376533",
98
"webhook":"censored",
99
"messagelogging":{
100
"enabled":false,
101
"channelId":"DISCORDID"
102
},
103
"relogOnKick":{
104
"enabled":false,
105
"relogAmount":1
106
},
107
"serverJoinLeaveMessages":{
108
"enabled":true
109
},
110
"guildJoinLeaveMessages":{
111
"enabled":false,
112
"logging":false
113
},
114
"autoInviteOnApp":true
115
},
116
"url":{
117
"guild_staff_application":"URL",
118
"forums_post":"censored"
119
},
120
"guildAppReqs":{
121
"textReqs":[
122
150m nw,
123
650 weight
124
],
125
"minNetworkLevel":1
126
},
127
"starboard":{
128
"minimumCount":1
129
}
130
}
131
132
Can someone please help me fix this I am pretty sure I am supposed to add a : but i dont know how to fix this syntax error I dont understand what is wrong,
using node v16
Advertisement
Answer
You can use any online JSON validator, like this one. It’s output for your JSON:
So here is the fixed one:
JavaScript
1
130
130
1
{
2
"discordGuildId":"775307362915450900",
3
"hypixelGuildId":"60a690798ea8c9bb7f6d9b30",
4
"colours":{
5
"main":"00FFF0",
6
"secondary":"202225",
7
"success":"00FF50",
8
"warning":"FFFF10",
9
"error":"FF1F00"
10
},
11
"roles":{
12
"guildMemberRole":"955388286539558932",
13
"helpers":[
14
"890624191508926505",
15
"959322231735996426"
16
],
17
"adminRole":[
18
"847067680791986208",
19
"890624191508926505"
20
]
21
},
22
"scheduledEvents":{
23
"leaderboardDataUpdate":"*/1 * */1 * *"
24
},
25
"channels":{
26
"logChannelId":"987630136767705158",
27
"appChannelId":"987630136767705158",
28
"queueChannelId":"841940876077826048",
29
"ticketCategoryId":"955423323095961710",
30
"starboardChannelId":"955423323095961710",
31
"memberCount":{
32
"discord":"960082737249796096",
33
"guild":"960082737249796096"
34
}
35
},
36
"emoji":{
37
"warning":"<:warning_emoji:868054485992357948>",
38
"error":"<:error_emoji:868054485946224680>",
39
"star":"<:GoldStar:905915895937892403>",
40
"log":"<:log_emoji:868054485933625346>",
41
"helpEmoji":"<:KannaSip:889543061821063189>",
42
"helpCommands":"<:slash:913172347639435285>",
43
"helpButtons":"<:button:913172562001928193>",
44
"helpMenus":"<:dropdown_select:914106174754947113>",
45
"github":"<:github:888155742719328276>",
46
"plus":"<:plus:888072519582634075>",
47
"minus":"<:minus:888072653003452516>"
48
},
49
"selectMenus":[
50
{
51
"name":"UNIQUE_STRING",
52
"description":"STRING",
53
"placeholder":"STRING",
54
"disabled":true,
55
"maxValues":"INTEGER",
56
"minValues":"INTEGER",
57
"options":[
58
{
59
"value":"UNIQUE_STRING-example_name_1",
60
"label":"STRING",
61
"description":"STRING",
62
"emoji":"EMOJI"
63
},
64
{
65
"value":"UNIQUE_STRING-example_name_2",
66
"label":"STRING",
67
"description":"STRING",
68
"emoji":"EMOJI"
69
},
70
{
71
"value":"UNIQUE_STRING-example_name_3",
72
"label":"STRING",
73
"description":"STRING",
74
"emoji":"EMOJI"
75
},
76
"..."
77
],
78
"actions":{
79
"UNIQUE_STRING-example_name_1":{
80
"actionType":"toggleRole",
81
"roleID":"DISCORDID"
82
},
83
"UNIQUE_STRING-example_name_2":{
84
"actionType":"removeRole",
85
"roleID":"DISCORDID"
86
},
87
"UNIQUE_STRING-example_name_3":{
88
"actionType":"addRole",
89
"roleID":"DISCORDID"
90
}
91
}
92
}
93
],
94
"chatbridge":{
95
"enabled":true,
96
"channelId":"987630984541376533",
97
"webhook":"censored",
98
"messagelogging":{
99
"enabled":false,
100
"channelId":"DISCORDID"
101
},
102
"relogOnKick":{
103
"enabled":false,
104
"relogAmount":1
105
},
106
"serverJoinLeaveMessages":{
107
"enabled":true
108
},
109
"guildJoinLeaveMessages":{
110
"enabled":false,
111
"logging":false
112
},
113
"autoInviteOnApp":true
114
},
115
"url":{
116
"guild_staff_application":"URL",
117
"forums_post":"censored"
118
},
119
"guildAppReqs":{
120
"textReqs":[
121
'150m nw',
122
'650 weight'
123
],
124
"minNetworkLevel":1
125
},
126
"starboard":{
127
"minimumCount":1
128
}
129
}
130