View Source DCAT.RightsBase (DCAT.ex v0.1.0)

Shared properties for licenses and rights.

See https://www.w3.org/TR/vocab-dcat-3/#license-rights

Summary

Types

@type t() :: %DCAT.RightsBase{
  __additional_statements__: term(),
  __id__: term(),
  access_rights: term(),
  has_policy: term(),
  licenses: term(),
  rights: term()
}

Functions

@spec from(Grax.Schema.t()) :: {:ok, t()} | {:error, any()}
@spec from!(Grax.Schema.t()) :: t()
Link to this function

load(graph, id, opts \\ [])

View Source
@spec load(
  RDF.Graph.t() | RDF.Description.t(),
  RDF.IRI.coercible() | RDF.BlankNode.t(),
  opts :: keyword()
) :: {:ok, t()} | {:error, any()}
Link to this function

load!(graph, id, opts \\ [])

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