-
Notifications
You must be signed in to change notification settings - Fork 63
Description
Hi,
I am facing the issue if i want key to me dyanmic then in value is not getting evaluated.
For Example:
"occupancy_pricing": {
"{{meals[0].meal[0].id}}": {
"nightly": [
[
{
"type": "sales_tax",
"value": "0",
"currency": "{{ meals[0].meal[0].prices[0].price[0].attribute_value.currency}}"
},
{
"type": "base_rate",
"value": "0",
"currency": "{{ meals[0].meal[0].prices[0].price[0].attribute_value.currency}}"
}
]
]
results in
"occupancy_pricing": {
"AA": {
"nightly": [
[
{
"type": "sales_tax",
"value": "0",
"currency": "{{ meals[0].meal[0].prices[0].price[0].attribute_value.currency}}"
},
{
"type": "base_rate",
"value": "0",
"currency": "{{ meals[0].meal[0].prices[0].price[0].attribute_value.currency}}"
}
]
],
where as with static key it works fine.