add description information to params for processors

This commit is contained in:
Joel Wetzell
2026-06-01 17:55:30 -05:00
parent 56566cf666
commit 73905e1274
32 changed files with 204 additions and 142 deletions
+9 -6
View File
@@ -23,19 +23,22 @@ func init() {
Type: "object",
Properties: map[string]*jsonschema.Schema{
"address": {
Title: "Address",
Type: "string",
Title: "Address",
Description: "OSC address for the message",
Type: "string",
},
"args": {
Title: "Arguments",
Type: "array",
Title: "Arguments",
Description: "Arguments for the OSC message",
Type: "array",
Items: &jsonschema.Schema{
Type: "string",
},
},
"types": {
Title: "Argument Types",
Type: "string",
Title: "Argument Types",
Description: "string of OSC types corresponding to the arguments",
Type: "string",
},
},
Required: []string{"address"},