I am using OT Communications 25.1 and have some incoming data in json…. (simplified)
{
"generalData": {
"displayName": "Test"
},
"description": {
"about": "Test"
},
"documentMeta": {
"documentLanguage": "sv",
"documentAnonymous": false,
"compactMode": false,
"numberOfCategories": 1
}
}
The variables documentLanguage and documentAnonymous do not have any values when document is generated…… but…. if we move it around like this:
{
"documentMeta": {
"documentLanguage": "sv",
"documentAnonymous": false,
"compactMode": false,
"numberOfCategories": 1
},
"generalData": {
"displayName": "Test"
},
"description": {
"about": "Test"
}
}
Then we do get values in the fields. “sv” and false.
I have presented a simplified version of the json which otherwise:
- Is json valid
- Has no repeating field names
- All camelCase
- Has max 3 levels in other data sections
Is there an END CUSTOMER signal that may have been automatically created that I have missed?
Can anyone explain it?
Fingers crossed.