Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note

You can make translations between message and your application domain. For example, it is possible to store a single-valued attribute in the message in a multi-valued attribute in your application domain. You have to be aware that you can only make a translation into a more general data type. For example the other way is not possible. When sending a message, it is not possible to place a multivalued attribute of your application domain in a single valued attribute of the domain schema.

Hide root element

Image RemovedImage Added

To define an unnamed array the 'Hide root element' checkbox corresponding to the domain schema root element must be ticked.

Example of a JSON message that consists of an unnamed array:

Code Block
[
	{ 
		"JohnId",: 23 }1,
		{"Name": "RickBob", 30 }
		"Age": 35,
		{"Gender": "Paul", 27 male"
	}
]

When making use of unnamed arrays, only one child (relation or attribute) can follow the root element.

...