resume.owl:Experience leaf node


URI

http://www.owl-ontologies.com/resume.owl#Experience

Label

Experience

Description

A person has multiple experiences and each one is described as an individual of Experience.

Usage

Instances of resume.owl:Experience can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class resume.owl:Experience
resume.owl:employedBy owl:ObjectProperty resume.owl:Organization
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

Implementation

@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#> .

:Experience a owl:Class ;
    dc:description "A person has multiple experiences and each one is described as an individual of Experience."^^xsd:string ;
    owl:equivalentClass [ a owl:Class ;
            owl:intersectionOf ( [ a owl:Restriction ;
                        owl:allValuesFrom :Accomplishment ;
                        owl:onProperty :achieved ] [ a owl:Restriction ;
                        owl:onProperty :achieved ;
                        owl:someValuesFrom :Accomplishment ] [ a owl:Restriction ;
                        owl:cardinality "1"^^xsd:int ;
                        owl:onProperty :description ] [ a owl:Restriction ;
                        owl:allValuesFrom :Organization ;
                        owl:onProperty :employedBy ] [ a owl:Restriction ;
                        owl:onProperty :employedBy ;
                        owl:someValuesFrom :Organization ] [ a owl:Restriction ;
                        owl:allValuesFrom :Role ;
                        owl:onProperty :had_role ] [ a owl:Restriction ;
                        owl:onProperty :had_role ;
                        owl:someValuesFrom :Role ] ) ] .