# `PgFlow.Schema.Run`
[🔗](https://github.com/agoodway/pgflow/blob/v0.1.0/lib/pgflow/schema/run.ex#L1)

Schema for the pgflow.runs table.

Represents a single execution instance of a flow.

# `t`

```elixir
@type t() :: %PgFlow.Schema.Run{
  __meta__: term(),
  completed_at: term(),
  failed_at: term(),
  flow: term(),
  flow_slug: term(),
  input: term(),
  output: term(),
  remaining_steps: term(),
  run_id: term(),
  started_at: term(),
  status: term(),
  step_states: term()
}
```

---

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