I'm Brand New and Not Sure where I messed up

appleschloss

Newcomer
Okay so I've been slowly building a mod that adds a few fish and minerals to the game. I used a combination of tutorials and referencing other mods to try and build it. I'm at a point where I *think* I have it done but now most of my .json files, once loading through SMAPI, aren't parsing. I'm utilizing the .JSON checker but I'm unsure what I need here-

https://smapi.io/json/content-patcher/72569426e07a4659b3cc90dbb09f15f6

It mentions "Format" in line 1 but I'm unsure what I did wrong. Any help would be appreciated! Sorry if its something obvious. My brain is turning to mush with all I've been trying to learn to make this lol.
 

Justin123

Newcomer
The closing square bracket and comma in add ore -> extra items have been commented out
current line
"ExtraItems": [ //optional: extra items to drop ],
should be
"ExtraItems": [], //optional: extra items to drop
 
Top