Amazon Rekognition · Schema

CreateCollectionRequest

CreateCollectionRequest schema from Amazon Rekognition

Celebrity RecognitionComputer-VisionContent ModerationCustom LabelsDeep LearningFace LivenessFacial RecognitionImage AnalysisMachine-LearningObject DetectionText DetectionVideo Analysis

Properties

Name Type Description
CollectionId string ID for the collection to create.
Tags object
View JSON Schema on GitHub

JSON Schema

amazon-rekognition-create-collection-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-rekognition/refs/heads/main/json-schema/amazon-rekognition-create-collection-request-schema.json",
  "title": "CreateCollectionRequest",
  "description": "CreateCollectionRequest schema from Amazon Rekognition",
  "type": "object",
  "properties": {
    "CollectionId": {
      "type": "string",
      "description": "ID for the collection to create.",
      "example": "my-face-collection"
    },
    "Tags": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    }
  },
  "required": [
    "CollectionId"
  ]
}