{ "$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-repository-sync-definitions-output-schema.json", "title": "ListRepositorySyncDefinitionsOutput", "description": "ListRepositorySyncDefinitionsOutput schema from Amazon Proton API", "type": "object", "properties": { "nextToken": { "allOf": [ { "$ref": "#/components/schemas/EmptyNextToken" }, { "description": "A token that indicates the location of the next repository sync definition in the array of repository sync definitions, after the current requested list of repository sync definitions." } ] }, "syncDefinitions": { "allOf": [ { "$ref": "#/components/schemas/RepositorySyncDefinitionList" }, { "description": "An array of repository sync definitions." } ] } }, "required": [ "syncDefinitions" ] }