don't make params schema required if all properties are optional

This commit is contained in:
Joel Wetzell
2026-05-20 17:27:32 -05:00
parent 70c4aa172a
commit 1bbe0cc045
2 changed files with 6 additions and 2 deletions
+3 -1
View File
@@ -43,7 +43,9 @@ func GetModulesSchema() *jsonschema.Schema {
}
if mod.ParamsSchema != nil {
moduleSchema.Properties["params"] = mod.ParamsSchema
moduleSchema.Required = append(moduleSchema.Required, "params")
if len(mod.ParamsSchema.Required) > 0 {
moduleSchema.Required = append(moduleSchema.Required, "params")
}
}
moduleDefinitionSchemas = append(moduleDefinitionSchemas, moduleSchema)
}
+3 -1
View File
@@ -39,7 +39,9 @@ func GetProcessorsSchema() *jsonschema.Schema {
}
if proc.ParamsSchema != nil {
processorSchema.Properties["params"] = proc.ParamsSchema
processorSchema.Required = append(processorSchema.Required, "params")
if len(proc.ParamsSchema.Required) > 0 {
processorSchema.Required = append(processorSchema.Required, "params")
}
}
processorDefinitionSchemas = append(processorDefinitionSchemas, processorSchema)
}