Versions Compared

Key

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

Organizations in VIVO are entities with rdf:type foaf:Organization.  vivo:overview is used to provide a text description of the organization typically displayed on its profile page. A vcard is used to record contact information, URLs and geolocation.

VIVO provides a controlled vocabulary of organization types as 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 . 
}

...