Amazon Rekognition · JSON Structure

Amazon Rekognition Create Collection Request Structure

CreateCollectionRequest schema from Amazon Rekognition

Type: object Properties: 2 Required: 1
Celebrity RecognitionComputer VisionContent ModerationCustom LabelsDeep LearningFace LivenessFacial RecognitionImage AnalysisMachine LearningObject DetectionText DetectionVideo Analysis

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

Properties

CollectionId Tags

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-rekognition/refs/heads/main/json-structure/amazon-rekognition-create-collection-request-structure.json",
  "name": "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"
  ]
}