Authentication configuration for HTTP request
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/HttpRequestAuth", "title": "HttpRequestAuth", "type": "object", "description": "Authentication configuration for HTTP request", "nullable": true, "properties": { "type": { "type": "string", "enum": [ "basic", "bearer", "none" ], "description": "The authentication type" }, "username": { "type": "string", "nullable": true }, "password": { "type": "string", "nullable": true }, "token": { "type": "string", "nullable": true } } }