{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ec2-image-builder/refs/heads/main/json-structure/ec2-image-builder-image-package-structure.json", "name": "ImagePackage", "description": "Represents a package installed on an Image Builder image.", "type": "object", "properties": { "packageName": { "allOf": [ { "$ref": "#/components/schemas/NonEmptyString" }, { "description": "The name of the package as reported to the operating system package manager." } ] }, "packageVersion": { "allOf": [ { "$ref": "#/components/schemas/NonEmptyString" }, { "description": "The version of the package as reported to the operating system package manager." } ] } } }