Amazon Rekognition · JSON Structure

Amazon Rekognition Detect Custom Labels Response Structure

DetectCustomLabelsResponse schema from Amazon Rekognition

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

DetectCustomLabelsResponse is a JSON Structure definition published by Amazon Rekognition, describing 1 property. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

CustomLabels

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-response-structure.json",
  "name": "DetectCustomLabelsResponse",
  "description": "DetectCustomLabelsResponse schema from Amazon Rekognition",
  "type": "object",
  "properties": {
    "CustomLabels": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "Name": {
            "type": "string",
            "example": "MyProduct"
          },
          "Confidence": {
            "type": "float",
            "example": 92.3
          },
          "Geometry": {
            "type": "object"
          }
        }
      }
    }
  }
}