Versions Compared

Key

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

Notes

  1. Concepts

...

  1. in VIVO are

...

VIVO provides a controlled vocabulary of organization types as rdfs:subClassOf foaf:Organization.  To create a list of the available organization types, use the SPARQL query below:

Code Block
SELECT ?s
WHERE
{
    ?s rdfs:subClassOf foaf:Organization . 
}

Organizations may have relationships to other organizations.  The "part of" relationship describes an organization as part of another in a hierarchical sense.  For example, the History Department may be part of a College of Liberal Arts.  The "successor" relationship describes an organization which no longer exists, and for which a successor organization now exists. The "affiliatedOrganization" organization describes an organization affiliated with the primary organization.  The relationship is not symmetric, that is, the inverse is not inferred by the Inferencer.  Assert the reverse affiliation as needed.

Many other attributes and relationships are available for organizations.  The model shown here is typical for VIVO implementations.

 

Image Removed

  1. modeled using the SKOS (Simple Knowledge Organization System) ontology.  SKOS is quite simple, and is a good place to start for those learning about ontologies, and how VIVO uses ontologies to represent information as triples in RDF.  See The SKOS Primer, a readable introduction to SKOS and how it is represented in RDF.
  2. A concept is typically represented in VIVO as two triples, one declaring the URI of the concept as a skos:Concept, and one providing a text label for the concept.  A third triple may use the skos:prefLabel to repeat the text label for those applications expecting the concept to have a preferred label.  The triples might look like those below:

    Code Block
    <http://vivo.myschool.edu> rdf:type skos:Concept .
    <http://vivo.myschool.edu> rdfs:label "Molecular Biology"^^@en .
    <http://vivo.myschool.edu> skos:prefLabel "Molecular Biology"^^@en .
  3. Concepts are used throughout VIVO to indicate research and subject areas for people and other entities.

Image Added

Excerpt Include
Ontology Diagram Legend
Ontology Diagram Legend