Skip to content
Snippets Groups Projects
Commit 6e5ccbd1 authored by Mart van Santen's avatar Mart van Santen
Browse files

Add schema

parent 0420f569
No related branches found
No related tags found
1 merge request!46Add kratos container
Pipeline #8985 failed with stages
in 55 seconds
apiVersion: v1
description: A Helm chart for OpenAppStack's Single sign-on components
name: single-sign-on
version: 0.2.11
version: 0.3.0
......@@ -93,15 +93,59 @@ kratos:
"identity.default.schema.json": |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Person",
"type": "object",
"properties": {
"bar": {
"type": "string"
"traits": {
"type": "object",
"properties": {
"uuid": {
"type": "string",
"title": "uuid"
},
"email": {
"type": "string",
"format": "email",
"title": "E-Mail",
"minLength": 3,
"ory.sh/kratos": {
"verification": {
"via": "email"
},
"recovery": {
"via": "email"
},
"credentials": {
"password": {
"identifier": true
}
}
}
},
"name": {
"type": "object",
"properties": {
"first": {
"type": "string",
"title": "First name"
},
"last": {
"type": "string",
"title": "Last name"
}
}
},
"admin": {
"type": "string"
},
"totp": {
"type": "string"
}
},
"required": ["email"],
"additionalProperties": false
}
}
},
"required": [
"bar"
]
}
autoMigrate: true
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment