{ "$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" } } }