{ "$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-list-service-template-versions-input-schema.json", "title": "ListServiceTemplateVersionsInput", "description": "ListServiceTemplateVersionsInput schema from Amazon Proton API", "type": "object", "properties": { "majorVersion": { "allOf": [ { "$ref": "#/components/schemas/TemplateVersionPart" }, { "description": "

To view a list of minor of versions under a major version of a service template, include major Version.

To view a list of major versions of a service template, exclude major Version.

" } ] }, "maxResults": { "allOf": [ { "$ref": "#/components/schemas/MaxPageResults" }, { "description": "The maximum number of major or minor versions of a service template to list." } ] }, "nextToken": { "allOf": [ { "$ref": "#/components/schemas/NextToken" }, { "description": "A token that indicates the location of the next major or minor version in the array of major or minor versions of a service template, after the list of major or minor versions that was previously requested." } ] }, "templateName": { "allOf": [ { "$ref": "#/components/schemas/ResourceName" }, { "description": "The name of the service template." } ] } }, "required": [ "templateName" ] }