{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-snow-family/refs/heads/main/json-schema/amazon-snow-family-compatible-image-schema.json", "title": "CompatibleImage", "description": "A JSON-formatted object that describes a compatible Amazon Machine Image (AMI), including the ID and name for a Snow device AMI. This AMI is compatible with the device's physical hardware requirements, and it should be able to be run in an SBE1 instance on the device.", "type": "object", "properties": { "AmiId": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The unique identifier for an individual Snow device AMI." } ] }, "Name": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The optional name of a compatible image." } ] } } }