http://www.owl-ontologies.com/resume.owl#Education
A person may have be educatged in multiple schools, universities, colleges, or other ways. Each education instance is defined separately.
Instances of resume.owl:Education can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
From class resume.owl:Education | |||
resume.owl:attendedinstitution | owl:ObjectProperty | resume.owl:EducationalInstitution | |
resume.owl:hadAreasofStudy | owl:ObjectProperty | resume.owl:ExpertiseArea | |
From class owl:Thing | |||
resume.owl:achieved | owl:ObjectProperty | resume.owl:Accomplishment | |
resume.owl:awardedBy | owl:FunctionalProperty | resume.owl:Organization | |
resume.owl:hadResponsibility | owl:ObjectProperty | owl:Thing | |
resume.owl:had_activity | owl:FunctionalProperty | resume.owl:Activity | |
resume.owl:had_role | owl:FunctionalProperty | resume.owl:Role | |
resume.owl:has_CareerAccomplishments | owl:FunctionalProperty | resume.owl:CareerAccomplishments |
@prefix : <http://www.owl-ontologies.com/resume.owl#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
:Education a owl:Class ;
dc:description "A person may have be educatged in multiple schools, universities, colleges, or other ways. Each education instance is defined separately."^^xsd:string ;
rdfs:subClassOf [ a owl:Restriction ;
owl:cardinality "1"^^xsd:int ;
owl:onProperty :description ],
owl:Thing ;
owl:equivalentClass [ a owl:Class ;
owl:intersectionOf ( [ a owl:Restriction ;
owl:onProperty :attendedinstitution ;
owl:someValuesFrom :EducationalInstitution ] [ a owl:Restriction ;
owl:onProperty :hadAreasofStudy ;
owl:someValuesFrom :ExpertiseArea ] [ a owl:Restriction ;
owl:allValuesFrom :EducationalInstitution ;
owl:onProperty :attendedinstitution ] [ a owl:Restriction ;
owl:allValuesFrom :ExpertiseArea ;
owl:onProperty :hadAreasofStudy ] ) ] .