Skip to content

NOTE: Link information for data models

Ari Keränen edited this page Apr 3, 2023 · 26 revisions

Scratchpad for information and pointers for "link" information for data models, in particular for SDF

Types of links

Links are a general concept that can be useful in SDF specifications in many ways.

  1. Links can be used at the SDF specification level to make the model more concise or to provide additional information.

    • A unit specification is a rather specific kind of specification-level link.

      • We actually have also talked about a unit data type, this would be related, but clearly different.
    • sdfRef uses a link for referencing an existing SDF definition in another place, enabling re-use (with potential extension) of that definition.

    • sdfRefFrom has been proposed to record similarities between SDF definitions

  1. Links can be data in the information model, used as input or output of specific interactions. We still need to find out what kind of type information we want to specify for these link data.

  • sdfRelation appears to define a link data type, but then also claims it adds "ability to describe additional information on how different definitions relate to each other." This needs to be clarified.

LwM2M models and link resources

There are two types of link data types in LwM2M: CoRE links (RFC6690) and Object Links. CoRE link “is used to refer to Resources on a LWM2M Client and their attributes” and Object Link “is used to refer to an Instance of a given Object” (essentially a pair of Object and Object Instance IDs).

OCF links

More like LwM2M CoRE links.

DTDL Relationships

https://github.com/Azure/opendigitaltwins-dtdl/blob/master/DTDL/v2/DTDL.v2.md#relationship

Thing models

Have a very flexible way to add specification level links.

To do

  1. How do specific ecosystems use or define links?

Related resources

Archive

This section contains information from earlier discussions that have concluded but information is kept here for future reference.

Options for SDF "link data type"

(archived 3.4.2023)

The "link data type" links could be modeled in various different ways in SDF. More exploration is needed to determine best option.

Possibilities include:

1. Adding to the json-schema.org inspired type system, e.g.:

sdfFormat

New "sdfFormat" keyword with a value "link" (or more specific, like "core-link" and "obj-link") to indicate that a string value has certain format and semantics (similar to JSO "format" keyword but with SDF specific values). Open question: should we support formats from namespaces, like "oma:objLink", or should those all be registered instead?

{
 "sdfProperty": {
  "LinkToResource": {
   "type": "string",
   "sdfFormat": "core-link"
  } 
 }
}

sdfType link

Adding new sdfType "link" (and/or "core-link" and "object-link"). Same registry / namespace considerations apply as for sdfFormat.

{
 "sdfProperty": {
  "LinkToResource": {
   "type": "string",
   "sdfType": "core-link"
  } 
 }
}

These are essentially two syntactic ways to describe the same information. Whatever is chosen, sdfFormat and sdfType could include a registry for more detailed link types for ecosystems. For OMA models, we need a way to tell apart CoRE Links and Object Links for OMA models. The former may be a generic type but Object Link is likely an ecosystem specific representation (which should concern us at the information model level only in terms of limitations to what kinds of links can be represented).

Object type with sdfType link

type could be object allowing breaking down the link structure to separate components. CoRE target attributes registry could be used for reserved words (target attributes, etc.) like href, rel, etc. Gives also semantics for names. Could also use JSO to constrain parts, like rel (using enum?).

{
 "sdfProperty": {
  "LinkToResource": {
   "type": "object",
   "sdfType": "core-link"
  } 
 }
}

This enables to use common format for various serializations. For example

{
 "href" : "coaps://dev.example.com/sensor", 
 "if" : "temp"
}

instead of ecosystem specific (in this case CoRE link format) <coaps://dev.example.com/sensor>;if=temp

Other considerations

Note that in an sdfAction, a link is returned as a Location. There is currently no way to become more specific about the type of that link. Specifying an sdfObject for that resource is one way to provide information of this kind. This is useful or link data in general.

2. Extending sdfRelation to emulate "link data type"

{
 "sdfRelation": {
  "LinkToResource": {
   "somethingspecialhere" : true
  } 
 }
}

As sdfRelation is not fully defined at this point, this is harder to relate to the SDF type system.

Clone this wiki locally