{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://velox.dev/schema/events/event.auth.required.schema.json", "title": "event.auth.required", "description": "A server asked for credentials. The task sits in retry_wait until the client supplies them. Credentials travel to the Secret Service, never back through this event and never into a log.", "x-direction": "server-to-client", "type": "object", "properties": { "params": { "type": "object", "additionalProperties": false, "required": [ "taskId", "host", "scheme" ], "properties": { "taskId": { "type": "string", "format": "uuid" }, "host": { "type": "string" }, "realm": { "type": [ "string", "null" ] }, "scheme": { "type": "string", "enum": [ "basic", "digest", "ntlm", "negotiate", "proxy" ] } } } } }