Containers : 11 Container: Elements
 
11 Container: Elements
The Elements container is represented by a JSON object containing a series of elements. An Element's value may be a JSON string, number or object.
If the Element value is a JSON number then the Open Message Model primitive type is assumed to be of type UInt.
If the Element value is a JSON string then the Open Message Model primitive type is assumed to be of type AsciiString.
If the Element is a JSON object it will be made up of Type and Data attributes, where the Type attribute specifies the Open Message Model Primitive or Container type and the Data attribute contains the data of the element.
If the content of an AsciiString or UInt Element is null or empty, it must be encoded as a JSON object so that the type can be determined.
 
 
"Elements": {
    "AllowSuspectData": 1,
    "ApplicationName": "ADS",
    "ApplicationId": {
        "Type": "UInt",
        "Data": null
    }
}
 
 
 
"Elements": {
    "AllowSuspectData": null,
    "ApplicationName": null,
    "ApplicationId": null
}
 
A blank, or empty, Element is represented by the JSON keyword null.
 
 
"Elements": null