{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EventStreamWebhookBasicAuth", "title": "EventStreamWebhookBasicAuth", "type": "object", "description": "Basic Authorization for HTTP requests (e.g., 'Basic credentials').\n", "additionalProperties": false, "required": [ "method", "username" ], "properties": { "method": { "$ref": "#/components/schemas/EventStreamWebhookBasicAuthMethodEnum" }, "username": { "type": "string", "description": "Username", "maxLength": 128, "pattern": "^[^:]+$" } } }