inception
inception copied to clipboard
Concept search to include descriptions
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.
@tpluscode Have you tried adding rdfs:comment as an additional search property (i.e. a synonym)?