I am trying to update my firebase rules and for some reason I am being hit with this warning. I have looked into json validators but no luck
Error saving rules - Line 6: Expected '}'.
{
"rules": {
".read": "auth.uid != null",
".write": "auth.uid != null"
},
"users": {
"$uid": {
".read": "auth.uid != null",
".write": "auth != null && auth.uid == $uid"
}
},
"usersWipes" : {
"$uid": {
".read": "auth.uid != null",
".write": "auth != null && auth.uid == $uid"
}
},
"user-messages": {
"$uid": {
".read": "auth.uid != null",
".write": "auth != null && auth.uid == $uid"
}
},
"stripe_customers": {
"$uid": {
".read": "auth != null && auth.uid == $uid",
".write": "auth != null && auth.uid == $uid"
}
},
"notifications": {
"$uid": {
".read": "auth != null",
".write": "auth != null && auth.uid == $uid"
}
},
"messages": {
"$uid": {
".read": "auth != null",
".write": "auth != null && auth.uid == $uid"
}
},
"jobPost": {
"$uid": {
".read": "auth != null",
".write": "auth != null"
}
},
"reportedJobs": {
"$uid": {
".read": "auth != null && auth.uid == $uid",
".write": "auth != null"
}
},
"deletedAccounts": {
"$uid": {
".write": "auth != null && auth.uid == $uid"
}
}
}
I have tried using google gemini and chat as well as reaching google directly but no luck. What’s going wrong here?