Complete the code snippet to correctly configure an Azure Cognitive Search skill for entity recognition, ensuring the 'categories' include `Locations`, `Persons`, and `Organizations`.
{
"@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill",
"categories": {{slot1}},
"defaultLanguageCode": "en",
"includeTypelessEntities": true,
"minimumPrecision": 0.7,
"inputs": [
{
"name": "text",
"source": "/document/content"
}
],
"outputs": [
{"name": "persons", "targetName": "people"},
{"name": "locations", "targetName": "locations"},
{"name": "organizations", "targetName": "organizations"}
]
}Correct slot values