From 41895ea3e9517d8436ffebfacb648414dbbd9ca1 Mon Sep 17 00:00:00 2001 From: Nico Rehwaldt Date: Fri, 6 Dec 2024 10:35:10 +0100 Subject: [PATCH] chore: improve schema annotataions --- .../src/defs/engines.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/zeebe-element-templates-json-schema/src/defs/engines.json b/packages/zeebe-element-templates-json-schema/src/defs/engines.json index eff40aa..f13eab8 100644 --- a/packages/zeebe-element-templates-json-schema/src/defs/engines.json +++ b/packages/zeebe-element-templates-json-schema/src/defs/engines.json @@ -1,18 +1,18 @@ { "$id": "#/engines", "type": "object", - "description": "List of engines and their versions compatible with this version of the template.", + "description": "Defines the compatibility of this element template with different engines. Keys are engine names, values are semantic version ranges.", "default": {}, "examples": [ { - "camunda": "*" + "camunda": "^8.5" } ], "properties": { "camunda": { "$id": "#/engines/camunda", "type": "string", - "description": "List of compatible Camunda 8 versions. Use semantic versioning. You can skip patch versions.", + "description": "A semantic version range that denotes compatible Camunda versions.", "default": "" } }