{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "S3BucketDetail", "description": "Detailed S3 bucket information including object listing.", "$id": "https://raw.githubusercontent.com/api-evangelist/chickfila/refs/heads/main/json-schema/bovine-s3-bucket-detail-schema.json", "type": "object", "properties": { "Bucket": { "type": "object", "properties": { "BucketName": { "type": "string", "example": "my-app-logs-bucket" }, "Objects": { "type": "array", "items": { "type": "object", "properties": { "Key": { "type": "string", "example": "logs/2026-06-01.json" }, "Encryption": { "type": "string", "example": "AES256" }, "StorageType": { "type": "string", "example": "STANDARD" } } } } } } } }