{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-proton/refs/heads/main/json-schema/amazon-proton-compatible-environment-template-schema.json", "title": "CompatibleEnvironmentTemplate", "description": "Compatible environment template data.", "type": "object", "properties": { "majorVersion": { "allOf": [ { "$ref": "#/components/schemas/TemplateVersionPart" }, { "description": "The major version of the compatible environment template." } ] }, "templateName": { "allOf": [ { "$ref": "#/components/schemas/ResourceName" }, { "description": "The compatible environment template name." } ] } }, "required": [ "majorVersion", "templateName" ] }