Auth0 · Schema

ConnectionClientIdWindowsLive

OAuth 2.0 client identifier issued by the identity provider during application registration. This value identifies your Auth0 connection to the identity provider.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
View JSON Schema on GitHub

JSON Schema

auth0-connectionclientidwindowslive-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionClientIdWindowsLive",
  "title": "ConnectionClientIdWindowsLive",
  "description": "OAuth 2.0 client identifier issued by the identity provider during application registration. This value identifies your Auth0 connection to the identity provider.",
  "type": "string",
  "anyOf": [
    {
      "description": "The Windows Live client ID as a UUID. The unique identifier for your Windows Live application. Must be a valid 36-character UUID.",
      "format": "uuid",
      "minLength": 36,
      "maxLength": 36
    },
    {
      "description": "The Windows Live client ID as a legacy hexadecimal string. The unique identifier for your Windows Live application. Must be a valid 16-character hexadecimal string.",
      "format": "hexadecimal",
      "minLength": 16,
      "maxLength": 16
    }
  ]
}