Answers Bracket Issue

As I’ve been working through Answer’s modules, I seem to be running into an issue on a number of assessments when working in search configuration.

This post speaks a little about it, saying that the issue derives from an extra bracket. However, in my module assessments, there isn’t an extra bracket. Only the last bracket is underlines with the error message ‘Resource file is not a valid JSON object’

I know this is a syntax error, and I’ve tried to parse through the collapsable groups to find something that sticks out. I’m also unable to save my work due to this - which is frustrating when trying to reference what exactly I’m doing wrong.

Heres an example from Module 13’s assessment: adding Community Stories as a vertical key

{
“$schema”: “https://schema.yext.com/config/answers/answers-config/v1”,
“$id”: “answers”,
“name”: “answers”,
“supportedLocales”: ,
“countryRestrictions”: ,
“verticals”: {
“communityStories”: {
“entityTypes”: [
“communityStories”
],
“name”: “Community Stories”,
“searchableFields”: {
“builtin.entityType”: {
“nlpFilter”: true
},
“name”: {
“textSearch”: true
},
“theme”: {
“nlpFilter”: true
},
“goal”: {
“textSearch”: true
}
},
“events”: {
“entityTypes”: [
“event”
],
“name”: “Events”,
“searchableFields”: {
“builtin.entityType”: {
“nlpFilter”: true
},
“name”: {
“textSearch”: true
}
},
“sortBys”: ,
“source”: “KNOWLEDGE_MANAGER”
},
“faqs”: {
“entityTypes”: [
“faq”
],
“name”: “FAQs”,
“savedSearchId”: “121202151”,
“searchableFields”: {
“builtin.entityType”: {
“nlpFilter”: true
},
“keywords”: {
“textSearch”: true
},
“name”: {
“textSearch”: true
}
},
“sortBys”: ,
“source”: “KNOWLEDGE_MANAGER”
},
“restaurants”: {
“entityTypes”: [
“restaurant”
],
“name”: “Restaurants”,
“savedSearchId”: “112002255”,
“searchableFields”: {
“builtin.entityType”: {
“nlpFilter”: true
},
“builtin.location”: {
“nlpFilter”: true
},
“c_promotingEvents.name”: {
“nlpFilter”: true
},
“mainPhone”: {
“directAnswer”: true
},
“name”: {
“textSearch”: true
}
},
“sortBys”: ,
“source”: “KNOWLEDGE_MANAGER”
}
},
“autocomplete”: {
“disablePopularQueries”: false,
“hardcodedPrompts”: [
“Restaurants near me”,
“Do you offer delivery?”,
“Events”,
“Do you sell gift cards?”,
“Community Stories”
]
},
“synonyms”: {
“oneWay”: [
{
“phrase”: “nest”,
“synonyms”: [
“restaurant”
]
}
],
“synonymSet”: [
[
“location”,
“restaurant”,
“food joint”,
“taco shop”,
“eatery”
]
],
“localizations”: {},
“additionalStopWords”:
}

^ this last bracket always has the corresponding error. Any idea on what I’m doing wrong here?

entityTypes of communityStories is wrong.