defmodule JSON.LD.DocumentLoader.RemoteDocument do @type t :: %__MODULE__{ context_url: String.t(), document_url: String.t(), document: any } defstruct [:context_url, :document_url, :document] end