Detail data for a linked repository branch.
{ "$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-repository-branch-schema.json", "title": "RepositoryBranch", "description": "Detail data for a linked repository branch.", "type": "object", "properties": { "arn": { "allOf": [ { "$ref": "#/components/schemas/RepositoryArn" }, { "description": "The Amazon Resource Name (ARN) of the linked repository." } ] }, "branch": { "allOf": [ { "$ref": "#/components/schemas/GitBranchName" }, { "description": "The repository branch." } ] }, "name": { "allOf": [ { "$ref": "#/components/schemas/RepositoryName" }, { "description": "The repository name." } ] }, "provider": { "allOf": [ { "$ref": "#/components/schemas/RepositoryProvider" }, { "description": "The repository provider." } ] } }, "required": [ "arn", "branch", "name", "provider" ] }