Goal: Be able to update select attributes on defaults JSON object so that projects may update the value of attributes like the "indexed."
Syntax:
{
"schema": {
"additional_members": {
"indexed": {"type": "bool", "adjustable": true}
}
},
"myparam": {
"title": "My Param",
"description": "My demo parameter.",
"type": "float",
"value": 10.0,
"indexed": true
}
}
params.adjust({
"myparam": [{"indexed": False}]
})
Effect: Updates value of "indexed" in "myparam" in params._data
Goal: Be able to update select attributes on defaults JSON object so that projects may update the value of attributes like the "indexed."
Syntax:
{ "schema": { "additional_members": { "indexed": {"type": "bool", "adjustable": true} } }, "myparam": { "title": "My Param", "description": "My demo parameter.", "type": "float", "value": 10.0, "indexed": true } }Effect: Updates value of "indexed" in "myparam" in
params._data