{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-rekognition/refs/heads/main/json-schema/amazon-rekognition-get-label-detection-response-schema.json", "title": "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": "integer" }, "Label": { "$ref": "#/components/schemas/Label" } } } }, "LabelModelVersion": { "type": "string" }, "JobId": { "type": "string" } } }