Amazon Rekognition · JSON Structure

Amazon Rekognition Get Label Detection Response Structure

GetLabelDetectionResponse schema from Amazon Rekognition

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

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

Properties

JobStatus StatusMessage VideoMetadata NextToken Labels LabelModelVersion JobId

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-get-label-detection-response-structure.json",
  "name": "GetLabelDetectionResponse",
  "description": "GetLabelDetectionResponse schema from Amazon Rekognition",
  "type": "object",
  "properties": {
    "JobStatus": {
      "type": "string",
      "enum": [
        "IN_PROGRESS",
        "SUCCEEDED",
        "FAILED"
      ],
      "example": "SUCCEEDED"
    },
    "StatusMessage": {
      "type": "string"
    },
    "VideoMetadata": {
      "type": "object"
    },
    "NextToken": {
      "type": "string"
    },
    "Labels": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "Timestamp": {
            "type": "int32"
          },
          "Label": {
            "$ref": "#/components/schemas/Label"
          }
        }
      }
    },
    "LabelModelVersion": {
      "type": "string"
    },
    "JobId": {
      "type": "string"
    }
  }
}