@base <http://dydra.com/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .

<http://graves.cl/myStudentOntology/Course>
    a <http://www.w3.org/2002/07/owl#Class> ;
    <http://www.w3.org/2000/01/rdf-schema#comment> "A unit of instruction on a subject"@en, "Estudio sobre una materia, desarrollada con unidad"@es ;
    <http://www.w3.org/2000/01/rdf-schema#label> "Course"@en, "Curso"@es .

<http://graves.cl/myStudentOntology/MastersStudent>
    a <http://www.w3.org/2002/07/owl#Class> ;
    <http://www.w3.org/2000/01/rdf-schema#comment> "A person who studies a Masters in a specific discipline"@en ;
    <http://www.w3.org/2000/01/rdf-schema#label> "Masters student"@en ;
    <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://graves.cl/myStudentOntology/Student>, [
        a <http://www.w3.org/2002/07/owl#Restriction> ;
        <http://www.w3.org/2002/07/owl#minCardinality> 1 ;
        <http://www.w3.org/2002/07/owl#onProperty> <http://graves.cl/myStudentOntology/wroteMastersThesis>
    ] .

<http://graves.cl/myStudentOntology/MastersThesis>
    a <http://www.w3.org/2002/07/owl#Class> ;
    <http://www.w3.org/2000/01/rdf-schema#comment> "A document submitted in support of candidature for a Masters"@en ;
    <http://www.w3.org/2000/01/rdf-schema#label> "Tesis"@es, "Thesis"@en ;
    <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://graves.cl/myStudentOntology/Thesis> .

<http://graves.cl/myStudentOntology/PhdStudent>
    a <http://www.w3.org/2002/07/owl#Class> ;
    <http://www.w3.org/2000/01/rdf-schema#comment> "A person studying a doctorate program"@en, "Una persona que estudia en un programa de doctorado"@es ;
    <http://www.w3.org/2000/01/rdf-schema#label> "Estudiante de doctorado"@es, "PhD student"@en ;
    <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://graves.cl/myStudentOntology/Student>, [
        a <http://www.w3.org/2002/07/owl#Restriction> ;
        <http://www.w3.org/2002/07/owl#minCardinality> 1 ;
        <http://www.w3.org/2002/07/owl#onProperty> <http://graves.cl/myStudentOntology/wrotePhDThesis>
    ] .

<http://graves.cl/myStudentOntology/PhdThesis>
    a <http://www.w3.org/2002/07/owl#Class> ;
    <http://www.w3.org/2000/01/rdf-schema#comment> "A document submitted in support of candidature for a PhD"@en ;
    <http://www.w3.org/2000/01/rdf-schema#label> "Tesis"@es, "Thesis"@en ;
    <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://graves.cl/myStudentOntology/Thesis> .

<http://graves.cl/myStudentOntology/Student>
    a <http://www.w3.org/2002/07/owl#Class> ;
    <http://www.w3.org/2000/01/rdf-schema#comment> "A person who studies in an academic institution"@en ;
    <http://www.w3.org/2000/01/rdf-schema#label> "Estudiante"@es, "Student"@en ;
    <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://xmlns.com/foaf/0.1/Person> .

<http://graves.cl/myStudentOntology/Thesis>
    a <http://www.w3.org/2002/07/owl#Class> ;
    <http://www.w3.org/2000/01/rdf-schema#comment> "A document submitted in support of candidature for an academic degree"@en ;
    <http://www.w3.org/2000/01/rdf-schema#label> "Tesis"@es, "Thesis"@en .

<http://graves.cl/myStudentOntology/schema>
    <http://purl.org/dc/terms/abstract> "Simple vocabulary to show how DocuSPeaKr works"@en ;
    <http://purl.org/dc/terms/date> "2012-05-04"^^<http://www.w3.org/2001/XMLSchema#date> ;
    <http://purl.org/dc/terms/title> "Simple Student Ontology"@en ;
    a <http://www.w3.org/2002/07/owl#Ontology> ;
    <http://www.w3.org/2000/01/rdf-schema#label> "Simple Student Ontology"@en .

<http://graves.cl/myStudentOntology/wroteMastersThesis>
    a rdf:Property, <http://www.w3.org/2002/07/owl#ObjectProperty> ;
    <http://www.w3.org/2000/01/rdf-schema#comment> "Relates a MSc student with his/her thesis"@en ;
    <http://www.w3.org/2000/01/rdf-schema#domain> <http://graves.cl/myStudentOntology/MastersStudent> ;
    <http://www.w3.org/2000/01/rdf-schema#label> "Wrote masters thesis"@en ;
    <http://www.w3.org/2000/01/rdf-schema#range> <http://graves.cl/myStudentOntology/MastersThesis> ;
    <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://graves.cl/myStudentOntology/wroteThesis> .

<http://graves.cl/myStudentOntology/wrotePhDThesis>
    a rdf:Property, <http://www.w3.org/2002/07/owl#ObjectProperty> ;
    <http://www.w3.org/2000/01/rdf-schema#comment> "Relaciona a un/a estudiante con su tesis de doctorado"@es, "Relates a student with his/her PhD thesis"@en ;
    <http://www.w3.org/2000/01/rdf-schema#domain> <http://graves.cl/myStudentOntology/PhdStudent> ;
    <http://www.w3.org/2000/01/rdf-schema#label> "Wrote PhD thesis"@en ;
    <http://www.w3.org/2000/01/rdf-schema#range> <http://graves.cl/myStudentOntology/PhdThesis> ;
    <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://graves.cl/myStudentOntology/wroteThesis> .

<http://graves.cl/myStudentOntology/wroteThesis>
    a rdf:Property, <http://www.w3.org/2002/07/owl#ObjectProperty> ;
    <http://www.w3.org/2000/01/rdf-schema#comment> "Relaciona a un/a estudiante con su tesis"@es, "Relates a student with his/her thesis"@en ;
    <http://www.w3.org/2000/01/rdf-schema#domain> <http://graves.cl/myStudentOntology/Student> ;
    <http://www.w3.org/2000/01/rdf-schema#label> "Wrote thesis"@en ;
    <http://www.w3.org/2000/01/rdf-schema#range> <http://graves.cl/myStudentOntology/Thesis> .

<http://xmlns.com/foaf/0.1/Person>
    a <http://www.w3.org/2002/07/owl#Class> ;
    <http://www.w3.org/2000/01/rdf-schema#comment> "A person"@en, "Una persona"@es ;
    <http://www.w3.org/2000/01/rdf-schema#label> "Person"@en, "Persona"@es .

<http://xmlns.com/foaf/0.1/firstName>
    a rdf:Property, <http://www.w3.org/2002/07/owl#DatatypeProperty> ;
    <http://www.w3.org/2000/01/rdf-schema#comment> "First name of a person"@en, "Primer nombre de una persona"@es ;
    <http://www.w3.org/2000/01/rdf-schema#domain> <http://xmlns.com/foaf/0.1/Person> ;
    <http://www.w3.org/2000/01/rdf-schema#label> "First name"@en, "Primer Nombre"@es ;
    <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> .

<http://xmlns.com/foaf/0.1/lastName>
    a rdf:Property, <http://www.w3.org/2002/07/owl#DatatypeProperty> ;
    <http://www.w3.org/2000/01/rdf-schema#comment> "Apellido de una persona"@es, "Last name of a person"@en ;
    <http://www.w3.org/2000/01/rdf-schema#domain> <http://xmlns.com/foaf/0.1/Person> ;
    <http://www.w3.org/2000/01/rdf-schema#label> "Apellido"@es, "Last name"@en ;
    <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> .

