{
  "$schema" : "https://json-schema.org/draft/2019-09/schema",
  "$defs" : {
    "TechnicalUser" : {
      "type" : "object",
      "properties" : {
        "Mail" : {
          "type" : "string"
        },
        "Password" : {
          "type" : "string"
        }
      },
      "additionalProperties" : false
    }
  },
  "type" : "object",
  "properties" : {
    "ClientId" : {
      "type" : "string",
      "description" : "Client ID provided by Azure AD when registering the application for sending messages."
    },
    "TechnicalUser" : {
      "$ref" : "#/$defs/TechnicalUser",
      "description" : "The login credentials of the technical user used for sending messages."
    },
    "TenantId" : {
      "type" : "string",
      "description" : "Azure AD Tenant ID"
    }
  },
  "additionalProperties" : false
}
