In the current draft revision, thee are a couple of examples where the keys within the sdfRelation objects are very similar to the relType value, see the example below for example:
"sdfRelation": {
"sameAs": {
"relType": "exont:same-as",
"target": "saref:TemperatureSensor"
}
}
Since this creates a certain redundancy and potentially also bloat (when many sdfRelations are being used, I was wondering whether we could define a short definition where the key (or "given name") can also encode the relationship (see the (updated) example below):
"sdfRelation": {
"exont:same-as": {
"target": "saref:TemperatureSensor"
}
}
With this approach, the structure may become more compact, while it should also have a somewhat positive performance impact.
In the current draft revision, thee are a couple of examples where the keys within the
sdfRelationobjects are very similar to therelTypevalue, see the example below for example:Since this creates a certain redundancy and potentially also bloat (when many
sdfRelations are being used, I was wondering whether we could define a short definition where the key (or "given name") can also encode the relationship (see the (updated) example below):With this approach, the structure may become more compact, while it should also have a somewhat positive performance impact.