My id schema is: ```{ "$id": "<https://example.c...
# ory-selfhosting
p
My id schema is:
Copy code
{
  "$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
    }
  }
}