Auth0 · Schema

PhoneTemplateContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
syntax string
from string Default phone number to be used as 'from' when sending a phone notification
body object
View JSON Schema on GitHub

JSON Schema

auth0-phonetemplatecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PhoneTemplateContent",
  "title": "PhoneTemplateContent",
  "type": "object",
  "additionalProperties": false,
  "minProperties": 1,
  "properties": {
    "syntax": {
      "type": "string"
    },
    "from": {
      "type": "string",
      "description": "Default phone number to be used as 'from' when sending a phone notification",
      "minLength": 1,
      "maxLength": 16
    },
    "body": {
      "$ref": "#/components/schemas/PhoneTemplateBody"
    }
  }
}