resume.owl:Career


URI

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

Label

Career

Description

A person may have more than one career. For each career the ontology defines experience, awards, accomplishments and expertise.

Usage

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

PROPERTYTYPEDESCRIPTIONRANGE
From class resume.owl:Career
resume.owl:definedBy owl:ObjectProperty A career is defined by multiple dimesnions, inclujding experience, accomplishments, awards, patents, publications, expertise, roles, and field. owl:Thing
resume.owl:workedIndustry owl:ObjectProperty resume.owl:Industry
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#> .

:Career a owl:Class ;
    dc:description "A person may have more than one career. For each career the ontology defines experience, awards, accomplishments and expertise."^^xsd:string ;
    owl:equivalentClass [ a owl:Class ;
            owl:intersectionOf ( [ a owl:Class ;
                        owl:unionOf ( :Scientist :Engineer :MedicalDoctor :Nurse :Executive :Management :Regulator :Politician :SalesPerson ) ] [ a owl:Restriction ;
                        owl:onProperty :definedBy ;
                        owl:someValuesFrom [ a owl:Class ;
                                owl:unionOf ( :Experience :Accomplishment :ExpertiseArea ) ] ] [ a owl:Restriction ;
                        owl:allValuesFrom [ a owl:Class ;
                                owl:unionOf ( :Experience :Accomplishment :ExpertiseArea ) ] ;
                        owl:onProperty :definedBy ] [ a owl:Restriction ;
                        owl:onProperty :workedIndustry ;
                        owl:someValuesFrom :Industry ] [ a owl:Restriction ;
                        owl:allValuesFrom :Industry ;
                        owl:onProperty :workedIndustry ] ) ] .