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
+7 -5
View File
@@ -22,13 +22,15 @@ func init() {
Type: "object",
Properties: map[string]*jsonschema.Schema{
"method": {
Title: "HTTP Method",
Type: "string",
Enum: []any{"GET", "POST", "PUT", "PATCH", "DELETE"},
Title: "HTTP Method",
Description: "method to use for the HTTP request",
Type: "string",
Enum: []any{"GET", "POST", "PUT", "PATCH", "DELETE"},
},
"url": {
Title: "URL",
Type: "string",
Title: "URL",
Description: "URL to send the HTTP request to",
Type: "string",
},
},
Required: []string{"method", "url"},