chore: go fix

This commit is contained in:
Joel Wetzell
2026-05-09 13:37:02 -05:00
parent 1ac93ebe21
commit 7367f55fa9
10 changed files with 41 additions and 42 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ func GetModulesSchema() *jsonschema.Schema {
Properties: map[string]*jsonschema.Schema{
"id": {
Type: "string",
MinLength: jsonschema.Ptr(1),
MinLength: new(1),
},
"type": {
Const: jsonschema.Ptr[any](mod.Type),
+1 -1
View File
@@ -17,7 +17,7 @@ var RoutesConfigSchema = jsonschema.Schema{
Properties: map[string]*jsonschema.Schema{
"input": {
Type: "string",
MinLength: jsonschema.Ptr(1),
MinLength: new(1),
},
"processors": {
Ref: "https://showbridge.io/processors.schema.json",