Amazon Comprehend · Schema

DetectDominantLanguageRequest

DetectDominantLanguageRequest schema

Machine LearningNatural Language ProcessingNLPText Analysis

Properties

Name Type Description
Text object
View JSON Schema on GitHub

JSON Schema

openapi.yml-detect-dominant-language-request-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-detect-dominant-language-request-schema.json",
  "title": "DetectDominantLanguageRequest",
  "description": "DetectDominantLanguageRequest schema",
  "type": "object",
  "properties": {
    "Text": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CustomerInputString"
        },
        {
          "description": "A UTF-8 text string. The string must contain at least 20 characters. The maximum string size is 100 KB."
        }
      ]
    }
  },
  "required": [
    "Text"
  ]
}