{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/IntegrationRef", "title": "IntegrationRef", "description": "Short-hand descriptor of an integration installed within the catalog.", "type": "object", "properties": { "name": { "type": "string", "example": "gateway-manager" }, "display_name": { "type": "string", "example": "gateway-manager" }, "instance": { "$ref": "#/components/schemas/IntegrationInstanceRef" } }, "required": [ "name", "display_name", "instance" ] }