Auth0 · Schema

TenantSettingsDeviceFlow

Device Flow configuration

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
charset object
mask string Mask used to format a generated User Code into a friendly, readable format.
View JSON Schema on GitHub

JSON Schema

auth0-tenantsettingsdeviceflow-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TenantSettingsDeviceFlow",
  "title": "TenantSettingsDeviceFlow",
  "type": [
    "object",
    "null"
  ],
  "description": "Device Flow configuration",
  "additionalProperties": false,
  "properties": {
    "charset": {
      "$ref": "#/components/schemas/TenantSettingsDeviceFlowCharset"
    },
    "mask": {
      "type": "string",
      "description": "Mask used to format a generated User Code into a friendly, readable format.",
      "default": "****-****",
      "maxLength": 20
    }
  }
}