Represents an unnormalized raw provider payload.
@type stream() :: :stdout | :stderr | atom() | String.t()
@type t() :: %CliSubprocessCore.Payload.Raw{ content: term(), extra: map(), metadata: map(), stream: stream() }
@spec new(keyword() | map() | struct()) :: struct()
@spec parse(keyword() | map() | struct()) :: {:ok, struct()} | {:error, {:invalid_payload, module(), CliSubprocessCore.Schema.error_detail()}}
@spec parse!(keyword() | map() | struct()) :: struct()
@spec schema() :: Zoi.schema()
@spec to_map(struct()) :: map()