Here's my identity schema: ```{ "$id": "<https:...
# talk-kratos
a
Here's my identity schema:
Copy code
{
  "$id": "<https://schemas.ory.sh/presets/kratos/identity.basic.schema.json>",
  "title": "Person",
  "type": "object",
  "properties": {
    "traits": {
      "type": "object",
      "properties": {
        "email": {
          "type": "string",
          "format": "email",
          "title": "E-Mail",
          "<http://ory.sh/kratos|ory.sh/kratos>": {
            "credentials": {
              "password": {
                "identifier": true
              },
              "webauthn": {
                "identifier": true
              },
              "totp": {
                "account_name": true
              }
            },
            "recovery": {
              "via": "email"
            },
            "verification": {
              "via": "email"
            }
          },
          "maxLength": 320
        },
        "name": {
          "type": "string",
          "title": "Full name",
          "maxLength": 512
        }
      },
      "required": [
        "email",
        "name"
      ],
      "additionalProperties": true
    }
  }
}