{ "$id": "https://honeydue.app/identity.schema.json", "$schema": "http://json-schema.org/draft-07/schema#", "title": "honeyDue user", "type": "object", "properties": { "traits": { "type": "object", "properties": { "email": { "type": "string", "format": "email", "title": "Email", "minLength": 3, "maxLength": 320, "ory.sh/kratos": { "credentials": { "password": { "identifier": true }, "code": { "identifier": true, "via": "email" }, "totp": { "account_name": true } }, "verification": { "via": "email" }, "recovery": { "via": "email" } } }, "name": { "type": "object", "title": "Name", "properties": { "first": { "type": "string", "title": "First name", "maxLength": 100 }, "last": { "type": "string", "title": "Last name", "maxLength": 100 } } } }, "required": ["email"], "additionalProperties": false } } }