This repository has been archived by the owner on Jan 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
modeling_schema.json
251 lines (251 loc) · 8.37 KB
/
modeling_schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"version": {
"type": "integer",
"description": "Version of this modeling representation",
"const": 1.0
},
"context": {
"type": "string",
"description": "The name of the Bounded Context to which this modeling belongs",
"minLength": 1
},
"environment": {
"type": "string",
"description": "The environment this host belongs to",
"examples": ["PROD", "TEST", "INT", "QUAL"]
},
"runtime_quality_analysis": {
"type": "object",
"properties": {
"monitoring": {
"type": "array",
"description": "Configurations for specified monitoring",
"uniqueItems": true,
"items": {
"type": "object"
}
},
"resilience": {
"type": "array",
"description": "Configurations for specified resilience tests",
"uniqueItems": true,
"items": {
"type": "object"
}
},
"loadtests": {
"type": "array",
"description": "Configurations for specified load tests",
"uniqueItems": true,
"items": {
"type": "object",
"properties": {
"artifact": {
"type": "object",
"properties": {
"object": {
"type": "string",
"description": "dq_id of an Actor or Work Object, where the loadtest was specified"
},
"activity": {
"type": "string",
"description": "dq_id of an Activity inside an object, if the loadtest was specified on an Activity"
}
},
"required": [
"object"
]
},
"description": {
"type": "string",
"description": "Description of this loadtest"
},
"stimulus": {
"anyOf": [
{
"type": "object",
"properties": {
"load_profile": {
"type": "string",
"description": "The Load will increase until a certain peak",
"enum": ["LOAD_PEAK"]
},
"highest_load": {
"type": "string",
"description": "How high should the load peak be",
"enum": ["HIGH", "VERY_HIGH", "EXTREMLY_HIGH"]
},
"time_to_highest_load": {
"type": "string",
"description": "How long should it take to reach the load peek",
"enum": ["SLOW", "FAST", "VERY_FAST"]
},
"accuracy": {
"type": "integer",
"description": "How precise should the load test be in percent",
"minimum": 0,
"maximum": 100
}
},
"required": [
"load_profile",
"highest_load",
"time_to_highest_load",
"accuracy"
],
"additionalProperties": false
},
{
"type": "object",
"properties": {
"load_profile": {
"type": "string",
"description": "The load will increase continuously",
"enum": ["LOAD_INCREASE"]
},
"type_of_increase": {
"type": "string",
"description": "How strong should the load increase",
"enum": ["LINEAR", "QUADRATIC", "CUBIC"]
},
"accuracy": {
"type": "integer",
"description": "How precise should the load test be in percent",
"minimum": 0,
"maximum": 100
}
},
"required": [
"load_profile",
"type_of_increase",
"accuracy"
],
"additionalProperties": false
},
{
"type": "object",
"properties": {
"load_profile": {
"type": "string",
"description": "The load will remain constant",
"enum": ["CONSTANT_LOAD"]
},
"base_load": {
"type": "string",
"description": "How high should the base load be",
"enum": ["LOW", "MEDIUM", "HIGH"]
},
"accuracy": {
"type": "integer",
"description": "How precise should the load test be in percent",
"minimum": 0,
"maximum": 100
}
},
"required": [
"load_profile",
"base_load",
"accuracy"
],
"additionalProperties": false
}
]
},
"parametrization": {
"type": "object",
"description": "References to data sources for parametrization",
"properties": {
"path_variables": {
"type": "object",
"patternProperties": {
".*": {
"type": "string"
}
}
},
"url_parameter": {
"type": "object",
"patternProperties": {
".*": {
"type": "string"
}
}
},
"request_parameter": {
"type": "object",
"patternProperties": {
".*": {
"type": "string"
}
},
"maxProperties": 1
},
"payload": {
"type": "object",
"patternProperties": {
".*": {
"type": "string"
}
},
"maxProperties": 1
}
},
"required": [
"path_variables",
"url_parameter",
"request_parameter",
"payload"
],
"additionalProperties": false
},
"response_measure": {
"type": "object",
"properties": {
"response_time": {
"type": "string",
"description": "",
"enum": ["SATISFIED", "TOLERATED", "FRUSTRATED"]
}
},
"required": [
"response_time"
]
},
"result_metrics": {
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
}
},
"required": [
"artifact",
"stimulus",
"parametrization",
"response_measure",
"result_metrics"
],
"additionalProperties": false
}
}
},
"required": [
"monitoring",
"resilience",
"loadtests"
],
"additionalProperties": false
}
},
"required": [
"version",
"context",
"environment",
"runtime_quality_analysis"
],
"additionalProperties": false
}