OrganizationOtpPolicy
Properties
View JSON Schema
{
"type": "object",
"required": [
"organization_id",
"enabled_scopes",
"default_verification_ttl",
"updated_at"
],
"properties": {
"default_verification_ttl": {
"$ref": "#/components/schemas/OrganizationOtpVerificationTtl"
},
"enabled_scopes": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OrganizationOtpScope"
}
},
"organization_id": {
"type": "string",
"format": "uuid"
},
"ttl_overrides": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OrganizationOtpScopePolicy"
}
},
"updated_at": {
"type": "string",
"format": "date-time"
}
}
}