Auth0 · Schema

PartialPhoneTemplateContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
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-partialphonetemplatecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PartialPhoneTemplateContent",
  "title": "PartialPhoneTemplateContent",
  "type": "object",
  "additionalProperties": false,
  "minProperties": 1,
  "properties": {
    "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"
    }
  }
}