resume.owl:definedBy leaf node


URI

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

Label

definedBy

Description

A career is defined by multiple dimesnions, inclujding experience, accomplishments, awards, patents, publications, expertise, roles, and field.

Usage

DOMAINPROPERTYRANGE
resume.owl:Career , Blank node (see implementation) resume.owl:definedBy owl:Thing (inferred)

Implementation

@prefix : <http://www.owl-ontologies.com/resume.owl#> .
@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#> .

:definedBy a owl:ObjectProperty ;
    rdfs:comment "A career is defined by multiple dimesnions, inclujding experience, accomplishments, awards, patents, publications, expertise, roles, and field."^^xsd:string ;
    rdfs:domain :Career ;
    rdfs:range [ a owl:Class ;
            owl:unionOf ( :Accomplishment :Experience :ExpertiseArea ) ] .