{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ConnectionAuthenticationMethods", "title": "ConnectionAuthenticationMethods", "type": [ "object", "null" ], "description": "Options for enabling authentication methods.", "additionalProperties": false, "properties": { "password": { "$ref": "#/components/schemas/ConnectionPasswordAuthenticationMethod" }, "passkey": { "$ref": "#/components/schemas/ConnectionPasskeyAuthenticationMethod" }, "email_otp": { "$ref": "#/components/schemas/ConnectionEmailOtpAuthenticationMethod", "x-release-lifecycle": "EA" }, "phone_otp": { "$ref": "#/components/schemas/ConnectionPhoneOtpAuthenticationMethod", "x-release-lifecycle": "EA" } } }