http://www.owl-ontologies.com/resume.owl#Resume
Class defining resume and its contents.
Instances of resume.owl:Resume can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
From class resume.owl:Resume | |||
resume.owl:selectedResumePart | owl:ObjectProperty | owl:Thing | |
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 xsd: <http://www.w3.org/2001/XMLSchema#> .
:Resume a owl:Class ;
dc:description "Class defining resume and its contents."^^xsd:string ;
owl:disjointWith :Accomplishment,
:Address,
:Award,
:ContactInfo,
:Industry,
:Knowledge,
:Name,
:Organization,
:Person,
:Publication,
:Title,
:ValuePartition ;
owl:equivalentClass [ a owl:Class ;
owl:intersectionOf ( [ a owl:Restriction ;
owl:onProperty :selectedResumePart ;
owl:someValuesFrom :Experience ] [ a owl:Restriction ;
owl:onProperty :selectedResumePart ;
owl:someValuesFrom :Education ] [ a owl:Restriction ;
owl:onProperty :selectedResumePart ;
owl:someValuesFrom :Career ] [ a owl:Restriction ;
owl:onProperty :selectedResumePart ;
owl:someValuesFrom :Patents ] [ a owl:Restriction ;
owl:onProperty :selectedResumePart ;
owl:someValuesFrom :Award ] [ a owl:Restriction ;
owl:onProperty :selectedResumePart ;
owl:someValuesFrom :Publication ] [ a owl:Restriction ;
owl:onProperty :selectedResumePart ;
owl:someValuesFrom :Accomplishment ] [ a owl:Restriction ;
owl:onProperty :selectedResumePart ;
owl:someValuesFrom :ExpertiseArea ] [ a owl:Restriction ;
owl:onProperty :selectedResumePart ;
owl:someValuesFrom :Person ] ) ] .