Amazon Comprehend · Schema

DocumentClassifierDocuments

The location of the training documents. This parameter is required in a request to create a native classifier model.

Machine LearningNatural Language ProcessingNLPText Analysis

Properties

Name Type Description
S3Uri object
TestS3Uri object
View JSON Schema on GitHub

JSON Schema

openapi.yml-document-classifier-documents-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-document-classifier-documents-schema.json",
  "title": "DocumentClassifierDocuments",
  "description": "The location of the training documents. This parameter is required in a request to create a native classifier model.",
  "type": "object",
  "properties": {
    "S3Uri": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Uri"
        },
        {
          "description": "The S3 URI location of the training documents specified in the S3Uri CSV file."
        }
      ]
    },
    "TestS3Uri": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Uri"
        },
        {
          "description": "The S3 URI location of the test documents included in the TestS3Uri CSV file. This field is not required if you do not specify a test CSV file."
        }
      ]
    }
  },
  "required": [
    "S3Uri"
  ]
}