Hi Matt,
TBC will use skos:prefLabel even in preference over rdfs:label for any
resource, as shown in the attached test. However you need to make sure
that the triple skos:preflabel rdfs:subPropertyOf rdfs:label exists,
which is most commonly achieved by owl:importing the SKOS Core namespace.
HTH
Holger
On 2021-05-27 2:39 am, Matt Goldberg wrote:
Hello-
The top toolbar of TBC has the button that toggles between showing
prefixed qnames and rdfs:labels. I'm working with some files that are
using the SKOS label properties and not rdfs:label directly.
Consequently, when it is toggled to show human readable labels, it
still shows qnames because there are no rdfs:labels. Is there an
option somewhere to change the behavior of that button to show
skos:prefLabels instead of rdfs:labels, or do I have to rely on the
RDFS Plus reasoner (at a minimum) to get labels to show without
modifying the file?
I'm using version TBC 7.0.2.
Thanks.
--
You received this message because you are subscribed to the Google
Groups "TopBraid Suite Users" group.
To unsubscribe from this group and stop receiving emails from it, send
an email to topbraid-users+unsubscr...@googlegroups.com
<mailto:topbraid-users+unsubscr...@googlegroups.com>.
To view this discussion on the web visit
https://groups.google.com/d/msgid/topbraid-users/d12bb9a9-44c4-4d07-ace2-c96e1e4aae70n%40googlegroups.com
<https://groups.google.com/d/msgid/topbraid-users/d12bb9a9-44c4-4d07-ace2-c96e1e4aae70n%40googlegroups.com?utm_medium=email&utm_source=footer>.
--
You received this message because you are subscribed to the Google Groups "TopBraid
Suite Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to topbraid-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/topbraid-users/e28f2371-ece4-7d14-6015-95be73a547db%40topquadrant.com.
# baseURI: http://example.org/labeltest
# imports: http://www.w3.org/2004/02/skos/core
# prefix: labeltest
@prefix labeltest: <http://example.org/labeltest#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://example.org/labeltest>
a owl:Ontology ;
owl:imports <http://www.w3.org/2004/02/skos/core> ;
owl:versionInfo "Created with TopBraid Composer" ;
.
labeltest:TestThing
a owl:Thing ;
skos:prefLabel "Test thing" ;
.