how to convert list of values to list of dictionaries.
source:
{
"key": "clo_nomen",
"values": [
"7616999099",
"34567",
"9876543"
]
}
and needed result should be
{
"key": "clo_nomen",
"values": [
"7616999099",
"34567",
"9876543"
],
"dic_values": [
{
"value":"7616999099"
},
{
"value":"34567"
},
{
"value":"9876543"
}
]
}