Defines client authentication methods.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ClientCreateAuthenticationMethod", "title": "ClientCreateAuthenticationMethod", "type": "object", "description": "Defines client authentication methods.", "additionalProperties": false, "minProperties": 1, "maxProperties": 1, "properties": { "private_key_jwt": { "$ref": "#/components/schemas/ClientCreateAuthenticationMethodPrivateKeyJWT" }, "tls_client_auth": { "$ref": "#/components/schemas/ClientCreateAuthenticationMethodTLSClientAuth" }, "self_signed_tls_client_auth": { "$ref": "#/components/schemas/CreateClientAuthenticationMethodSelfSignedTLSClientAuth" } } }