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

Character voice - how the character communicates.

# `t`

```elixir
@type t() :: %Jido.Character.Schema.Voice{
  expressions: [binary()],
  style: nil | nil | binary(),
  tone:
    :formal
    | :casual
    | :playful
    | :serious
    | :warm
    | :cold
    | :professional
    | :friendly,
  vocabulary:
    nil | nil | :simple | :technical | :academic | :conversational | :poetic
}
```

# `new`

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

# `new!`

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

# `schema`

Returns the Zoi schema for Voice

---

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