Hi,
the protocol specification for array primitives is a little bit rare. Therefore I have some questions.
1.) Is the following json sample syntax in case of a UInt- or AsciiString-array also valid?
- "Elements": {
- "Name": "ERT_FD3_LF1",
- "SupportsQoSRange": 0,
- "Capabilities": {
- "Type": "Array",
- "Data": [5,6,10,11,13,18,19]
- }
- },
- "Elements": {
- "Name": "ERT_FD3_LF1",
- "SupportsQoSRange": 0,
- "Capabilities": {
- "Type": "Array",
- "Data": ["D1", "D2"]
- }
- },
2.) Could a array have a data-property with null, like following?
- "Elements": {
- "Name": "ERT_FD3_LF1",
- "SupportsQoSRange": 0,
- "Capabilities": {
- "Type": "Array",
- "Data": null
- }
- },
3.) or it should be a empty-Array like this:
- "Elements": {
- "Name": "ERT_FD3_LF1",
- "SupportsQoSRange": 0,
- "Capabilities": {
- "Type": "Array",
- "Data": [ ]
- }
- },