plain-lunch-50969
04/17/2024, 4:08 PM{
"$id": "<https://example.com/default.schema.json>",
"$schema": "<http://json-schema.org/draft-07/schema#>",
"title": "Person",
"type": "object",
"properties": {
"traits": {
"type": "object",
"properties": {
"email": {
"title": "Email Address",
"type": "string",
"format": "email",
"<http://ory.sh/kratos|ory.sh/kratos>": {
"recovery": {
"via": "email"
}
}
},
"username": {
"title": "Username",
"type": "string",
"pattern": "^[a-z][a-z0-9]+$",
"<http://ory.sh/kratos|ory.sh/kratos>": {
"credentials": {
"password": {
"identifier": true
}
}
}
},
"picture": {
"title": "Picture",
"type": "string"
},
"profile": {
"title": "Profile",
"type": "string"
}
},
"required": [
"email",
"username"
],
"additionalProperties": false
}
}
}