From 9b5a9ce6d03dfa74a52ccc1afc2e2f01c379c0f6 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Wed, 27 May 2026 20:54:11 -0500 Subject: [PATCH] align http.response.create schema with reality --- internal/processor/http-response-create.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/processor/http-response-create.go b/internal/processor/http-response-create.go index d3ceae9..db4e517 100644 --- a/internal/processor/http-response-create.go +++ b/internal/processor/http-response-create.go @@ -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) {