Auth0 · Schema

PhoneTemplateBody

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
text string Content of the phone template for text notifications
voice string Content of the phone template for voice notifications
View JSON Schema on GitHub

JSON Schema

auth0-phonetemplatebody-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PhoneTemplateBody",
  "title": "PhoneTemplateBody",
  "type": "object",
  "additionalProperties": false,
  "minProperties": 1,
  "properties": {
    "text": {
      "type": "string",
      "description": "Content of the phone template for text notifications",
      "minLength": 1,
      "maxLength": 20000
    },
    "voice": {
      "type": "string",
      "description": "Content of the phone template for voice notifications",
      "minLength": 1,
      "maxLength": 20000
    }
  }
}