# `Jido.Character.Schema.Identity`
[🔗](https://github.com/agentjido/jido_character/blob/v1.0.0/lib/jido_character/schema/identity.ex#L1)

Character identity - who the character is.

# `t`

```elixir
@type t() :: %Jido.Character.Schema.Identity{
  age: nil | nil | integer() | binary(),
  background: nil | nil | binary(),
  facts: [binary()],
  role: nil | nil | binary()
}
```

# `new`

```elixir
@spec new(map()) :: {:ok, t()} | {:error, term()}
```

# `new!`

```elixir
@spec new!(map()) :: t()
```

# `schema`

Returns the Zoi schema for Identity

---

*Consult [api-reference.md](api-reference.md) for complete listing*
