{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-robomaker/refs/heads/main/json-schema/amazon-robomaker-openapi-source-schema.json", "title": "Source", "description": "Information about a source.", "type": "object", "properties": { "s3Bucket": { "allOf": [ { "$ref": "#/components/schemas/S3Bucket" }, { "description": "The s3 bucket name." } ] }, "s3Key": { "allOf": [ { "$ref": "#/components/schemas/S3Key" }, { "description": "The s3 object key." } ] }, "etag": { "allOf": [ { "$ref": "#/components/schemas/S3Etag" }, { "description": "A hash of the object specified by s3Bucket and s3Key." } ] }, "architecture": { "allOf": [ { "$ref": "#/components/schemas/Architecture" }, { "description": "The taget processor architecture for the application." } ] } } }