@camunda/element-templates-json-schema 0.7.0 → 0.8.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/package.json +2 -2
- package/resources/schema.json +180 -91
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camunda/element-templates-json-schema",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "JSON Schema for (Camunda) Element Templates",
|
|
5
5
|
"files": [
|
|
6
6
|
"resources"
|
|
@@ -23,5 +23,5 @@
|
|
|
23
23
|
"camunda"
|
|
24
24
|
],
|
|
25
25
|
"license": "MIT",
|
|
26
|
-
"gitHead": "
|
|
26
|
+
"gitHead": "f4b102f0cdb536cba89e1dbfbe8bd3b58b75a224"
|
|
27
27
|
}
|
package/resources/schema.json
CHANGED
|
@@ -2,19 +2,30 @@
|
|
|
2
2
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
3
3
|
"$id": "http://camunda.org/schema/element-templates/1.0",
|
|
4
4
|
"title": "Element Template Schema",
|
|
5
|
-
"description": "A single element template configuration or an array of element template configurations",
|
|
6
5
|
"definitions": {
|
|
7
6
|
"properties": {
|
|
8
7
|
"allOf": [
|
|
9
8
|
{
|
|
10
9
|
"type": "array",
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
|
|
10
|
+
"description": "List of properties of the element template.",
|
|
11
|
+
"allOf": [
|
|
12
|
+
{
|
|
13
|
+
"examples": [
|
|
14
|
+
[
|
|
15
|
+
{
|
|
16
|
+
"label": "Name",
|
|
17
|
+
"type": "String",
|
|
18
|
+
"binding": {
|
|
19
|
+
"type": "property",
|
|
20
|
+
"name": "name"
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
]
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
],
|
|
14
27
|
"items": {
|
|
15
28
|
"type": "object",
|
|
16
|
-
"title": "element template property",
|
|
17
|
-
"description": "A property defined for the element template",
|
|
18
29
|
"default": {},
|
|
19
30
|
"allOf": [
|
|
20
31
|
{
|
|
@@ -43,53 +54,47 @@
|
|
|
43
54
|
"string",
|
|
44
55
|
"boolean"
|
|
45
56
|
],
|
|
46
|
-
"
|
|
47
|
-
"description": "The value of the control field for the property"
|
|
57
|
+
"description": "The value of a control field."
|
|
48
58
|
},
|
|
49
59
|
"description": {
|
|
50
60
|
"$id": "#/properties/property/description",
|
|
51
61
|
"type": "string",
|
|
52
|
-
"
|
|
53
|
-
"description": "The description of the control field"
|
|
62
|
+
"description": "The description of a control field."
|
|
54
63
|
},
|
|
55
64
|
"label": {
|
|
56
65
|
"$id": "#/properties/property/label",
|
|
57
66
|
"type": "string",
|
|
58
|
-
"
|
|
59
|
-
"description": "The label of the control field for the property"
|
|
67
|
+
"description": "The label of a control field."
|
|
60
68
|
},
|
|
61
69
|
"type": {
|
|
62
70
|
"$id": "#/properties/property/type",
|
|
63
71
|
"type": "string",
|
|
64
|
-
"
|
|
65
|
-
"description": "The type of the control field"
|
|
72
|
+
"description": "The type of a control field."
|
|
66
73
|
},
|
|
67
74
|
"editable": {
|
|
68
75
|
"$id": "#/properties/property/editable",
|
|
69
76
|
"type": "boolean",
|
|
70
|
-
"
|
|
71
|
-
"description": "Indicates whether the property is editable or not"
|
|
77
|
+
"description": "Indicates whether a control field is editable or not."
|
|
72
78
|
},
|
|
73
79
|
"choices": {
|
|
74
80
|
"$id": "#/properties/property/choices",
|
|
75
81
|
"type": "array",
|
|
76
|
-
"
|
|
77
|
-
"
|
|
82
|
+
"description": "The choices for dropdown fields.",
|
|
83
|
+
"default": [],
|
|
78
84
|
"items": {
|
|
79
85
|
"$id": "#/properties/property/choices/item",
|
|
80
86
|
"type": "object",
|
|
87
|
+
"default": {},
|
|
81
88
|
"properties": {
|
|
82
89
|
"name": {
|
|
83
90
|
"$id": "#/properties/property/choices/item/name",
|
|
84
91
|
"type": "string",
|
|
85
|
-
"
|
|
86
|
-
"description": "The name of the choice"
|
|
92
|
+
"description": "The name of a choice."
|
|
87
93
|
},
|
|
88
94
|
"value": {
|
|
89
95
|
"$id": "#/properties/property/choices/item/value",
|
|
90
96
|
"type": "string",
|
|
91
|
-
"
|
|
92
|
-
"description": "The value of the choice"
|
|
97
|
+
"description": "The value of a choice."
|
|
93
98
|
}
|
|
94
99
|
},
|
|
95
100
|
"required": [
|
|
@@ -102,46 +107,49 @@
|
|
|
102
107
|
"constraints": {
|
|
103
108
|
"$id": "#/properties/property/constraints",
|
|
104
109
|
"type": "object",
|
|
105
|
-
"
|
|
106
|
-
"
|
|
110
|
+
"description": "The validation constraints of a control field.",
|
|
111
|
+
"allOf": [
|
|
112
|
+
{
|
|
113
|
+
"examples": [
|
|
114
|
+
{
|
|
115
|
+
"notEmpty": true
|
|
116
|
+
}
|
|
117
|
+
]
|
|
118
|
+
}
|
|
119
|
+
],
|
|
107
120
|
"properties": {
|
|
108
121
|
"notEmpty": {
|
|
109
122
|
"$id": "#/properties/property/constraints/notEmpty",
|
|
110
123
|
"type": "boolean",
|
|
111
|
-
"
|
|
112
|
-
"description": "The control field must not be empty"
|
|
124
|
+
"description": "The control field must not be empty."
|
|
113
125
|
},
|
|
114
126
|
"minLength": {
|
|
115
127
|
"$id": "#/properties/property/constraints/minLength",
|
|
116
128
|
"type": "number",
|
|
117
|
-
"
|
|
118
|
-
"description": "The minimal length for the control field value"
|
|
129
|
+
"description": "The minimal length of a control field value."
|
|
119
130
|
},
|
|
120
131
|
"maxLength": {
|
|
121
132
|
"$id": "#/properties/property/constraints/maxLength",
|
|
122
133
|
"type": "number",
|
|
123
|
-
"
|
|
124
|
-
"description": "The maximal length for the control field value"
|
|
134
|
+
"description": "The maximal length for a control field value."
|
|
125
135
|
},
|
|
126
136
|
"pattern": {
|
|
127
137
|
"$id": "#/properties/property/constraints/pattern",
|
|
128
|
-
"
|
|
129
|
-
"description": "A regular expression pattern for the constraints",
|
|
138
|
+
"description": "A regular expression pattern for a constraint.",
|
|
130
139
|
"oneOf": [
|
|
131
140
|
{
|
|
132
141
|
"type": "object",
|
|
142
|
+
"default": {},
|
|
133
143
|
"properties": {
|
|
134
144
|
"value": {
|
|
135
145
|
"$id": "#/properties/property/constraints/pattern/value",
|
|
136
146
|
"type": "string",
|
|
137
|
-
"
|
|
138
|
-
"description": "The regular expression of the pattern constraint"
|
|
147
|
+
"description": "The regular expression of a pattern."
|
|
139
148
|
},
|
|
140
149
|
"message": {
|
|
141
150
|
"$id": "#/properties/property/constraints/pattern/message",
|
|
142
151
|
"type": "string",
|
|
143
|
-
"
|
|
144
|
-
"description": "The validation message of the pattern constraint"
|
|
152
|
+
"description": "The validation message of a pattern."
|
|
145
153
|
}
|
|
146
154
|
}
|
|
147
155
|
},
|
|
@@ -155,8 +163,7 @@
|
|
|
155
163
|
"group": {
|
|
156
164
|
"$id": "#/properties/property/group",
|
|
157
165
|
"type": "string",
|
|
158
|
-
"
|
|
159
|
-
"description": "The custom group of the control field for the property"
|
|
166
|
+
"description": "The custom group of a control field."
|
|
160
167
|
}
|
|
161
168
|
}
|
|
162
169
|
}
|
|
@@ -164,13 +171,9 @@
|
|
|
164
171
|
{
|
|
165
172
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
166
173
|
"type": "array",
|
|
167
|
-
"
|
|
168
|
-
"description": "The properties of the element template",
|
|
169
|
-
"default": [],
|
|
174
|
+
"description": "List of properties of the element template.",
|
|
170
175
|
"items": {
|
|
171
176
|
"type": "object",
|
|
172
|
-
"title": "element template property",
|
|
173
|
-
"description": "A property defined for the element template",
|
|
174
177
|
"default": {},
|
|
175
178
|
"required": [
|
|
176
179
|
"binding"
|
|
@@ -321,8 +324,7 @@
|
|
|
321
324
|
"binding": {
|
|
322
325
|
"$id": "#/properties/property/binding",
|
|
323
326
|
"type": "object",
|
|
324
|
-
"
|
|
325
|
-
"description": "A binding to a BPMN 2.0 property",
|
|
327
|
+
"description": "Specifying how the property is mapped to BPMN or Camunda extension elements and attributes.",
|
|
326
328
|
"required": [
|
|
327
329
|
"type"
|
|
328
330
|
],
|
|
@@ -512,13 +514,59 @@
|
|
|
512
514
|
],
|
|
513
515
|
"errorMessage": "property.binding ${0/type} requires errorRef"
|
|
514
516
|
}
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
"examples": [
|
|
520
|
+
{
|
|
521
|
+
"type": "property",
|
|
522
|
+
"name": "name"
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"type": "camunda:property",
|
|
526
|
+
"name": "property"
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"type": "camunda:inputParameter",
|
|
530
|
+
"name": "input"
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"type": "camunda:outputParameter",
|
|
534
|
+
"source": "output"
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"type": "camunda:in",
|
|
538
|
+
"target": "target"
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
"type": "camunda:in:businessKey"
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"type": "camunda:out",
|
|
545
|
+
"source": "output"
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"type": "camunda:executionListener",
|
|
549
|
+
"event": "start"
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
"type": "camunda:field",
|
|
553
|
+
"name": "field"
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"type": "camunda:errorEventDefinition",
|
|
557
|
+
"errorRef": "error"
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
"type": "camunda:errorEventDefinition",
|
|
561
|
+
"errorRef": "error"
|
|
562
|
+
}
|
|
563
|
+
]
|
|
515
564
|
}
|
|
516
565
|
],
|
|
517
566
|
"properties": {
|
|
518
567
|
"type": {
|
|
519
568
|
"$id": "#/properties/property/binding/type",
|
|
520
569
|
"type": "string",
|
|
521
|
-
"title": "property binding type",
|
|
522
570
|
"enum": [
|
|
523
571
|
"property",
|
|
524
572
|
"camunda:property",
|
|
@@ -532,59 +580,51 @@
|
|
|
532
580
|
"camunda:errorEventDefinition"
|
|
533
581
|
],
|
|
534
582
|
"errorMessage": "invalid property.binding type ${0}; must be any of { property, camunda:property, camunda:inputParameter, camunda:outputParameter, camunda:in, camunda:out, camunda:in:businessKey, camunda:executionListener, camunda:field, camunda:errorEventDefinition }",
|
|
535
|
-
"description": "The type of
|
|
583
|
+
"description": "The type of a property binding."
|
|
536
584
|
},
|
|
537
585
|
"name": {
|
|
538
586
|
"$id": "#/properties/property/binding/name",
|
|
539
587
|
"type": "string",
|
|
540
|
-
"
|
|
541
|
-
"description": "The name of binding xml property"
|
|
588
|
+
"description": "The name of a property binding."
|
|
542
589
|
},
|
|
543
590
|
"event": {
|
|
544
591
|
"$id": "#/properties/property/binding/event",
|
|
545
592
|
"type": "string",
|
|
546
|
-
"
|
|
547
|
-
"description": "The event type of an execution listener binding"
|
|
593
|
+
"description": "The event type of a property binding (camunda:executionListener)."
|
|
548
594
|
},
|
|
549
595
|
"scriptFormat": {
|
|
550
596
|
"$id": "#/properties/property/binding/scriptFormat",
|
|
551
597
|
"type": "string",
|
|
552
|
-
"
|
|
553
|
-
"description": "The format of a script property binding (camunda:outputParameter, camunda:inputParameter)"
|
|
598
|
+
"description": "The script format of a property binding (camunda:outputParameter, camunda:inputParameter)."
|
|
554
599
|
},
|
|
555
600
|
"source": {
|
|
556
601
|
"$id": "#/properties/property/binding/source",
|
|
557
602
|
"type": "string",
|
|
558
|
-
"
|
|
559
|
-
"description": "The source value of a property binding (camunda:outputParameter, camunda:out)"
|
|
603
|
+
"description": "The source value of a property binding (camunda:outputParameter, camunda:out)."
|
|
560
604
|
},
|
|
561
605
|
"target": {
|
|
562
606
|
"$id": "#/properties/property/binding/target",
|
|
563
607
|
"type": "string",
|
|
564
|
-
"
|
|
565
|
-
"description": "The target value to be mapped to (camunda:in)"
|
|
608
|
+
"description": "The target value of a property binding (camunda:in)."
|
|
566
609
|
},
|
|
567
610
|
"expression": {
|
|
568
611
|
"$id": "#/properties/property/binding/expression",
|
|
569
612
|
"type": "boolean",
|
|
570
|
-
"
|
|
571
|
-
"description": "True indicates that the control field value is an expression (camunda:in, camunda:field)"
|
|
613
|
+
"description": "Indicates whether the control field value is an expression (camunda:in, camunda:field)."
|
|
572
614
|
},
|
|
573
615
|
"variables": {
|
|
574
616
|
"$id": "#/properties/property/binding/variables",
|
|
575
617
|
"type": "string",
|
|
576
|
-
"title": "property binding variables",
|
|
577
618
|
"enum": [
|
|
578
619
|
"all",
|
|
579
620
|
"local"
|
|
580
621
|
],
|
|
581
|
-
"description": "
|
|
622
|
+
"description": "The variable mapping of a property binding (camunda:in)."
|
|
582
623
|
},
|
|
583
624
|
"sourceExpression": {
|
|
584
625
|
"$id": "#/properties/property/binding/sourceExpression",
|
|
585
626
|
"type": "string",
|
|
586
|
-
"
|
|
587
|
-
"description": "The string containing the expression for the source attribute (camunda:out)"
|
|
627
|
+
"description": "The string containing the expression for the source attribute (camunda:out)."
|
|
588
628
|
}
|
|
589
629
|
}
|
|
590
630
|
}
|
|
@@ -607,38 +647,32 @@
|
|
|
607
647
|
"name": {
|
|
608
648
|
"$id": "#/name",
|
|
609
649
|
"type": "string",
|
|
610
|
-
"
|
|
611
|
-
"description": "The name of the element template"
|
|
650
|
+
"description": "The name of the element template."
|
|
612
651
|
},
|
|
613
652
|
"id": {
|
|
614
653
|
"$id": "#/id",
|
|
615
654
|
"type": "string",
|
|
616
|
-
"
|
|
617
|
-
"description": "The identifier of the element template"
|
|
655
|
+
"description": "The identifier of the element template."
|
|
618
656
|
},
|
|
619
657
|
"description": {
|
|
620
658
|
"$id": "#/description",
|
|
621
659
|
"type": "string",
|
|
622
|
-
"
|
|
623
|
-
"description": "The description of the element template"
|
|
660
|
+
"description": "The description of the element template."
|
|
624
661
|
},
|
|
625
662
|
"version": {
|
|
626
663
|
"$id": "#/version",
|
|
627
664
|
"type": "number",
|
|
628
|
-
"
|
|
629
|
-
"description": "The version of the element template"
|
|
665
|
+
"description": "Optional version of the template. If you add a version to a template it will be considered unique based on its ID and version. Two templates can have the same ID if their version is different."
|
|
630
666
|
},
|
|
631
667
|
"isDefault": {
|
|
632
668
|
"$id": "#/isDefault",
|
|
633
669
|
"type": "boolean",
|
|
634
|
-
"
|
|
635
|
-
"description": "Indicates whether the element template is a default template"
|
|
670
|
+
"description": "Indicates whether the element template is a default template."
|
|
636
671
|
},
|
|
637
672
|
"appliesTo": {
|
|
638
673
|
"$id": "#/appliesTo",
|
|
639
674
|
"type": "array",
|
|
640
|
-
"
|
|
641
|
-
"description": "The definition for which element types the element template can be applied",
|
|
675
|
+
"description": "List of BPMN types the template can be applied to.",
|
|
642
676
|
"default": [],
|
|
643
677
|
"items": {
|
|
644
678
|
"$id": "#/appliesTo/items",
|
|
@@ -646,32 +680,51 @@
|
|
|
646
680
|
"pattern": "^(.*?:)",
|
|
647
681
|
"errorMessage": {
|
|
648
682
|
"pattern": "invalid item for \"appliesTo\", should contain namespaced property, example: \"bpmn:Task\""
|
|
649
|
-
}
|
|
683
|
+
},
|
|
684
|
+
"allOf": [
|
|
685
|
+
{
|
|
686
|
+
"examples": [
|
|
687
|
+
"bpmn:Task",
|
|
688
|
+
"bpmn:ServiceTask",
|
|
689
|
+
"bpmn:SequenceFlow",
|
|
690
|
+
"bpmn:Process",
|
|
691
|
+
"bpmn:StartEvent",
|
|
692
|
+
"bpmn:Gateway"
|
|
693
|
+
]
|
|
694
|
+
}
|
|
695
|
+
]
|
|
650
696
|
}
|
|
651
697
|
},
|
|
652
698
|
"metadata": {
|
|
653
699
|
"$id": "#/metadata",
|
|
654
700
|
"type": "object",
|
|
655
|
-
"
|
|
656
|
-
"
|
|
701
|
+
"description": "Some custom properties for further configuration.",
|
|
702
|
+
"default": {}
|
|
657
703
|
},
|
|
658
704
|
"entriesVisible": {
|
|
659
705
|
"$id": "#/entriesVisible",
|
|
660
706
|
"type": "boolean",
|
|
661
|
-
"
|
|
662
|
-
"description": "Select whether non-template entries are visible in the properties panel"
|
|
707
|
+
"description": "Select whether non-template entries are visible in the properties panel."
|
|
663
708
|
},
|
|
664
709
|
"groups": {
|
|
665
710
|
"$id": "#/groups",
|
|
666
711
|
"type": "array",
|
|
667
|
-
"
|
|
668
|
-
"
|
|
669
|
-
|
|
712
|
+
"description": "Custom fields can be ordered together via groups.",
|
|
713
|
+
"allOf": [
|
|
714
|
+
{
|
|
715
|
+
"examples": [
|
|
716
|
+
[
|
|
717
|
+
{
|
|
718
|
+
"id": "group-1",
|
|
719
|
+
"label": "My Group"
|
|
720
|
+
}
|
|
721
|
+
]
|
|
722
|
+
]
|
|
723
|
+
}
|
|
724
|
+
],
|
|
670
725
|
"items": {
|
|
671
726
|
"$id": "#/groups/group",
|
|
672
727
|
"type": "object",
|
|
673
|
-
"title": "element template group",
|
|
674
|
-
"description": "A custom defined group for the element template",
|
|
675
728
|
"default": {},
|
|
676
729
|
"required": [
|
|
677
730
|
"id",
|
|
@@ -687,13 +740,11 @@
|
|
|
687
740
|
"id": {
|
|
688
741
|
"$id": "#/groups/group/id",
|
|
689
742
|
"type": "string",
|
|
690
|
-
"title": "group id",
|
|
691
743
|
"description": "The id of the custom group"
|
|
692
744
|
},
|
|
693
745
|
"label": {
|
|
694
746
|
"$id": "#/groups/group/label",
|
|
695
747
|
"type": "string",
|
|
696
|
-
"title": "group label",
|
|
697
748
|
"description": "The label of the custom group"
|
|
698
749
|
}
|
|
699
750
|
}
|
|
@@ -718,17 +769,51 @@
|
|
|
718
769
|
"scopes": {
|
|
719
770
|
"$id": "#/scopes",
|
|
720
771
|
"type": "array",
|
|
721
|
-
"
|
|
722
|
-
"
|
|
772
|
+
"description": "Special scoped bindings that allow you to configure nested elements.",
|
|
773
|
+
"allOf": [
|
|
774
|
+
{
|
|
775
|
+
"examples": [
|
|
776
|
+
[
|
|
777
|
+
{
|
|
778
|
+
"type": "bpmn:Error",
|
|
779
|
+
"id": "Error_1",
|
|
780
|
+
"properties": [
|
|
781
|
+
{
|
|
782
|
+
"value": "error-code",
|
|
783
|
+
"binding": {
|
|
784
|
+
"type": "property",
|
|
785
|
+
"name": "errorCode"
|
|
786
|
+
}
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
"value": "error-message",
|
|
790
|
+
"binding": {
|
|
791
|
+
"type": "property",
|
|
792
|
+
"name": "camunda:errorMessage"
|
|
793
|
+
}
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
"value": "error-name",
|
|
797
|
+
"binding": {
|
|
798
|
+
"type": "property",
|
|
799
|
+
"name": "name"
|
|
800
|
+
}
|
|
801
|
+
}
|
|
802
|
+
]
|
|
803
|
+
}
|
|
804
|
+
]
|
|
805
|
+
]
|
|
806
|
+
}
|
|
807
|
+
],
|
|
723
808
|
"items": {
|
|
724
809
|
"$id": "#/scopes/item",
|
|
725
810
|
"type": "object",
|
|
726
|
-
"
|
|
727
|
-
"description": "Scoped binding to configure nested elements",
|
|
811
|
+
"default": {},
|
|
728
812
|
"properties": {
|
|
729
813
|
"type": {
|
|
730
814
|
"$id": "#scopes/item/type",
|
|
731
815
|
"type": "string",
|
|
816
|
+
"description": "The type of a scope.",
|
|
732
817
|
"enum": [
|
|
733
818
|
"camunda:Connector",
|
|
734
819
|
"bpmn:Error"
|
|
@@ -737,6 +822,8 @@
|
|
|
737
822
|
},
|
|
738
823
|
"properties": {
|
|
739
824
|
"$id": "#/scopes/properties",
|
|
825
|
+
"description": "List of properties of a scope.",
|
|
826
|
+
"default": [],
|
|
740
827
|
"allOf": [
|
|
741
828
|
{
|
|
742
829
|
"$ref": "#/definitions/properties/allOf/0"
|
|
@@ -786,10 +873,12 @@
|
|
|
786
873
|
},
|
|
787
874
|
"oneOf": [
|
|
788
875
|
{
|
|
876
|
+
"description": "An element template configuration.",
|
|
789
877
|
"$ref": "#/definitions/template"
|
|
790
878
|
},
|
|
791
879
|
{
|
|
792
880
|
"type": "array",
|
|
881
|
+
"description": "A list of element template configurations.",
|
|
793
882
|
"items": {
|
|
794
883
|
"$ref": "#/definitions/template"
|
|
795
884
|
}
|