{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CatalogIntegrationConfigSchema", "title": "CatalogIntegrationConfigSchema", "description": "Defines the configuration schema for the integration.", "example": { "base_url": { "type": "string", "display_name": "Base URL", "description": "The customer-specific API URL", "required": true } }, "additionalProperties": { "oneOf": [ { "type": "object", "nullable": true }, { "$ref": "#/components/schemas/StringConfigFieldSchema" }, { "$ref": "#/components/schemas/EnumConfigFieldSchema" }, { "$ref": "#/components/schemas/BooleanConfigFieldSchema" } ] } }