Auth0 · Schema

ConnectionRealms

Defines the realms for which the connection will be used (ie: email domains). If the array is empty or the property is not specified, the connection name will be added as realm.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
View JSON Schema on GitHub

JSON Schema

auth0-connectionrealms-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionRealms",
  "title": "ConnectionRealms",
  "type": "array",
  "description": "Defines the realms for which the connection will be used (ie: email domains). If the array is empty or the property is not specified, the connection name will be added as realm.",
  "items": {
    "type": "string",
    "description": "The realm where this connection belongs",
    "format": "connection-realm"
  },
  "minItems": 0,
  "maxItems": 10
}