Manage JSON Using Azure Logic Apps

Описание к видео Manage JSON Using Azure Logic Apps

Insert booking details to cars json

INPUT:
{
"cars": {
"Nissan": [
{
"model": "Sentra",
"doors": 4
},
{
"model": "Maxima",
"doors": 4
},
{
"model": "Skyline",
"doors": 2
}
],
"Ford": [
{
"model": "Taurus",
"doors": 4
},
{
"model": "Escort",
"doors": 4
}
]
}
}

OUTPUT:

{
"cars": {
"Nissan": [
{
"model": "Sentra",
"doors": 4,
"Booking":{
"Date":"22/02/2024",
"Delivery":"24/05/2024",
"Color":"Red",
"PaymentMethod":"CC"
}
},
{
"model": "Maxima",
"doors": 4
},
{
"model": "Skyline",
"doors": 2
}
],
"Ford": [
{
"model": "Taurus",
"doors": 4
},
{
"model": "Escort",
"doors": 4
}
]
}
}

Комментарии

Информация по комментариям в разработке