{ "$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-get-service-template-version-input-schema.json", "title": "GetServiceTemplateVersionInput", "description": "GetServiceTemplateVersionInput schema from Amazon Proton API", "type": "object", "properties": { "majorVersion": { "allOf": [ { "$ref": "#/components/schemas/TemplateVersionPart" }, { "description": "To get service template major version detail data, include major Version." } ] }, "minorVersion": { "allOf": [ { "$ref": "#/components/schemas/TemplateVersionPart" }, { "description": "To get service template minor version detail data, include minorVersion." } ] }, "templateName": { "allOf": [ { "$ref": "#/components/schemas/ResourceName" }, { "description": "The name of the service template a version of which you want to get detailed data for." } ] } }, "required": [ "majorVersion", "minorVersion", "templateName" ] }