{ "$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-video-job-result-request-schema.json", "title": "GetVideoJobResultRequest", "description": "GetVideoJobResultRequest schema from Amazon Rekognition", "type": "object", "properties": { "JobId": { "type": "string", "description": "Job identifier from the start job call.", "example": "1234567890abcdef" }, "MaxResults": { "type": "integer", "example": 100 }, "NextToken": { "type": "string" }, "SortBy": { "type": "string", "enum": [ "NAME", "TIMESTAMP" ] }, "AggregateBy": { "type": "string", "enum": [ "TIMESTAMPS", "SEGMENTS" ] } }, "required": [ "JobId" ] }