Amazon Comprehend · Schema

ExtractedCharactersListItem

Array of the number of characters extracted from each page.

Machine LearningNatural Language ProcessingNLPText Analysis

Properties

Name Type Description
Page object
Count object
View JSON Schema on GitHub

JSON Schema

openapi.yml-extracted-characters-list-item-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-extracted-characters-list-item-schema.json",
  "title": "ExtractedCharactersListItem",
  "description": "Array of the number of characters extracted from each page.",
  "type": "object",
  "properties": {
    "Page": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "description": "Page number."
        }
      ]
    },
    "Count": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "description": "Number of characters extracted from each page."
        }
      ]
    }
  }
}