# `Kreuzberg.JatsMetadata`
[🔗](https://github.com/kreuzberg-dev/kreuzberg/blob/main/lib/kreuzberg/jats_metadata.ex#L1)

JATS (Journal Article Tag Suite) metadata.

Matches the Rust `JatsMetadata` struct.

## Fields

  * `:copyright` - Copyright statement
  * `:license` - License information
  * `:history_dates` - Publication history dates (e.g., %{"received" => "2024-01-01"})
  * `:contributor_roles` - List of contributors with roles

# `t`

```elixir
@type t() :: %Kreuzberg.JatsMetadata{
  contributor_roles: [Kreuzberg.ContributorRole.t()],
  copyright: String.t() | nil,
  history_dates: map(),
  license: String.t() | nil
}
```

# `from_map`

```elixir
@spec from_map(map()) :: t()
```

# `to_map`

```elixir
@spec to_map(t()) :: map()
```

---

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