http://www.owl-ontologies.com/resume.owl#Knowledge
Instances of resume.owl:Knowledge can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
From class resume.owl:Knowledge | |||
resume.owl:sourceOfKnowledge | owl:DatatypeProperty | owl:Thing | |
resume.owl:relatedAreasofStudy | owl:ObjectProperty | resume.owl:ExpertiseArea | |
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 owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
:Knowledge a owl:Class ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onProperty :relatedAreasofStudy ;
owl:someValuesFrom :ExpertiseArea ],
[ a owl:Restriction ;
owl:allValuesFrom :ExpertiseArea ;
owl:onProperty :relatedAreasofStudy ],
[ a owl:Restriction ;
owl:minCardinality "1"^^xsd:int ;
owl:onProperty :sourceOfKnowledge ],
[ a owl:Restriction ;
owl:cardinality "1"^^xsd:int ;
owl:onProperty :description ],
owl:Thing ;
owl:disjointWith :Accomplishment,
:Address,
:Award,
:ContactInfo,
:Industry,
:Name,
:Organization,
:Person,
:Publication,
:Resume,
:Title,
:ValuePartition .