View Issue Details

IDProjectCategoryView StatusLast Update
0004641CaseTalk ModelerGeneration (SQL, XML, etc)public2024-05-29 16:18
ReporterMarco Wobben Assigned ToMarco Wobben  
PrioritynormalSeveritytweakReproducibilityhave not tried
Status resolvedResolutionfixed 
PlatformIntelOSWindowsOS Version11
Target Version13.4Fixed in Version13.4 
Summary0004641: RDF/OWL hasKey unnamed
DescriptionThe hasKey in RDF/OWL has no naming, whereas CaseTalk can name UCs.
TagsNo tags attached.
CaseTalk Editionunknown

Activities

Marco Wobben

Marco Wobben

2024-05-28 09:38

administrator   ~0005262

Last edited: 2024-05-28 09:40

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>
Marco Wobben

Marco Wobben

2024-05-29 16:14

administrator   ~0005263

Last edited: 2024-05-29 16:16

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>
Marco Wobben

Marco Wobben

2024-05-29 16:18

administrator   ~0005264

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.

Issue History

Date Modified Username Field Change
2024-05-27 10:25 Marco Wobben New Issue
2024-05-27 10:25 Marco Wobben Status new => assigned
2024-05-27 10:25 Marco Wobben Assigned To => Marco Wobben
2024-05-28 09:38 Marco Wobben Note Added: 0005262
2024-05-28 09:39 Marco Wobben Note Edited: 0005262
2024-05-28 09:40 Marco Wobben Note Edited: 0005262
2024-05-29 16:14 Marco Wobben Note Added: 0005263
2024-05-29 16:16 Marco Wobben Note Edited: 0005263
2024-05-29 16:16 Marco Wobben Note Edited: 0005263
2024-05-29 16:18 Marco Wobben Status assigned => resolved
2024-05-29 16:18 Marco Wobben Resolution open => fixed
2024-05-29 16:18 Marco Wobben Fixed in Version => 13.4
2024-05-29 16:18 Marco Wobben Note Added: 0005264