{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codeartifact/refs/heads/main/json-schema/codeartifact-upstream-repository-schema.json", "title": "UpstreamRepository", "description": " Information about an upstream repository. A list of UpstreamRepository objects is an input parameter to CreateRepository and UpdateRepository. ", "type": "object", "properties": { "repositoryName": { "allOf": [ { "$ref": "#/components/schemas/RepositoryName" }, { "description": " The name of an upstream repository. " } ] } }, "required": [ "repositoryName" ] }