Merge pull request #176 from jwetzell/fix/http-response-schema

align http.response.create schema with reality
This commit is contained in:
Joel Wetzell
2026-05-27 20:59:17 -05:00
committed by GitHub
+3 -3
View File
@@ -22,12 +22,12 @@ func init() {
Title: "Status Code",
Type: "integer",
},
"body": {
Title: "Body",
"bodyTemplate": {
Title: "Body Template",
Type: "string",
},
},
Required: []string{"status", "body"},
Required: []string{"status", "bodyTemplate"},
AdditionalProperties: &jsonschema.Schema{Not: &jsonschema.Schema{}},
},
New: func(config config.ProcessorConfig) (Processor, error) {