mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 09:12:45 +01:00
40 lines
839 B
JSON
40 lines
839 B
JSON
{
|
|
"$id": "securityonion.schema.json",
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Person",
|
|
"type": "object",
|
|
"properties": {
|
|
"email": {
|
|
"type": "string",
|
|
"format": "email",
|
|
"title": "E-Mail",
|
|
"minLength": 6,
|
|
"ory.sh/kratos": {
|
|
"credentials": {
|
|
"password": {
|
|
"identifier": true
|
|
}
|
|
},
|
|
"verification": {
|
|
"via": "email"
|
|
}
|
|
}
|
|
},
|
|
"firstName": {
|
|
"type": "string",
|
|
"title": "First Name"
|
|
},
|
|
"lastName": {
|
|
"type": "string",
|
|
"title": "Last Name"
|
|
},
|
|
"role": {
|
|
"type": "string",
|
|
"title": "Role"
|
|
}
|
|
},
|
|
"required": [
|
|
"email"
|
|
],
|
|
"additionalProperties": false
|
|
} |