resume.owl:Award


URI

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

Label

Award

Description

A person may have more than one award, each one will be created as an individual of this class.

Usage

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

PROPERTYTYPEDESCRIPTIONRANGE
From class resume.owl:Award
resume.owl:awardedOnDate owl:DatatypeProperty xsd:date
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 rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

:Award a owl:Class ;
    dc:description "A person may have more than one award, each one will be created as an individual of this class."^^xsd:string ;
    rdfs:subClassOf [ a owl:Restriction ;
            owl:onProperty :awardedBy ;
            owl:someValuesFrom :Organization ],
        [ a owl:Restriction ;
            owl:allValuesFrom :Organization ;
            owl:onProperty :awardedBy ],
        [ a owl:Restriction ;
            owl:cardinality "1"^^xsd:int ;
            owl:onProperty :description ],
        owl:Thing ;
    owl:disjointWith :Accomplishment,
        :Address,
        :ContactInfo,
        :Industry,
        :Knowledge,
        :Name,
        :Organization,
        :Person,
        :Publication,
        :Resume,
        :Title,
        :ValuePartition ;
    owl:equivalentClass [ a owl:Class ;
            owl:unionOf ( :InnovationAward :BusinessAward :CommunityServiceAward :LeadershipAward :ProfessionalAward :CareerAward :GoodCitizenAward :QualityAward :ProjectAward :CustomerAward :SalesAward :EngineeringAward :ManufacturingAward :PatentAward ) ] .