Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Overview

VIVO uses a large number of classes from several diferent ontologies to represent scholarship.  The classes and their ontologies are shown in the figure below.  You may have additional classes as a result of local extensions.

Finding the Classes in your VIVO

To find the classes in your VIVO, you can use the SPARQL query below.

Code Block
SELECT ?s
WHERE
{
   ?s a owl:Class .
   FILTER(regex(?s, "http"))
}
ORDER BY ?s

...