but i want to receive JSON data without converting to string, is there any way to do it ?
schema section in the event :
{
"type": "string",
"optional": true,
"name": "io.debezium.data.Json",
"version": 1,
"field": "params"
},
{
"type": "string",
"optional": true,
"name": "io.debezium.data.Json",
"version": 1,
"field": "labels"
}
payload section in the event :
{
"params": "[{\"desc\":\"aad\",\"name\":\"para\",\"type\":\"String\",\"defaultVal\":\"pra\"},{\"desc\":\"Array\",\"name\":\"testing\",\"type\":\"Object\",\"attributes\":\"yrs,uhgl\"}]",
"labels": "[{\"value\":\"asfsf\",\"dimension\":\"saf\"}]"
}
{
"params": [{"desc":"aad","name":"para","type":"String","defaultVal":"pra"},{"desc":"Array","name":"testing","type":"Object","attributes":"yrs,uhgl"}],
"labels": [{"value":"asfsf","dimension":"saf"}]
}