Skip to content

Commit

Permalink
chore: improve schema annotataions
Browse files Browse the repository at this point in the history
  • Loading branch information
nikku authored Dec 6, 2024
1 parent 61297e8 commit 41895ea
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -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": ""
}
}
Expand Down

0 comments on commit 41895ea

Please sign in to comment.