Amazon Comprehend · JSON Structure

Openapi.Yml Document Classifier Documents Structure

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

Type: object Properties: 2 Required: 1
Machine LearningNatural Language ProcessingNLPText Analysis

DocumentClassifierDocuments is a JSON Structure definition published by Amazon Comprehend, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

S3Uri TestS3Uri

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-comprehend/refs/heads/main/json-structure/openapi.yml-document-classifier-documents-structure.json",
  "name": "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"
  ]
}