{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-proton/refs/heads/main/json-structure/amazon-proton-get-repository-sync-status-input-structure.json", "name": "GetRepositorySyncStatusInput", "description": "GetRepositorySyncStatusInput schema from Amazon Proton API", "type": "object", "properties": { "branch": { "allOf": [ { "$ref": "#/components/schemas/GitBranchName" }, { "description": "The repository branch." } ] }, "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 repository sync type." } ] } }, "required": [ "branch", "repositoryName", "repositoryProvider", "syncType" ] }