Hi,
One of my table column names has a double dot in it and that column name is not getting completely converted to JSON. I noticed that JSON build truncated my column name at the first occurrence of dot. Is there a way to fix this?
Thanks in advance.
JSON build input table:
| RecordID | name.familyName | name.givenName | urn:ietf:params:scim:schemas:extension:pbx:1.0:User.pbxPhoneExtNumber | userName |
| 1 | UAT1 | User1 | 445005 | uat1.user1@domain.com |
| 2 | | | | |
| 3 | | | | |
| | …and more… | | | |
JSON output:
{
"name":{
"givenName":"UAT1",
"familyName":"User1"
},
"urn:ietf:params:scim:schemas:extension:pbx:1":[
{
"pbxPhoneExtNumber":"445005"
}
],
"userName":"user1.uat1@domain.com"
}How can I change this,
"urn:ietf:params:scim:schemas:extension:pbx:1"
To this (correct wanted output),
"urn:ietf:params:scim:schemas:extension:pbx:1.0:User"