Amazon Rekognition · JSON Structure

Amazon Rekognition Detect Labels Response Structure

Response from the DetectLabels operation.

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

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

Properties

Labels OrientationCorrection LabelModelVersion ImageProperties

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-labels-response-structure.json",
  "name": "DetectLabelsResponse",
  "description": "Response from the DetectLabels operation.",
  "type": "object",
  "properties": {
    "Labels": {
      "type": "array",
      "description": "An array of labels for the real-world objects detected.",
      "items": {
        "$ref": "#/components/schemas/Label"
      }
    },
    "OrientationCorrection": {
      "type": "string",
      "description": "The value of OrientationCorrection is always null.",
      "example": "ROTATE_0"
    },
    "LabelModelVersion": {
      "type": "string",
      "description": "Version number of the label detection model used.",
      "example": "3.0"
    },
    "ImageProperties": {
      "type": "object",
      "description": "Information about the quality and dominant colors of an input image."
    }
  }
}