Amazon Comprehend · Schema

BatchDetectTargetedSentimentItemResult

Analysis results for one of the documents in the batch.

Machine LearningNatural Language ProcessingNLPText Analysis

Properties

Name Type Description
Index object
Entities object
View JSON Schema on GitHub

JSON Schema

openapi.yml-batch-detect-targeted-sentiment-item-result-schema.json Raw ↑
{
  "$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-item-result-schema.json",
  "title": "BatchDetectTargetedSentimentItemResult",
  "description": "Analysis results for one of the documents in the batch.",
  "type": "object",
  "properties": {
    "Index": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "description": "The zero-based index of this result in the input list."
        }
      ]
    },
    "Entities": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ListOfTargetedSentimentEntities"
        },
        {
          "description": "An array of targeted sentiment entities."
        }
      ]
    }
  }
}