Amazon Rekognition · JSON Structure

Amazon Rekognition Detect Custom Labels Request Structure

DetectCustomLabelsRequest schema from Amazon Rekognition

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

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

Properties

ProjectVersionArn Image MaxResults MinConfidence

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-detect-custom-labels-request-structure.json",
  "name": "DetectCustomLabelsRequest",
  "description": "DetectCustomLabelsRequest schema from Amazon Rekognition",
  "type": "object",
  "properties": {
    "ProjectVersionArn": {
      "type": "string",
      "description": "The ARN of the model version to use."
    },
    "Image": {
      "$ref": "#/components/schemas/Image"
    },
    "MaxResults": {
      "type": "int32"
    },
    "MinConfidence": {
      "type": "float"
    }
  },
  "required": [
    "ProjectVersionArn",
    "Image"
  ]
}