|
Defaults:
<owl:Class rdf:about="Person">
<owl:hasKey rdf:parseType="Collection">
<owl:ObjectProperty rdf:about="hasSSN"/>
</owl:hasKey>
</owl:Class>
or when adding a label, this part comes as an additional descriptor
<owl:Class rdf:about="Person">
<!-- no key descriptor here -->
</owl:Class>
<rdf:Description rdf:about="Person">
<owl:hasKey rdf:parseType="Collection">
<owl:ObjectProperty rdf:about="hasSSN"/>
</owl:hasKey>
<rdfs:label>Unique Social Security Number</rdfs:label>
</rdf:Description>
|
|
|
In addition to the hasKey definition, and when the UC is named, the following Bag definition will be added to the rdf content:
<owl:Class rdf:about="Person">
<owl:hasKey rdf:parseType="Collection">
<owl:ObjectProperty rdf:about="hasSSN"/>
</owl:hasKey>
</owl:Class>
<rdf:Bag rdf:about="Person">
<rdfs:label xml:lang="en">Unique Social Security Number</rdfs:label>
<rdf:li rdf:resource="hasSSN"/>
</rdf:Bag>
|
|
|
If no UC is named, nothing changes. Only when an UC is named, will CaseTalk generated rdf:Bag constructs to be able to export the UC Name. |
|