# `Lotus.Export.Value`
[🔗](https://github.com/typhoonworks/lotus/blob/v0.16.4/lib/lotus/export/value.ex#L1)

Value normalization for export formats.
Handles various database types and edge cases for CSV and JSON export.

# `for_json`

```elixir
@spec for_json(term()) :: term()
```

Normalizes a value for JSON export, keeping appropriate types.

# `to_csv_string`

```elixir
@spec to_csv_string(term()) :: String.t()
```

Normalizes a value for CSV export, converting to a string representation.

# `to_display_string`

```elixir
@spec to_display_string(term()) :: String.t()
```

Normalizes a value for display in UI, converting to a readable string representation.

---

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