Dependency

A dependency on another bundle

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
bundle string A reference to a bundle (REGISTRY/NAME format)
version object
View JSON Schema on GitHub

JSON Schema

application-research-dependency-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Dependency",
  "title": "Dependency",
  "type": "object",
  "description": "A dependency on another bundle",
  "required": [
    "bundle"
  ],
  "properties": {
    "bundle": {
      "type": "string",
      "description": "A reference to a bundle (REGISTRY/NAME format)"
    },
    "version": {
      "$ref": "#/components/schemas/DependencyVersion"
    }
  }
}