Amazon Comprehend · Schema

BatchDetectDominantLanguageItemResult

The result of calling the operation. The operation returns one object for each document that is successfully processed by the operation.

Machine LearningNatural Language ProcessingNLPText Analysis

Properties

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

JSON Schema

openapi.yml-batch-detect-dominant-language-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-dominant-language-item-result-schema.json",
  "title": "BatchDetectDominantLanguageItemResult",
  "description": "The result of calling the operation. The operation returns one object for each document that is successfully processed by the operation.",
  "type": "object",
  "properties": {
    "Index": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "description": "The zero-based index of the document in the input list."
        }
      ]
    },
    "Languages": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ListOfDominantLanguages"
        },
        {
          "description": "One or more <a>DominantLanguage</a> objects describing the dominant languages in the document."
        }
      ]
    }
  }
}