RepositoryContext

Repository context for component storage

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
type string
baseUrl string Base URL of the repository
componentNameMapping string
View JSON Schema on GitHub

JSON Schema

application-research-repositorycontext-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RepositoryContext",
  "title": "RepositoryContext",
  "type": "object",
  "description": "Repository context for component storage",
  "required": [
    "type"
  ],
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "ociRegistry",
        "OCIRegistry"
      ]
    },
    "baseUrl": {
      "type": "string",
      "description": "Base URL of the repository"
    },
    "componentNameMapping": {
      "type": "string",
      "enum": [
        "urlPath",
        "sha256-digest"
      ]
    }
  }
}