# `Beancount.Schemas.Include`
[🔗](https://github.com/thanos/beancount_ex/blob/v0.6.0/lib/beancount/schemas/directives.ex#L408)

Persisted `include` directive (table `beancount_includes`).

Storage-layer counterpart of `Beancount.Directives.Include`. This directive
has no date.

## Fields

  * `path` - path to the included `.bean` file.
  * `file_order` - zero-based position of the directive in the source.

## Example

    %Beancount.Schemas.Include{path: "accounts/2026.bean", file_order: 0}

# `t`

```elixir
@type t() :: %Beancount.Schemas.Include{
  __meta__: term(),
  file_order: term(),
  id: term(),
  inserted_at: term(),
  path: term(),
  updated_at: term()
}
```

---

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