{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-comprehend/refs/heads/main/json-schema/openapi.yml-batch-detect-targeted-sentiment-response-schema.json",
"title": "BatchDetectTargetedSentimentResponse",
"description": "BatchDetectTargetedSentimentResponse schema",
"type": "object",
"properties": {
"ResultList": {
"allOf": [
{
"$ref": "#/components/schemas/ListOfDetectTargetedSentimentResult"
},
{
"description": "A list of objects containing the results of the operation. The results are sorted in ascending order by the <code>Index</code> field and match the order of the documents in the input list. If all of the documents contain an error, the <code>ResultList</code> is empty."
}
]
},
"ErrorList": {
"allOf": [
{
"$ref": "#/components/schemas/BatchItemErrorList"
},
{
"description": "List of errors that the operation can return."
}
]
}
},
"required": [
"ResultList",
"ErrorList"
]
}