{ "$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-output-schema.json", "title": "ListServiceTemplateVersionsOutput", "description": "ListServiceTemplateVersionsOutput schema from Amazon Proton API", "type": "object", "properties": { "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 current requested list of service major or minor versions." } ] }, "templateVersions": { "allOf": [ { "$ref": "#/components/schemas/ServiceTemplateVersionSummaryList" }, { "description": "An array of major or minor versions of a service template with detail data." } ] } }, "required": [ "templateVersions" ] }