Я хочу преобразовать существующие данные в другие. Пожалуйста, найдите ниже существующий код и ожидаемый код.
Существующий:
{
"title": "title1",
"ребенок": [
{
"title": "Заголовок",
«Ребенок»:
[
{
"title": "test",
«Ребенок»:
[
{
"title": "testchild",
},
{
"title": "Descriptionchild",
}
]
},
{
"title": "Description",
}
]
}
]
}
Ожидаемый:
{
"title": "title1",
"customId": "title1-xx"
"ребенок": [
{
"title": "Заголовок",
"customId": "Header1-xx",
«Ребенок»:
[
{
"title": "test",
"customId": "test1-xx",
«Ребенок»:
[
{
"title": "testchild",
"customId": "testchild1-xx"
},
{
"title": "Descriptionchild",
"customId": "Descriptionchild1-xx"
}
]
},
{
"title": "Description",
"customId": "Description1-xx"
}
]
}
]
}