I created an ontology using SKOS and it includes two concepts, concept1
and concept2
. And I added one preferred label Temperature Sensor
, and three alternative labels Temperature@en
, Temp@en
and T@en
into the concept1
.
What I expect is when I send a request to a target concept containing Temp
, T
or Temperature
, the SKOS will respond with a same concept Temperature Sensor
(which are defined in preferred label).
How can I achieve this? Is it possible to achieve this using SKOS? Part of rdf
file is shown as below.
<skos:Concept rdf:about="TemperatureSensor">
<skos:altLabel xml:lang="en">T</skos:altLabel>
<skos:altLabel xml:lang="en">Temp</skos:altLabel>
<skos:altLabel xml:lang="en">Temperature</skos:altLabel>
<skos:prefLabel xml:lang="en">TemperatureSensor</skos:prefLabel>
<skos:inScheme rdf:resource="conceptSchemeSensors"/></skos:Concept>