{ "$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-s3-object-schema.json", "title": "S3Object", "description": "Provides the S3 bucket name and object name.", "type": "object", "properties": { "Bucket": { "type": "string", "description": "Name of the S3 bucket.", "example": "my-images-bucket" }, "Name": { "type": "string", "description": "S3 object key name.", "example": "images/photo.jpg" }, "Version": { "type": "string", "description": "S3 object version ID if versioning is enabled.", "example": "v1" } } }