Root Insurance · Schema

notification-data

An object containing additional data depending on whether the notification channel is `email`, `sms`, or `other`.

InsuranceAuto InsuranceTelematicsEmbedded InsurancePolicy AdministrationClaimsUsage-Based InsuranceInsurTech
View JSON Schema on GitHub

JSON Schema

notification-data.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "notification-data",
  "type": "object",
  "description": "An object containing additional data depending on whether the notification channel is `email`, `sms`, or `other`.",
  "oneOf": [
    {
      "$ref": "#/components/schemas/notification-email-data"
    },
    {
      "$ref": "#/components/schemas/notification-sms-data"
    },
    {
      "$ref": "#/components/schemas/notification-other-data"
    }
  ]
}