{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SetGuardianFactorPhoneMessageTypesRequestContent",
"title": "SetGuardianFactorPhoneMessageTypesRequestContent",
"type": "object",
"additionalProperties": false,
"required": [
"message_types"
],
"properties": {
"message_types": {
"type": "array",
"description": "The list of phone factors to enable on the tenant. Can include `sms` and `voice`.",
"items": {
"$ref": "#/components/schemas/GuardianFactorPhoneFactorMessageTypeEnum"
}
}
}
}