Invalid ABI , please verify

Hi I have an error in my code that says invalid ABI
here is my abi
[{
“anonymous”: false,
“inputs”: [
{
“indexed”: true,
“internalType”: “bytes32”,
“name”: “categoryId”,
“type”: “bytes32”
},
{
“indexed”: false,
“internalType”: “string”,
“name”: “category”,
“type”: “string”
}
],
“name”: “CategoryCreated”,
“type”: “event”
},

that is all the abi that you have?
it doesn’t look like valid abi, it doesn’t have a closing bracket
you could try with something like this (but copy it from your source, not from here, because you need different quotes):

{
“anonymous”: false,
“inputs”: [
{
“indexed”: true,
“internalType”: “bytes32”,
“name”: “categoryId”,
“type”: “bytes32”
},
{
“indexed”: false,
“internalType”: “string”,
“name”: “category”,
“type”: “string”
}
],
“name”: “CategoryCreated”,
“type”: “event”
}