Auth0 · Schema

ClientAddonRMS

Active Directory Rights Management Service SSO configuration.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
url string URL of your Rights Management Server. It can be internal or external, but users will have to be able to reach it.
View JSON Schema on GitHub

JSON Schema

auth0-clientaddonrms-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClientAddonRMS",
  "title": "ClientAddonRMS",
  "type": "object",
  "description": "Active Directory Rights Management Service SSO configuration.",
  "additionalProperties": true,
  "required": [
    "url"
  ],
  "properties": {
    "url": {
      "type": "string",
      "description": "URL of your Rights Management Server. It can be internal or external, but users will have to be able to reach it.",
      "format": "url"
    }
  }
}