how can i link the properties from my ontology to synonyms

57 Views Asked by At

i made an ontology and i want to link the properties to synonyms so that when i query it by sparql i can get result for example when i query:

        "SELECT * WHERE{ " 
             +"{?x rdfs:subClassOf ?y." 
             +"?y owl:onProperty mine:concerned;"
             +"owl:someValuesFrom mine:createObject.}" 

i see the result i want but i want to see the result when i use of the synonyms property.for example:

          "SELECT * WHERE{ " 
             +"{?x rdfs:subClassOf ?y." 
             +"?y owl:onProperty mine:focus;"
             +"owl:someValuesFrom mine:createObject.}"
0

There are 0 best solutions below