{ "$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-image-schema.json", "title": "Image", "description": "Provides the input image either as bytes or an S3 object.", "type": "object", "properties": { "Bytes": { "type": "string", "format": "byte", "description": "Blob of image bytes up to 5 MBs." }, "S3Object": { "$ref": "#/components/schemas/S3Object" } } }