khmereid-backend-temp/config/kratos/identity.schema.json
2025-10-28 13:38:57 +07:00

34 lines
678 B
JSON

{
"$id": "default",
"title": "Default Identity",
"type": "object",
"properties": {
"traits": {
"type": "object",
"properties": {
"phone": {
"type": "string",
"format": "tel",
"title": "Phone Number",
"ory.sh/kratos": {
"credentials": {
"password": {
"identifier": true
},
"code": {
"identifier": true,
"via": "sms"
}
},
"verification": {
"via": "sms"
}
}
}
},
"required": [
"phone"
]
}
}
}