{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CimdMappedClientFields", "title": "CimdMappedClientFields", "type": "object", "description": "Auth0 client fields mapped from the Client ID Metadata Document", "additionalProperties": true, "properties": { "external_client_id": { "type": "string", "description": "The URL of the Client ID Metadata Document" }, "name": { "type": "string", "description": "Client name" }, "app_type": { "type": "string", "description": "Application type (e.g., web, native)" }, "callbacks": { "type": "array", "description": "Callback URLs", "items": { "type": "string" } }, "logo_uri": { "type": "string", "description": "Logo URI" }, "description": { "type": "string", "description": "Human-readable brief description of this client presentable to the end-user" }, "grant_types": { "type": "array", "description": "List of grant types", "items": { "type": "string" } }, "token_endpoint_auth_method": { "type": "string", "description": "Token endpoint authentication method" }, "jwks_uri": { "type": "string", "description": "URL for the JSON Web Key Set containing the public keys for private_key_jwt authentication" }, "client_authentication_methods": { "$ref": "#/components/schemas/CimdMappedClientAuthenticationMethods" } } }