Auth0 · Schema

CimdMappedClientFields

Auth0 client fields mapped from the Client ID Metadata Document

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
external_client_id string The URL of the Client ID Metadata Document
name string Client name
app_type string Application type (e.g., web, native)
callbacks array Callback URLs
logo_uri string Logo URI
description string Human-readable brief description of this client presentable to the end-user
grant_types array List of grant types
token_endpoint_auth_method string Token endpoint authentication method
jwks_uri string URL for the JSON Web Key Set containing the public keys for private_key_jwt authentication
client_authentication_methods object
View JSON Schema on GitHub

JSON Schema

auth0-cimdmappedclientfields-schema.json Raw ↑
{
  "$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"
    }
  }
}