Defining computed values
Last updated
{
"config": {
// ...
"computed_values": {
"data.agents_count": {
"value": {
"type": "jsonlogic",
"schema": {
"+": [
{
"length": {
"var": "input.data.agents"
}
},
{
"var": "input.data.additional_count"
}
]
}
},
"update_when_changes": {
"type": "jsonlogic",
"schema": {
"var": "input.data.additional_count"
}
}
}
}
}
}{
"config": {
// ...
"computed_values": {
"hello": {
"value": {
"type": "jsonlogic",
"schema": "Hello world"
},
"skip_form": true
}
}
}
}