40 lines
901 B
JSON
40 lines
901 B
JSON
{
|
|
"$id": "file:///etc/config/kratos/default.schema.json",
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "default",
|
|
"type": "object",
|
|
"properties": {
|
|
"traits": {
|
|
"type": "object",
|
|
"properties": {
|
|
"email": {
|
|
"type": "string",
|
|
"format": "email",
|
|
"title": "E-Mail",
|
|
"minLength": 3,
|
|
"ory.sh/kratos": {
|
|
"credentials": {
|
|
"password": {
|
|
"identifier": true
|
|
}
|
|
},
|
|
"verification": {
|
|
"via": "email"
|
|
},
|
|
"recovery": {
|
|
"via": "email"
|
|
}
|
|
}
|
|
},
|
|
"username": {
|
|
"title": "Username",
|
|
"type": "string",
|
|
"minLength": 3
|
|
}
|
|
},
|
|
"required": ["email", "username"],
|
|
"additionalProperties": false
|
|
}
|
|
}
|
|
}
|