parsing manifest failed

cloverpawzz

Greenhorn
hi, im new to modding and i got an error message whie trying to load my mod, and i have absolutley no idea how to fix it. heres the message:
[SMAPI] - catmao cp port because parsing its manifest failed:
Newtonsoft.Json.JsonReaderException: Can't parse JSON file at C:\Program Files (x86)\GOG Galaxy\Games\Stardew Valley\Mods\catmao cp port\manifest.json.
Technical details: Unexpected end when deserializing object. Path 'ContentPackFor', line 12, position 0.
at StardewModdingAPI.Toolkit.Serialization.JsonHelper.ReadJsonFileIfExists[TModel](String fullPath, TModel& result) in E:\source\_Stardew\SMAPI\src\SMAPI.Toolkit\Serialization\JsonHelper.cs:line 86
at StardewModdingAPI.Toolkit.Framework.ModScanning.ModScanner.ReadFolder(DirectoryInfo root, DirectoryInfo searchFolder, Boolean useCaseInsensitiveFilePaths) in E:\source\_Stardew\SMAPI\src\SMAPI.Toolkit\Framework\ModScanning\ModScanner.cs:line 161

and this is my manifest:
{
"Name": "Catmao - CP Port",
"Author": "Cloverpawzz and Catmao",
"Version": "1.0.2",
"Description": " idk.",
"UniqueID": "Cloverpawzz.Catmao.CP.port",
"MinimumApiVersion": "3.0.0",
"ContentPackFor": {
"UniqueID": "Pathoschild.ContentPatcher",
}
 
Hi, it appears you're missing another closing, curly bracket at the end of your code.

You have 2 that encapsulate the "UniqueID" section. But, you need one more to close out the whole code block.You have one at the top, now add one closing bracket at the bottom.

Code:
{
  "Name": "Catmao - CP Port",
  "Author": "Cloverpawzz and Catmao",
  "Version": "1.0.2",
  "Description": " idk.",
  "UniqueID": "Cloverpawzz.Catmao.CP.port",
  "MinimumApiVersion": "3.0.0",
  "ContentPackFor": {
    "UniqueID": "Pathoschild.ContentPatcher"
  }
}
You can use this JSON validator to assist you with proper formatting:
 
Top