Auth0 · Schema

RegisterCimdClientResponseContent

Response after successfully registering or updating a CIMD client

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
client_id string The Auth0 client_id of the created or updated client
mapped_fields object
validation object
View JSON Schema on GitHub

JSON Schema

auth0-registercimdclientresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RegisterCimdClientResponseContent",
  "title": "RegisterCimdClientResponseContent",
  "type": "object",
  "description": "Response after successfully registering or updating a CIMD client",
  "additionalProperties": true,
  "required": [
    "client_id",
    "mapped_fields",
    "validation"
  ],
  "properties": {
    "client_id": {
      "type": "string",
      "description": "The Auth0 client_id of the created or updated client"
    },
    "mapped_fields": {
      "$ref": "#/components/schemas/CimdMappedClientFields"
    },
    "validation": {
      "$ref": "#/components/schemas/CimdValidationResult"
    }
  }
}