{ "$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-input-schema.json", "title": "ListRepositorySyncDefinitionsInput", "description": "ListRepositorySyncDefinitionsInput 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 list of repository sync definitions previously requested." } ] }, "repositoryName": { "allOf": [ { "$ref": "#/components/schemas/RepositoryName" }, { "description": "The repository name." } ] }, "repositoryProvider": { "allOf": [ { "$ref": "#/components/schemas/RepositoryProvider" }, { "description": "The repository provider." } ] }, "syncType": { "allOf": [ { "$ref": "#/components/schemas/SyncType" }, { "description": "The sync type. The only supported value is TEMPLATE_SYNC." } ] } }, "required": [ "repositoryName", "repositoryProvider", "syncType" ] }