{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ClientTokenEndpointAuthMethodEnum", "title": "ClientTokenEndpointAuthMethodEnum", "type": "string", "description": "Defines the requested authentication method for the token endpoint. Can be `none` (public client without a client secret), `client_secret_post` (client uses HTTP POST parameters), or `client_secret_basic` (client uses HTTP Basic).", "default": "none", "enum": [ "none", "client_secret_post", "client_secret_basic" ] }