inception-project / inception

INCEpTION provides a semantic annotation platform offering intelligent annotation assistance and knowledge management.
https://inception-project.github.io
Apache License 2.0
599 stars 152 forks source link

Concept search to include descriptions #4961

Open tpluscode opened 3 months ago

tpluscode commented 3 months ago

Is your feature request related to a problem? Please describe.

Please consider the property http://schema.org/vehicleEngine

@prefix schema: <http://schema.org/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

schema:vehicleEngine schema:domainIncludes schema:Vehicle ;
    schema:rangeIncludes schema:EngineSpecification ;
    a rdf:Property ;
    rdfs:comment "Information about the engine or engines of the vehicle." ;
    rdfs:label "vehicleEngine" .

When added to a KB (IRI schema RDF), it is only found when typing vehicle(Engine) but not when typing engine. Also with fuzzy search enabled.

Describe the solution you'd like

Since the word "engine" is actually used in the rdfs:comment I expected it to match too.

reckart commented 1 month ago

@tpluscode Have you tried adding rdfs:comment as an additional search property (i.e. a synonym)?