Auth0 · Schema

PreviewCimdMetadataResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
client_id string The client_id of an existing client registered with this external_client_id, if one exists.
errors array Array of retrieval errors (populated when the metadata document could not be fetched). When present, validation is omitted.
validation object
mapped_fields object
View JSON Schema on GitHub

JSON Schema

auth0-previewcimdmetadataresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PreviewCimdMetadataResponseContent",
  "title": "PreviewCimdMetadataResponseContent",
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "client_id": {
      "type": "string",
      "description": "The client_id of an existing client registered with this external_client_id, if one exists."
    },
    "errors": {
      "type": "array",
      "description": "Array of retrieval errors (populated when the metadata document could not be fetched). When present, validation is omitted.",
      "items": {
        "type": "string"
      }
    },
    "validation": {
      "$ref": "#/components/schemas/CimdValidationResult"
    },
    "mapped_fields": {
      "$ref": "#/components/schemas/CimdMappedClientFields"
    }
  }
}