From fd95ff9437fa7e095c29573e2512ea684f9f35a1 Mon Sep 17 00:00:00 2001 From: Guiheux Steven Date: Mon, 29 Jun 2020 09:34:41 +0200 Subject: [PATCH] fix(api): jsonschema wrong tag (#5279) --- sdk/exportentities/v2/workflow.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/exportentities/v2/workflow.go b/sdk/exportentities/v2/workflow.go index 9d1b4f225b..f20b577a91 100644 --- a/sdk/exportentities/v2/workflow.go +++ b/sdk/exportentities/v2/workflow.go @@ -48,7 +48,7 @@ type NodeEntry struct { } type ConditionEntry struct { - PlainConditions []PlainConditionEntry `json:"plain,omitempty" yaml:"check,omitempty"` + PlainConditions []PlainConditionEntry `json:"check,omitempty" yaml:"check,omitempty"` LuaScript string `json:"script,omitempty" yaml:"script,omitempty"` }