I have the following object which I need to store in Cassandra. Do I need to use UDT or is there any other way to store the object. I need to finally store this from spring-boot application using Repository approach.
{
"name": "Krishna",
"age" : 24,
"address" : [
{
"attributes" : [
{
"name": "",
"value" : ""
}
],
"contactnumbers" : [ "123123234", "123456"]
}
],
"devices" : [
"android_pixel",
"ios_6s"
]
}