@base <https://w3id.org/example> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix : <#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vaem: <http://www.linkedmodel.org/schema/vaem#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix terms: <http://purl.org/dc/terms/> .
@prefix schema: <http://schema.org/> .

dc:abstract
    a owl:AnnotationProperty .

dc:created
    a owl:AnnotationProperty .

dc:description
    a owl:AnnotationProperty .

dc:publisher
    a owl:AnnotationProperty .

dc:title
    a owl:AnnotationProperty .

terms:created
    a owl:AnnotationProperty .

terms:creator
    a owl:AnnotationProperty .

terms:license
    a owl:AnnotationProperty .

vann:example
    a owl:AnnotationProperty .

vann:preferredNamespacePrefix
    a owl:AnnotationProperty .

vann:preferredNamespaceUri
    a owl:AnnotationProperty .

schema:author
    a owl:AnnotationProperty .

schema:citation
    a owl:AnnotationProperty .

vaem:rationale
    a owl:AnnotationProperty .

xsd:date
    a rdfs:Datatype .

<>
    dc:abstract "An example vocabulary designed to illustrate how to publish vocabularies on the Web following the FAIR principles"@en ;
    dc:description "This is an example ontology to illustrate some of the annotations that should be included"@en ;
    dc:title "The example ontology"@en ;
    terms:created "February 5th, 2020"@en ;
    terms:creator "Daniel Garijo"@en, "Maria Poveda-Villalon"@en ;
    terms:license <http://creativecommons.org/licenses/by/2.0/> ;
    vann:preferredNamespacePrefix "exo"@en ;
    vann:preferredNamespaceUri "https://w3id.org/example" ;
    schema:citation "Cite this vocabulary as: Garijo, D. and Poveda-Villalon, M. The example ontology 1.0.1."@en ;
    a owl:Ontology ;
    rdfs:comment "An example vocabulary designed to illustrate how to publish vocabularies on the Web following the FAIR principles. This vocabulary describes three simple classes with 3 properties and a data property."@en ;
    owl:backwardCompatibleWith <example/1.0.0> ;
    owl:priorVersion <example/1.0.0> ;
    owl:versionIRI <example/1.0.1> ;
    owl:versionInfo "1.0.1"@en .

:Organization
    vann:example "University of Southern California"@en ;
    a owl:Class ;
    rdfs:comment "An organized body of people with a particular purpose, especially a business, society, association, etc."@en ;
    rdfs:label "Organization"@en .

:Researcher
    vann:example "An example using the Researcher class, e.g., Bob is a professor at the University of Southern California."@en ;
    vaem:rationale "The reason why this concept was added to the ontology. This could reflect some agreement or use cases that may need to be reflected here. For example: The concept Researcher was added to the ontology to represent those authors of scientific publications that belong to a public institution."@en ;
    a owl:Class ;
    rdfs:comment "A definition of your class. For example, A researcher is a person who publishes scientific papers, writes research proposals and mentors students"@en ;
    rdfs:label "Researcher"@en .

:Student
    a owl:Class ;
    rdfs:comment "Student is a class introduced in the version 1.0.1 of the ontology. "@en ;
    rdfs:label "Student"@en .

:foundedIn
    a owl:DatatypeProperty ;
    rdfs:comment "Date when an organization was founded"@en ;
    rdfs:domain :Organization ;
    rdfs:label "founded in"@en ;
    rdfs:range xsd:date .

:hasMember
    a owl:ObjectProperty ;
    rdfs:comment "This example property indicates that an Organization has a Researcher as member"@en ;
    rdfs:domain :Organization ;
    rdfs:label "has member"@en ;
    rdfs:range :Researcher .

:hasMentor
    a owl:ObjectProperty ;
    rdfs:comment "This property links the students to the researcher who mentored them"@en ;
    rdfs:domain :Student ;
    rdfs:label "has mentor"@en ;
    rdfs:range :Researcher .

:partOf
    a owl:ObjectProperty ;
    rdfs:comment "This property links instances from Researcher to Organization"@en ;
    rdfs:domain :Researcher ;
    rdfs:label "part of"@en ;
    rdfs:range :Organization .

