@camunda/element-templates-json-schema 0.12.0 → 0.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # @camunda/element-templates-json-schema
2
2
 
3
- [![Build Status](https://img.shields.io/github/workflow/status/camunda/element-templates-json-schema/CI)](https://github.com/camunda/element-templates-json-schema/actions?query=workflow%3ACI)
3
+ [![Build Status](https://img.shields.io/github/actions/workflow/status/camunda/element-templates-json-schema/CI.yml?branch=master)](https://github.com/camunda/element-templates-json-schema/actions?query=workflow%3ACI)
4
+
4
5
 
5
6
 
6
7
  JSON Schema for [(Camunda) Element Templates](https://docs.camunda.org/manual/latest/modeler/element-templates/). The schema is built on top of and validated by [`json-schema@draft-07`](https://json-schema.org/draft-07/json-schema-release-notes.html).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camunda/element-templates-json-schema",
3
- "version": "0.12.0",
3
+ "version": "0.13.0",
4
4
  "description": "JSON Schema for (Camunda) Element Templates",
5
5
  "files": [
6
6
  "resources"
@@ -25,5 +25,5 @@
25
25
  "camunda"
26
26
  ],
27
27
  "license": "MIT",
28
- "gitHead": "9e7328bdb70118c0f71cc21563b2c00d6946d242"
28
+ "gitHead": "ba2fc757776278d7cc47dff43b3a6175232343b3"
29
29
  }
@@ -772,6 +772,27 @@
772
772
  "type": "boolean",
773
773
  "description": "Indicates whether the element template is a default template."
774
774
  },
775
+ "deprecated": {
776
+ "$id": "#/deprecated",
777
+ "type": [
778
+ "boolean",
779
+ "object"
780
+ ],
781
+ "description": "Indicates whether the element template is deprecated.",
782
+ "properties": {
783
+ "message": {
784
+ "$id": "#/deprecated/message",
785
+ "type": "string",
786
+ "description": "Optional message to describe migration path."
787
+ },
788
+ "documentationRef": {
789
+ "$id": "#/deprecated/documentationRef",
790
+ "type": "string",
791
+ "pattern": "^(https|http)://.*",
792
+ "description": "Optional link to migration documentation."
793
+ }
794
+ }
795
+ },
775
796
  "appliesTo": {
776
797
  "$id": "#/appliesTo",
777
798
  "type": "array",