@toolproof-npm/schema 0.1.48 → 0.1.51
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/dist/genesis/generated/resources/Genesis.json +164 -191
- package/dist/genesis/generated/schemas/Genesis.json +157 -184
- package/dist/genesis/generated/schemas/Job.json +20 -22
- package/dist/genesis/generated/schemas/ResourceFormat.json +14 -16
- package/dist/genesis/generated/schemas/ResourceType.json +36 -33
- package/dist/genesis/generated/schemas/StatefulStrategy.json +225 -251
- package/dist/genesis/generated/schemas/StatelessStrategy.json +103 -123
- package/dist/genesis/generated/types/types.d.ts +549 -149
- package/dist/genesis/resourceTypes/Genesis.json +164 -191
- package/package.json +1 -1
|
@@ -2,59 +2,24 @@
|
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"type": "object",
|
|
4
4
|
"allOf": [
|
|
5
|
-
{
|
|
6
|
-
"properties": {
|
|
7
|
-
"identity": {
|
|
8
|
-
"$ref": "#/$defs/StatefulStrategyIdentity"
|
|
9
|
-
},
|
|
10
|
-
"statelessStrategy": {
|
|
11
|
-
"$ref": "#/$defs/StatelessStrategy"
|
|
12
|
-
}
|
|
13
|
-
},
|
|
14
|
-
"required": [
|
|
15
|
-
"identity",
|
|
16
|
-
"statelessStrategy"
|
|
17
|
-
]
|
|
18
|
-
},
|
|
19
5
|
{
|
|
20
6
|
"$ref": "#/$defs/StrategyStateWrapper"
|
|
21
7
|
}
|
|
22
8
|
],
|
|
9
|
+
"properties": {
|
|
10
|
+
"identity": {
|
|
11
|
+
"$ref": "#/$defs/StatefulStrategyIdentity"
|
|
12
|
+
},
|
|
13
|
+
"statelessStrategy": {
|
|
14
|
+
"$ref": "#/$defs/StatelessStrategy"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"required": [
|
|
18
|
+
"identity",
|
|
19
|
+
"statelessStrategy"
|
|
20
|
+
],
|
|
23
21
|
"$anchor": "StatefulStrategy",
|
|
24
22
|
"$defs": {
|
|
25
|
-
"StatefulStrategyIdentity": {
|
|
26
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
27
|
-
"type": "string",
|
|
28
|
-
"$anchor": "StatefulStrategyIdentity",
|
|
29
|
-
"pattern": "^STATEFUL_STRATEGY-.+$"
|
|
30
|
-
},
|
|
31
|
-
"StatelessStrategy": {
|
|
32
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
33
|
-
"type": "object",
|
|
34
|
-
"allOf": [
|
|
35
|
-
{
|
|
36
|
-
"type": "object",
|
|
37
|
-
"properties": {
|
|
38
|
-
"identity": {
|
|
39
|
-
"$ref": "#/$defs/StatelessStrategyIdentity"
|
|
40
|
-
},
|
|
41
|
-
"steps": {
|
|
42
|
-
"type": "array",
|
|
43
|
-
"items": {
|
|
44
|
-
"$ref": "#/$defs/Step"
|
|
45
|
-
},
|
|
46
|
-
"uniqueItems": true
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
|
-
"required": [
|
|
50
|
-
"identity",
|
|
51
|
-
"steps"
|
|
52
|
-
]
|
|
53
|
-
}
|
|
54
|
-
],
|
|
55
|
-
"unevaluatedProperties": false,
|
|
56
|
-
"$anchor": "StatelessStrategy"
|
|
57
|
-
},
|
|
58
23
|
"StrategyStateWrapper": {
|
|
59
24
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
60
25
|
"type": "object",
|
|
@@ -68,31 +33,33 @@
|
|
|
68
33
|
],
|
|
69
34
|
"$anchor": "StrategyStateWrapper"
|
|
70
35
|
},
|
|
71
|
-
"
|
|
36
|
+
"StatefulStrategyIdentity": {
|
|
72
37
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
73
38
|
"type": "string",
|
|
74
|
-
"$anchor": "
|
|
75
|
-
"pattern": "^
|
|
39
|
+
"$anchor": "StatefulStrategyIdentity",
|
|
40
|
+
"pattern": "^STATEFUL_STRATEGY-.+$"
|
|
76
41
|
},
|
|
77
|
-
"
|
|
42
|
+
"StatelessStrategy": {
|
|
78
43
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
79
44
|
"type": "object",
|
|
80
|
-
"
|
|
81
|
-
{
|
|
82
|
-
"$ref": "#/$defs/
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
"$ref": "#/$defs/BranchStep"
|
|
86
|
-
},
|
|
87
|
-
{
|
|
88
|
-
"$ref": "#/$defs/WhileStep"
|
|
45
|
+
"properties": {
|
|
46
|
+
"identity": {
|
|
47
|
+
"$ref": "#/$defs/StatelessStrategyIdentity"
|
|
89
48
|
},
|
|
90
|
-
{
|
|
91
|
-
"
|
|
49
|
+
"steps": {
|
|
50
|
+
"type": "array",
|
|
51
|
+
"items": {
|
|
52
|
+
"$ref": "#/$defs/Step"
|
|
53
|
+
},
|
|
54
|
+
"uniqueItems": true
|
|
92
55
|
}
|
|
56
|
+
},
|
|
57
|
+
"required": [
|
|
58
|
+
"identity",
|
|
59
|
+
"steps"
|
|
93
60
|
],
|
|
94
61
|
"unevaluatedProperties": false,
|
|
95
|
-
"$anchor": "
|
|
62
|
+
"$anchor": "StatelessStrategy"
|
|
96
63
|
},
|
|
97
64
|
"StrategyState": {
|
|
98
65
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
@@ -124,126 +91,31 @@
|
|
|
124
91
|
"$ref": "#/$defs/ExecutionIdentity"
|
|
125
92
|
}
|
|
126
93
|
},
|
|
127
|
-
"
|
|
94
|
+
"StatelessStrategyIdentity": {
|
|
128
95
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
129
|
-
"type": "
|
|
130
|
-
"
|
|
131
|
-
|
|
132
|
-
"$ref": "#/$defs/StepKind"
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
"type": "object",
|
|
136
|
-
"properties": {
|
|
137
|
-
"execution": {
|
|
138
|
-
"$ref": "#/$defs/Execution"
|
|
139
|
-
},
|
|
140
|
-
"identity": {
|
|
141
|
-
"$ref": "#/$defs/WorkStepIdentity"
|
|
142
|
-
},
|
|
143
|
-
"kind": {
|
|
144
|
-
"const": "work"
|
|
145
|
-
}
|
|
146
|
-
},
|
|
147
|
-
"required": [
|
|
148
|
-
"identity",
|
|
149
|
-
"kind",
|
|
150
|
-
"execution"
|
|
151
|
-
]
|
|
152
|
-
}
|
|
153
|
-
],
|
|
154
|
-
"$anchor": "WorkStep"
|
|
96
|
+
"type": "string",
|
|
97
|
+
"$anchor": "StatelessStrategyIdentity",
|
|
98
|
+
"pattern": "^STATELESS_STRATEGY-.+$"
|
|
155
99
|
},
|
|
156
|
-
"
|
|
100
|
+
"Step": {
|
|
157
101
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
158
102
|
"type": "object",
|
|
159
|
-
"
|
|
103
|
+
"oneOf": [
|
|
160
104
|
{
|
|
161
|
-
"$ref": "#/$defs/
|
|
105
|
+
"$ref": "#/$defs/WorkStep"
|
|
162
106
|
},
|
|
163
107
|
{
|
|
164
|
-
"
|
|
165
|
-
"properties": {
|
|
166
|
-
"cases": {
|
|
167
|
-
"type": "array",
|
|
168
|
-
"items": {
|
|
169
|
-
"$ref": "#/$defs/Conditional"
|
|
170
|
-
},
|
|
171
|
-
"minItems": 1,
|
|
172
|
-
"uniqueItems": true
|
|
173
|
-
},
|
|
174
|
-
"identity": {
|
|
175
|
-
"$ref": "#/$defs/BranchStepIdentity"
|
|
176
|
-
},
|
|
177
|
-
"kind": {
|
|
178
|
-
"const": "branch"
|
|
179
|
-
}
|
|
180
|
-
},
|
|
181
|
-
"required": [
|
|
182
|
-
"identity",
|
|
183
|
-
"kind",
|
|
184
|
-
"cases"
|
|
185
|
-
]
|
|
186
|
-
}
|
|
187
|
-
],
|
|
188
|
-
"$anchor": "BranchStep"
|
|
189
|
-
},
|
|
190
|
-
"WhileStep": {
|
|
191
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
192
|
-
"type": "object",
|
|
193
|
-
"allOf": [
|
|
194
|
-
{
|
|
195
|
-
"$ref": "#/$defs/StepKind"
|
|
108
|
+
"$ref": "#/$defs/BranchStep"
|
|
196
109
|
},
|
|
197
110
|
{
|
|
198
|
-
"
|
|
199
|
-
"properties": {
|
|
200
|
-
"case": {
|
|
201
|
-
"$ref": "#/$defs/Conditional"
|
|
202
|
-
},
|
|
203
|
-
"identity": {
|
|
204
|
-
"$ref": "#/$defs/WhileStepIdentity"
|
|
205
|
-
},
|
|
206
|
-
"kind": {
|
|
207
|
-
"const": "while"
|
|
208
|
-
}
|
|
209
|
-
},
|
|
210
|
-
"required": [
|
|
211
|
-
"identity",
|
|
212
|
-
"kind",
|
|
213
|
-
"case"
|
|
214
|
-
]
|
|
215
|
-
}
|
|
216
|
-
],
|
|
217
|
-
"$anchor": "WhileStep"
|
|
218
|
-
},
|
|
219
|
-
"ForStep": {
|
|
220
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
221
|
-
"type": "object",
|
|
222
|
-
"allOf": [
|
|
223
|
-
{
|
|
224
|
-
"$ref": "#/$defs/StepKind"
|
|
111
|
+
"$ref": "#/$defs/WhileStep"
|
|
225
112
|
},
|
|
226
113
|
{
|
|
227
|
-
"
|
|
228
|
-
"properties": {
|
|
229
|
-
"case": {
|
|
230
|
-
"$ref": "#/$defs/Conditional"
|
|
231
|
-
},
|
|
232
|
-
"identity": {
|
|
233
|
-
"$ref": "#/$defs/ForStepIdentity"
|
|
234
|
-
},
|
|
235
|
-
"kind": {
|
|
236
|
-
"const": "for"
|
|
237
|
-
}
|
|
238
|
-
},
|
|
239
|
-
"required": [
|
|
240
|
-
"identity",
|
|
241
|
-
"kind",
|
|
242
|
-
"case"
|
|
243
|
-
]
|
|
114
|
+
"$ref": "#/$defs/ForStep"
|
|
244
115
|
}
|
|
245
116
|
],
|
|
246
|
-
"
|
|
117
|
+
"unevaluatedProperties": false,
|
|
118
|
+
"$anchor": "Step"
|
|
247
119
|
},
|
|
248
120
|
"ResourceMissing": {
|
|
249
121
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
@@ -360,111 +232,129 @@
|
|
|
360
232
|
"$anchor": "ExecutionIdentity",
|
|
361
233
|
"pattern": "^EXECUTION-.+$"
|
|
362
234
|
},
|
|
363
|
-
"
|
|
235
|
+
"WorkStep": {
|
|
364
236
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
365
237
|
"type": "object",
|
|
238
|
+
"allOf": [
|
|
239
|
+
{
|
|
240
|
+
"$ref": "#/$defs/StepKind"
|
|
241
|
+
}
|
|
242
|
+
],
|
|
366
243
|
"properties": {
|
|
244
|
+
"execution": {
|
|
245
|
+
"$ref": "#/$defs/Execution"
|
|
246
|
+
},
|
|
247
|
+
"identity": {
|
|
248
|
+
"$ref": "#/$defs/WorkStepIdentity"
|
|
249
|
+
},
|
|
367
250
|
"kind": {
|
|
368
|
-
"
|
|
369
|
-
"enum": [
|
|
370
|
-
"work",
|
|
371
|
-
"branch",
|
|
372
|
-
"while",
|
|
373
|
-
"for"
|
|
374
|
-
]
|
|
251
|
+
"const": "work"
|
|
375
252
|
}
|
|
376
253
|
},
|
|
377
254
|
"required": [
|
|
378
|
-
"
|
|
255
|
+
"identity",
|
|
256
|
+
"kind",
|
|
257
|
+
"execution"
|
|
379
258
|
],
|
|
380
|
-
"$anchor": "
|
|
259
|
+
"$anchor": "WorkStep"
|
|
381
260
|
},
|
|
382
|
-
"
|
|
261
|
+
"BranchStep": {
|
|
383
262
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
384
263
|
"type": "object",
|
|
385
264
|
"allOf": [
|
|
386
265
|
{
|
|
387
|
-
"
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
266
|
+
"$ref": "#/$defs/StepKind"
|
|
267
|
+
}
|
|
268
|
+
],
|
|
269
|
+
"properties": {
|
|
270
|
+
"cases": {
|
|
271
|
+
"type": "array",
|
|
272
|
+
"items": {
|
|
273
|
+
"$ref": "#/$defs/Conditional"
|
|
395
274
|
},
|
|
396
|
-
"
|
|
397
|
-
|
|
398
|
-
"jobRef"
|
|
399
|
-
]
|
|
275
|
+
"minItems": 1,
|
|
276
|
+
"uniqueItems": true
|
|
400
277
|
},
|
|
401
|
-
{
|
|
402
|
-
"$
|
|
403
|
-
|
|
278
|
+
"identity": {
|
|
279
|
+
"$ref": "#/$defs/BranchStepIdentity"
|
|
280
|
+
},
|
|
281
|
+
"kind": {
|
|
282
|
+
"const": "branch"
|
|
404
283
|
}
|
|
284
|
+
},
|
|
285
|
+
"required": [
|
|
286
|
+
"identity",
|
|
287
|
+
"kind",
|
|
288
|
+
"cases"
|
|
405
289
|
],
|
|
406
|
-
"$anchor": "
|
|
407
|
-
},
|
|
408
|
-
"WorkStepIdentity": {
|
|
409
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
410
|
-
"type": "string",
|
|
411
|
-
"$anchor": "WorkStepIdentity",
|
|
412
|
-
"pattern": "^WORKSTEP-.+$"
|
|
290
|
+
"$anchor": "BranchStep"
|
|
413
291
|
},
|
|
414
|
-
"
|
|
292
|
+
"WhileStep": {
|
|
415
293
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
416
294
|
"type": "object",
|
|
295
|
+
"allOf": [
|
|
296
|
+
{
|
|
297
|
+
"$ref": "#/$defs/StepKind"
|
|
298
|
+
}
|
|
299
|
+
],
|
|
417
300
|
"properties": {
|
|
418
|
-
"
|
|
419
|
-
"$ref": "#/$defs/
|
|
301
|
+
"case": {
|
|
302
|
+
"$ref": "#/$defs/Conditional"
|
|
420
303
|
},
|
|
421
|
-
"
|
|
422
|
-
"$ref": "#/$defs/
|
|
304
|
+
"identity": {
|
|
305
|
+
"$ref": "#/$defs/WhileStepIdentity"
|
|
306
|
+
},
|
|
307
|
+
"kind": {
|
|
308
|
+
"const": "while"
|
|
423
309
|
}
|
|
424
310
|
},
|
|
425
311
|
"required": [
|
|
426
|
-
"
|
|
427
|
-
"
|
|
312
|
+
"identity",
|
|
313
|
+
"kind",
|
|
314
|
+
"case"
|
|
428
315
|
],
|
|
429
|
-
"
|
|
430
|
-
"$anchor": "Conditional"
|
|
431
|
-
},
|
|
432
|
-
"BranchStepIdentity": {
|
|
433
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
434
|
-
"type": "string",
|
|
435
|
-
"$anchor": "BranchStepIdentity",
|
|
436
|
-
"pattern": "^BRANCHSTEP-.+$"
|
|
437
|
-
},
|
|
438
|
-
"WhileStepIdentity": {
|
|
439
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
440
|
-
"type": "string",
|
|
441
|
-
"$anchor": "WhileStepIdentity",
|
|
442
|
-
"pattern": "^WHILESTEP-.+$"
|
|
316
|
+
"$anchor": "WhileStep"
|
|
443
317
|
},
|
|
444
|
-
"
|
|
318
|
+
"ForStep": {
|
|
445
319
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
446
|
-
"type": "
|
|
447
|
-
"
|
|
448
|
-
|
|
320
|
+
"type": "object",
|
|
321
|
+
"allOf": [
|
|
322
|
+
{
|
|
323
|
+
"$ref": "#/$defs/StepKind"
|
|
324
|
+
}
|
|
325
|
+
],
|
|
326
|
+
"properties": {
|
|
327
|
+
"case": {
|
|
328
|
+
"$ref": "#/$defs/Conditional"
|
|
329
|
+
},
|
|
330
|
+
"identity": {
|
|
331
|
+
"$ref": "#/$defs/ForStepIdentity"
|
|
332
|
+
},
|
|
333
|
+
"kind": {
|
|
334
|
+
"const": "for"
|
|
335
|
+
}
|
|
336
|
+
},
|
|
337
|
+
"required": [
|
|
338
|
+
"identity",
|
|
339
|
+
"kind",
|
|
340
|
+
"case"
|
|
341
|
+
],
|
|
342
|
+
"$anchor": "ForStep"
|
|
449
343
|
},
|
|
450
344
|
"ResourceBase": {
|
|
451
345
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
452
346
|
"type": "object",
|
|
453
|
-
"
|
|
454
|
-
{
|
|
455
|
-
"
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
"resourceTypeRef": {
|
|
460
|
-
"$ref": "#/$defs/ResourceTypeIdentity"
|
|
461
|
-
}
|
|
462
|
-
},
|
|
463
|
-
"required": [
|
|
464
|
-
"identity",
|
|
465
|
-
"resourceTypeRef"
|
|
466
|
-
]
|
|
347
|
+
"properties": {
|
|
348
|
+
"identity": {
|
|
349
|
+
"$ref": "#/$defs/ResourceIdentity"
|
|
350
|
+
},
|
|
351
|
+
"resourceTypeRef": {
|
|
352
|
+
"$ref": "#/$defs/ResourceTypeIdentity"
|
|
467
353
|
}
|
|
354
|
+
},
|
|
355
|
+
"required": [
|
|
356
|
+
"identity",
|
|
357
|
+
"resourceTypeRef"
|
|
468
358
|
],
|
|
469
359
|
"$anchor": "ResourceBase"
|
|
470
360
|
},
|
|
@@ -561,25 +451,89 @@
|
|
|
561
451
|
],
|
|
562
452
|
"$anchor": "JsonData"
|
|
563
453
|
},
|
|
564
|
-
"
|
|
454
|
+
"StepKind": {
|
|
455
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
456
|
+
"type": "object",
|
|
457
|
+
"properties": {
|
|
458
|
+
"kind": {
|
|
459
|
+
"type": "string",
|
|
460
|
+
"enum": [
|
|
461
|
+
"work",
|
|
462
|
+
"branch",
|
|
463
|
+
"while",
|
|
464
|
+
"for"
|
|
465
|
+
]
|
|
466
|
+
}
|
|
467
|
+
},
|
|
468
|
+
"required": [
|
|
469
|
+
"kind"
|
|
470
|
+
],
|
|
471
|
+
"$anchor": "StepKind"
|
|
472
|
+
},
|
|
473
|
+
"Execution": {
|
|
474
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
475
|
+
"type": "object",
|
|
476
|
+
"allOf": [
|
|
477
|
+
{
|
|
478
|
+
"$comment": "This will be overlayed at runtime to specify roleBindings corresponding to the roles of the underlying job.",
|
|
479
|
+
"$ref": "#/$defs/RoleBindingsWrapper"
|
|
480
|
+
}
|
|
481
|
+
],
|
|
482
|
+
"properties": {
|
|
483
|
+
"identity": {
|
|
484
|
+
"$ref": "#/$defs/ExecutionIdentity"
|
|
485
|
+
},
|
|
486
|
+
"jobRef": {
|
|
487
|
+
"$ref": "#/$defs/JobIdentity"
|
|
488
|
+
}
|
|
489
|
+
},
|
|
490
|
+
"required": [
|
|
491
|
+
"identity",
|
|
492
|
+
"jobRef"
|
|
493
|
+
],
|
|
494
|
+
"$anchor": "Execution"
|
|
495
|
+
},
|
|
496
|
+
"WorkStepIdentity": {
|
|
565
497
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
566
498
|
"type": "string",
|
|
567
|
-
"$anchor": "
|
|
568
|
-
"
|
|
569
|
-
"pattern": "^JOB-.+$"
|
|
499
|
+
"$anchor": "WorkStepIdentity",
|
|
500
|
+
"pattern": "^WORKSTEP-.+$"
|
|
570
501
|
},
|
|
571
|
-
"
|
|
502
|
+
"Conditional": {
|
|
572
503
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
573
504
|
"type": "object",
|
|
574
505
|
"properties": {
|
|
575
|
-
"
|
|
576
|
-
"$ref": "#/$defs/
|
|
506
|
+
"what": {
|
|
507
|
+
"$ref": "#/$defs/WorkStep"
|
|
508
|
+
},
|
|
509
|
+
"when": {
|
|
510
|
+
"$ref": "#/$defs/WorkStep"
|
|
577
511
|
}
|
|
578
512
|
},
|
|
579
513
|
"required": [
|
|
580
|
-
"
|
|
514
|
+
"when",
|
|
515
|
+
"what"
|
|
581
516
|
],
|
|
582
|
-
"
|
|
517
|
+
"unevaluatedProperties": false,
|
|
518
|
+
"$anchor": "Conditional"
|
|
519
|
+
},
|
|
520
|
+
"BranchStepIdentity": {
|
|
521
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
522
|
+
"type": "string",
|
|
523
|
+
"$anchor": "BranchStepIdentity",
|
|
524
|
+
"pattern": "^BRANCHSTEP-.+$"
|
|
525
|
+
},
|
|
526
|
+
"WhileStepIdentity": {
|
|
527
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
528
|
+
"type": "string",
|
|
529
|
+
"$anchor": "WhileStepIdentity",
|
|
530
|
+
"pattern": "^WHILESTEP-.+$"
|
|
531
|
+
},
|
|
532
|
+
"ForStepIdentity": {
|
|
533
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
534
|
+
"type": "string",
|
|
535
|
+
"$anchor": "ForStepIdentity",
|
|
536
|
+
"pattern": "^FORSTEP-.+$"
|
|
583
537
|
},
|
|
584
538
|
"ResourceIdentity": {
|
|
585
539
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
@@ -638,6 +592,26 @@
|
|
|
638
592
|
],
|
|
639
593
|
"$anchor": "Path"
|
|
640
594
|
},
|
|
595
|
+
"RoleBindingsWrapper": {
|
|
596
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
597
|
+
"type": "object",
|
|
598
|
+
"properties": {
|
|
599
|
+
"roleBindings": {
|
|
600
|
+
"$ref": "#/$defs/RoleBindings"
|
|
601
|
+
}
|
|
602
|
+
},
|
|
603
|
+
"required": [
|
|
604
|
+
"roleBindings"
|
|
605
|
+
],
|
|
606
|
+
"$anchor": "RoleBindingsWrapper"
|
|
607
|
+
},
|
|
608
|
+
"JobIdentity": {
|
|
609
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
610
|
+
"type": "string",
|
|
611
|
+
"$anchor": "JobIdentity",
|
|
612
|
+
"$comment": "",
|
|
613
|
+
"pattern": "^JOB-.+$"
|
|
614
|
+
},
|
|
641
615
|
"RoleBindings": {
|
|
642
616
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
643
617
|
"type": "object",
|