Amazon Proton · Schema

RepositorySummary

Summary data of a linked repository—a repository that has been registered with Proton.

DevOpsInfrastructure as CodePlatform EngineeringServerlessTemplatesSelf-ServiceCI/CD

Properties

Name Type Description
arn object
connectionArn object
name object
provider object
View JSON Schema on GitHub

JSON Schema

amazon-proton-repository-summary-schema.json Raw ↑
{
  "$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-summary-schema.json",
  "title": "RepositorySummary",
  "description": "Summary data of a linked repository\u2014a repository that has been registered with Proton.",
  "type": "object",
  "properties": {
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RepositoryArn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the linked repository."
        }
      ]
    },
    "connectionArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the of your connection that connects Proton to your repository."
        }
      ]
    },
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RepositoryName"
        },
        {
          "description": "The repository name."
        }
      ]
    },
    "provider": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RepositoryProvider"
        },
        {
          "description": "The repository provider."
        }
      ]
    }
  },
  "required": [
    "arn",
    "connectionArn",
    "name",
    "provider"
  ]
}