# `DCATR.Element`
[🔗](https://github.com/dcat-r/dcatr-ex/blob/v0.1.0/lib/dcatr/model/element.ex#L1)

Abstract base schema for items that can be organized within a `DCATR.Directory`.

Both `DCATR.Graph` and `DCATR.Directory` inherit from this schema, enabling
hierarchical containment where directories can hold graphs and nested directories.

# `t`

```elixir
@type t() :: %DCATR.Element{__additional_statements__: term(), __id__: term()}
```

# `build`

# `build`

# `build!`

# `build!`

# `build_id`

# `from`

```elixir
@spec from(Grax.Schema.t()) :: {:ok, t()} | {:error, any()}
```

# `from!`

```elixir
@spec from!(Grax.Schema.t()) :: t()
```

# `load`

```elixir
@spec load(
  RDF.Graph.t() | RDF.Description.t(),
  RDF.IRI.coercible() | RDF.BlankNode.t(),
  opts :: keyword()
) :: {:ok, t()} | {:error, any()}
```

# `load!`

```elixir
@spec load!(
  RDF.Graph.t() | RDF.Description.t(),
  RDF.IRI.coercible() | RDF.BlankNode.t(),
  opts :: keyword()
) :: t()
```

---

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