Named entity recognition requests
The JSON object that constitutes the payload of requests for named entity recognition must be like this:
{
"document": {
"text": "Your text here."
},
"options": {
"analysis": [
"entities"
],
"features": [
"knowledge",
"dependency",
"syncpos"
]
}
}