@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix : <https://w3id.org/example#> .
@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#> .

<http://purl.org/dc/elements/1.1/abstract>
    a owl:AnnotationProperty .

<http://purl.org/dc/elements/1.1/created>
    a owl:AnnotationProperty .

<http://purl.org/dc/elements/1.1/description>
    a owl:AnnotationProperty .

<http://purl.org/dc/elements/1.1/publisher>
    a owl:AnnotationProperty .

<http://purl.org/dc/elements/1.1/title>
    a owl:AnnotationProperty .

<http://purl.org/dc/terms/created>
    a owl:AnnotationProperty .

<http://purl.org/dc/terms/creator>
    a owl:AnnotationProperty .

<http://purl.org/dc/terms/license>
    a owl:AnnotationProperty .

<http://purl.org/vocab/vann/example>
    a owl:AnnotationProperty .

<http://purl.org/vocab/vann/preferredNamespacePrefix>
    a owl:AnnotationProperty .

<http://purl.org/vocab/vann/preferredNamespaceUri>
    a owl:AnnotationProperty .

<http://schema.org/author>
    a owl:AnnotationProperty .

<http://schema.org/citation>
    a owl:AnnotationProperty .

<http://www.linkedmodel.org/schema/vaem#rationale>
    a owl:AnnotationProperty .

xsd:date
    a rdfs:Datatype .

<https://w3id.org/example>
    <http://purl.org/dc/elements/1.1/description> "This is an example ontology to illustrate some of the annotations that should be included"@en ;
    <http://purl.org/dc/elements/1.1/title> "The example ontology"@en ;
    <http://purl.org/dc/terms/abstract> "An example vocabulary designed to illustrate how to publish vocabularies on the Web following the FAIR principles"@en ;
    <http://purl.org/dc/terms/created> "February 5th, 2020"@en ;
    <http://purl.org/dc/terms/creator> "Daniel Garijo"@en, "Maria Poveda-Villalon"@en ;
    <http://purl.org/dc/terms/license> <http://creativecommons.org/licenses/by/2.0/> ;
    <http://purl.org/vocab/vann/preferredNamespacePrefix> "exo"@en ;
    <http://purl.org/vocab/vann/preferredNamespaceUri> "https://w3id.org/example" ;
    <http://schema.org/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 <https://w3id.org/example/1.0.0> ;
    owl:priorVersion <https://w3id.org/example/1.0.0> ;
    owl:versionIRI <https://w3id.org/example/1.0.1> ;
    owl:versionInfo "1.0.1"@en .

:Organization
    <http://purl.org/vocab/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
    <http://purl.org/vocab/vann/example> "An example using the Researcher class, e.g., Bob is a professor at the University of Southern California."@en ;
    <http://www.linkedmodel.org/schema/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 .

