# `Jido.Agent.StateOp.DeletePath`
[🔗](https://github.com/agentjido/jido/blob/v2.3.0/lib/jido/agent/state_op.ex#L167)

Delete a value at a nested path in the agent's state.

Uses `pop_in/2` semantics. Path must be a list of atoms.

## Example

    %DeletePath{path: [:temp, :cache]}
    # Removes agent.state.temp.cache

# `t`

```elixir
@type t() :: %Jido.Agent.StateOp.DeletePath{path: [atom()]}
```

# `schema`

```elixir
@spec schema() :: Zoi.schema()
```

Returns the Zoi schema for DeletePath.
