So, I’m trying to use the whole Using Values as Parameters feature, and I’ve managed to get it to work, but I found what I think to be a bug. You cannot currently use a select type to pick a set of values. I used the same code below as a choose type, and it worked fine. Would it be possible to add a select type to be able to be used to group a set of values?
{
"cat" : {
"label": "Category Type",
"type": "select",
"initial" : "Restoration",
"options": [
{
"value": {
"color": "#a6380a",
"title": "Foundations for Victory"
},
"label": "Foundations"
},
{
"value": {
"color": "#f26321",
"title": "Areas of Restoration"
},
"label": "Restoration"
}
]
},
"title" : {
"type" : "text",
"label" : "Page Title",
"initial" : "{{dc:post:title}}"
},
"bg-image" : {
"type" : "image",
"label" : "Background Image",
"initial" : "3952:full"
}
}

