View Issue Details

IDProjectCategoryView StatusLast Update
0004641CaseTalk ModelerGeneration (SQL, XML, etc)public2024-05-29 16:18
ReporterBCP Software Assigned ToBCP Software  
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

BCP Software

BCP Software

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>
BCP Software

BCP Software

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>
BCP Software

BCP Software

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 BCP Software New Issue
2024-05-27 10:25 BCP Software Status new => assigned
2024-05-27 10:25 BCP Software Assigned To => BCP Software
2024-05-28 09:38 BCP Software Note Added: 0005262
2024-05-28 09:39 BCP Software Note Edited: 0005262
2024-05-28 09:40 BCP Software Note Edited: 0005262
2024-05-29 16:14 BCP Software Note Added: 0005263
2024-05-29 16:16 BCP Software Note Edited: 0005263
2024-05-29 16:16 BCP Software Note Edited: 0005263
2024-05-29 16:18 BCP Software Status assigned => resolved
2024-05-29 16:18 BCP Software Resolution open => fixed
2024-05-29 16:18 BCP Software Fixed in Version => 13.4
2024-05-29 16:18 BCP Software Note Added: 0005264