{ "$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-update-service-template-version-input-schema.json", "title": "UpdateServiceTemplateVersionInput", "description": "UpdateServiceTemplateVersionInput schema from Amazon Proton API", "type": "object", "properties": { "compatibleEnvironmentTemplates": { "allOf": [ { "$ref": "#/components/schemas/CompatibleEnvironmentTemplateInputList" }, { "description": "An array of environment template objects that are compatible with this service template version. A service instance based on this service template version can run in environments based on compatible templates." } ] }, "description": { "allOf": [ { "$ref": "#/components/schemas/Description" }, { "description": "A description of a service template version to update." } ] }, "majorVersion": { "allOf": [ { "$ref": "#/components/schemas/TemplateVersionPart" }, { "description": "To update a major version of a service template, include major Version." } ] }, "minorVersion": { "allOf": [ { "$ref": "#/components/schemas/TemplateVersionPart" }, { "description": "To update a minor version of a service template, include minorVersion." } ] }, "status": { "allOf": [ { "$ref": "#/components/schemas/TemplateVersionStatus" }, { "description": "The status of the service template minor version to update." } ] }, "supportedComponentSources": { "allOf": [ { "$ref": "#/components/schemas/ServiceTemplateSupportedComponentSourceInputList" }, { "description": "

An array of supported component sources. Components with supported sources can be attached to service instances based on this service template version.

A change to supportedComponentSources doesn't impact existing component attachments to instances based on this template version. A change only affects later associations.

For more information about components, see Proton components in the Proton User Guide.

" } ] }, "templateName": { "allOf": [ { "$ref": "#/components/schemas/ResourceName" }, { "description": "The name of the service template." } ] } }, "required": [ "majorVersion", "minorVersion", "templateName" ] }