@toolproof-core/genesis 1.0.55 → 1.0.58
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/generated-src/declarations/resourceTypes.json +12 -3
- package/dist/generated-src/lookups/constants.d.ts +12 -25
- package/dist/generated-src/lookups/constants.js +12 -25
- package/dist/generated-src/schemas/schemas.json +73 -214
- package/dist/generated-src/schemas/standalone/Resource.json +18 -17
- package/dist/generated-src/schemas/standalone/Strategy.json +129 -261
- package/dist/generated-src/schemas/standalone/StrategyTrace.json +91 -150
- package/dist/generated-src/schemas/standalone/Suite.json +1 -2
- package/dist/generated-src/schemas/standalone/Tool.json +1 -2
- package/dist/generated-src/schemas/zod/Resource.js +3 -4
- package/dist/generated-src/schemas/zod/Strategy.d.ts +0 -6
- package/dist/generated-src/schemas/zod/Strategy.js +11 -31
- package/dist/generated-src/schemas/zod/StrategyTrace.d.ts +0 -6
- package/dist/generated-src/schemas/zod/StrategyTrace.js +20 -32
- package/dist/generated-src/timestampedResources/booleans.json +2 -2
- package/dist/generated-src/timestampedResources/naturals.json +11 -11
- package/dist/generated-src/timestampedResources/resourceTypes.json +22 -13
- package/dist/generated-src/timestampedResources/tools.json +15 -15
- package/dist/generated-src/types/types.d.ts +48 -124
- package/dist/src/index.d.ts +1 -1
- package/dist/src/utils/standaloneZodSchemas.js +6 -6
- package/dist/src/utils/timestampedResources.d.ts +1 -1
- package/dist/src/utils/timestampedResources.js +1 -1
- package/dist/src/utils/typeGenerationPostProcess.js +20 -6
- package/dist/src/utils/zodCodegen.d.ts +1 -1
- package/dist/src/utils/zodCodegen.js +7 -7
- package/package.json +1 -1
|
@@ -1,101 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"
|
|
3
|
+
"type": "object",
|
|
4
|
+
"required": [
|
|
5
|
+
"handle"
|
|
6
|
+
],
|
|
7
|
+
"properties": {
|
|
8
|
+
"handle": {
|
|
9
|
+
"$ref": "#/$defs/StrategyHandle"
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
"allOf": [
|
|
4
13
|
{
|
|
5
|
-
"$ref": "#/$defs/
|
|
14
|
+
"$ref": "#/$defs/StepsByThreadIndexFacet"
|
|
6
15
|
},
|
|
7
16
|
{
|
|
8
|
-
"$ref": "#/$defs/
|
|
17
|
+
"$ref": "#/$defs/StrategyStateFacet"
|
|
9
18
|
}
|
|
10
19
|
],
|
|
11
20
|
"$defs": {
|
|
12
|
-
"
|
|
13
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
14
|
-
"type": "object",
|
|
15
|
-
"allOf": [
|
|
16
|
-
{
|
|
17
|
-
"$ref": "#/$defs/BaseStrategy"
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
"type": "object",
|
|
21
|
-
"properties": {
|
|
22
|
-
"strategyKind": {
|
|
23
|
-
"const": "unthreaded"
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"$ref": "#/$defs/StepsFacet"
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
"$ref": "#/$defs/UnthreadedStrategyStateFacet"
|
|
32
|
-
}
|
|
33
|
-
],
|
|
34
|
-
"unevaluatedProperties": false
|
|
35
|
-
},
|
|
36
|
-
"ThreadedStrategy": {
|
|
37
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
38
|
-
"type": "object",
|
|
39
|
-
"allOf": [
|
|
40
|
-
{
|
|
41
|
-
"$ref": "#/$defs/BaseStrategy"
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
"type": "object",
|
|
45
|
-
"properties": {
|
|
46
|
-
"strategyKind": {
|
|
47
|
-
"const": "threaded"
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
"$ref": "#/$defs/StepsByThreadIndexFacet"
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
"$ref": "#/$defs/ThreadedStrategyStateFacet"
|
|
56
|
-
}
|
|
57
|
-
],
|
|
58
|
-
"unevaluatedProperties": false
|
|
59
|
-
},
|
|
60
|
-
"BaseStrategy": {
|
|
61
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
62
|
-
"type": "object",
|
|
63
|
-
"required": [
|
|
64
|
-
"handle",
|
|
65
|
-
"strategyKind"
|
|
66
|
-
],
|
|
67
|
-
"properties": {
|
|
68
|
-
"handle": {
|
|
69
|
-
"$ref": "#/$defs/StrategyHandle"
|
|
70
|
-
},
|
|
71
|
-
"strategyKind": {
|
|
72
|
-
"$ref": "#/$defs/StrategyKind"
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
},
|
|
76
|
-
"StepsFacet": {
|
|
77
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
78
|
-
"type": "object",
|
|
79
|
-
"required": [
|
|
80
|
-
"steps"
|
|
81
|
-
],
|
|
82
|
-
"properties": {
|
|
83
|
-
"steps": {
|
|
84
|
-
"$ref": "#/$defs/StepArray"
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
},
|
|
88
|
-
"UnthreadedStrategyStateFacet": {
|
|
21
|
+
"StrategyHandle": {
|
|
89
22
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
90
|
-
"type": "
|
|
91
|
-
"
|
|
92
|
-
"strategyState"
|
|
93
|
-
],
|
|
94
|
-
"properties": {
|
|
95
|
-
"strategyState": {
|
|
96
|
-
"$ref": "#/$defs/UnthreadedStrategyState"
|
|
97
|
-
}
|
|
98
|
-
}
|
|
23
|
+
"type": "string",
|
|
24
|
+
"pattern": "^STRATEGY-.+$"
|
|
99
25
|
},
|
|
100
26
|
"StepsByThreadIndexFacet": {
|
|
101
27
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
@@ -109,7 +35,7 @@
|
|
|
109
35
|
}
|
|
110
36
|
}
|
|
111
37
|
},
|
|
112
|
-
"
|
|
38
|
+
"StrategyStateFacet": {
|
|
113
39
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
114
40
|
"type": "object",
|
|
115
41
|
"required": [
|
|
@@ -117,56 +43,46 @@
|
|
|
117
43
|
],
|
|
118
44
|
"properties": {
|
|
119
45
|
"strategyState": {
|
|
120
|
-
"$ref": "#/$defs/
|
|
46
|
+
"$ref": "#/$defs/StrategyState"
|
|
121
47
|
}
|
|
122
48
|
}
|
|
123
49
|
},
|
|
124
|
-
"
|
|
125
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
126
|
-
"type": "string",
|
|
127
|
-
"pattern": "^STRATEGY-.+$"
|
|
128
|
-
},
|
|
129
|
-
"StrategyKind": {
|
|
130
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
131
|
-
"type": "string",
|
|
132
|
-
"enum": [
|
|
133
|
-
"unthreaded",
|
|
134
|
-
"threaded"
|
|
135
|
-
]
|
|
136
|
-
},
|
|
137
|
-
"StepArray": {
|
|
50
|
+
"StepArrayArray": {
|
|
138
51
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
139
52
|
"type": "array",
|
|
140
53
|
"items": {
|
|
141
|
-
"$ref": "#/$defs/
|
|
142
|
-
}
|
|
143
|
-
"uniqueItems": true
|
|
54
|
+
"$ref": "#/$defs/StepArray"
|
|
55
|
+
}
|
|
144
56
|
},
|
|
145
|
-
"
|
|
57
|
+
"StrategyState": {
|
|
146
58
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
147
59
|
"type": "object",
|
|
148
60
|
"propertyNames": {
|
|
149
|
-
"$ref": "#/$defs/
|
|
61
|
+
"$ref": "#/$defs/ToolStepPath"
|
|
150
62
|
},
|
|
151
63
|
"additionalProperties": {
|
|
152
64
|
"$ref": "#/$defs/StrategyStateInputEntryByRoleName"
|
|
153
65
|
}
|
|
154
66
|
},
|
|
155
|
-
"
|
|
67
|
+
"StepArray": {
|
|
156
68
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
157
69
|
"type": "array",
|
|
158
70
|
"items": {
|
|
159
|
-
"$ref": "#/$defs/
|
|
71
|
+
"$ref": "#/$defs/Step"
|
|
160
72
|
}
|
|
161
73
|
},
|
|
162
|
-
"
|
|
74
|
+
"ToolStepPath": {
|
|
75
|
+
"type": "string",
|
|
76
|
+
"pattern": "^/threads/[0-9]+/steps/[0-9]+/(self|case/when|case/what|cases/[0-9]+/when|cases/[0-9]+/what)$"
|
|
77
|
+
},
|
|
78
|
+
"StrategyStateInputEntryByRoleName": {
|
|
163
79
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
164
80
|
"type": "object",
|
|
165
81
|
"propertyNames": {
|
|
166
|
-
"$ref": "#/$defs/
|
|
82
|
+
"$ref": "#/$defs/RoleName"
|
|
167
83
|
},
|
|
168
84
|
"additionalProperties": {
|
|
169
|
-
"$ref": "#/$defs/
|
|
85
|
+
"$ref": "#/$defs/StrategyStateInputEntry"
|
|
170
86
|
}
|
|
171
87
|
},
|
|
172
88
|
"Step": {
|
|
@@ -188,23 +104,20 @@
|
|
|
188
104
|
],
|
|
189
105
|
"unevaluatedProperties": false
|
|
190
106
|
},
|
|
191
|
-
"
|
|
192
|
-
"type": "string",
|
|
193
|
-
"pattern": "^/steps/[0-9]+/(self|case/when|case/what|cases/[0-9]+/when|cases/[0-9]+/what)$"
|
|
194
|
-
},
|
|
195
|
-
"StrategyStateInputEntryByRoleName": {
|
|
107
|
+
"RoleName": {
|
|
196
108
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
197
|
-
"
|
|
198
|
-
"propertyNames": {
|
|
199
|
-
"$ref": "#/$defs/RoleName"
|
|
200
|
-
},
|
|
201
|
-
"additionalProperties": {
|
|
202
|
-
"$ref": "#/$defs/StrategyStateInputEntry"
|
|
203
|
-
}
|
|
109
|
+
"$ref": "#/$defs/Name"
|
|
204
110
|
},
|
|
205
|
-
"
|
|
206
|
-
"
|
|
207
|
-
"
|
|
111
|
+
"StrategyStateInputEntry": {
|
|
112
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
113
|
+
"oneOf": [
|
|
114
|
+
{
|
|
115
|
+
"$ref": "#/$defs/InputPotential"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"$ref": "#/$defs/InputResource"
|
|
119
|
+
}
|
|
120
|
+
]
|
|
208
121
|
},
|
|
209
122
|
"ToolStep": {
|
|
210
123
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
@@ -247,8 +160,7 @@
|
|
|
247
160
|
"items": {
|
|
248
161
|
"$ref": "#/$defs/Case"
|
|
249
162
|
},
|
|
250
|
-
"minItems": 1
|
|
251
|
-
"uniqueItems": true
|
|
163
|
+
"minItems": 1
|
|
252
164
|
}
|
|
253
165
|
},
|
|
254
166
|
"allOf": [
|
|
@@ -299,21 +211,43 @@
|
|
|
299
211
|
}
|
|
300
212
|
]
|
|
301
213
|
},
|
|
302
|
-
"
|
|
214
|
+
"Name": {
|
|
303
215
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
304
|
-
"
|
|
216
|
+
"type": "string",
|
|
217
|
+
"minLength": 1,
|
|
218
|
+
"pattern": "^[A-Z][a-zA-Z0-9]*$",
|
|
219
|
+
"$comment": "Validation is intercepted by an AI Agent that verifies the name against Toolproof's naming conventions.",
|
|
220
|
+
"semanticValidation": "Ajv custom keyword to verify name."
|
|
305
221
|
},
|
|
306
|
-
"
|
|
222
|
+
"InputPotential": {
|
|
307
223
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
308
224
|
"oneOf": [
|
|
309
225
|
{
|
|
310
|
-
"$ref": "#/$defs/
|
|
226
|
+
"$ref": "#/$defs/ExternalInputPotential"
|
|
311
227
|
},
|
|
312
228
|
{
|
|
313
|
-
"$ref": "#/$defs/
|
|
229
|
+
"$ref": "#/$defs/InternalInputPotential"
|
|
314
230
|
}
|
|
315
231
|
]
|
|
316
232
|
},
|
|
233
|
+
"InputResource": {
|
|
234
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
235
|
+
"type": "object",
|
|
236
|
+
"required": [
|
|
237
|
+
"strategyStateInputKind"
|
|
238
|
+
],
|
|
239
|
+
"properties": {
|
|
240
|
+
"strategyStateInputKind": {
|
|
241
|
+
"const": "inputResource"
|
|
242
|
+
}
|
|
243
|
+
},
|
|
244
|
+
"allOf": [
|
|
245
|
+
{
|
|
246
|
+
"$ref": "#/$defs/BaseResource"
|
|
247
|
+
}
|
|
248
|
+
],
|
|
249
|
+
"unevaluatedProperties": false
|
|
250
|
+
},
|
|
317
251
|
"ToolHandle": {
|
|
318
252
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
319
253
|
"type": "string",
|
|
@@ -360,42 +294,51 @@
|
|
|
360
294
|
},
|
|
361
295
|
"unevaluatedProperties": false
|
|
362
296
|
},
|
|
363
|
-
"
|
|
297
|
+
"ExternalInputPotential": {
|
|
364
298
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
365
|
-
"type": "
|
|
366
|
-
"
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
"
|
|
299
|
+
"type": "object",
|
|
300
|
+
"required": [
|
|
301
|
+
"strategyStateInputKind"
|
|
302
|
+
],
|
|
303
|
+
"properties": {
|
|
304
|
+
"strategyStateInputKind": {
|
|
305
|
+
"const": "externalInputPotential"
|
|
306
|
+
}
|
|
307
|
+
},
|
|
308
|
+
"unevaluatedProperties": false
|
|
370
309
|
},
|
|
371
|
-
"
|
|
310
|
+
"InternalInputPotential": {
|
|
372
311
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
373
|
-
"
|
|
374
|
-
|
|
375
|
-
|
|
312
|
+
"type": "object",
|
|
313
|
+
"required": [
|
|
314
|
+
"strategyStateInputKind",
|
|
315
|
+
"toolStepRoleAddress"
|
|
316
|
+
],
|
|
317
|
+
"properties": {
|
|
318
|
+
"strategyStateInputKind": {
|
|
319
|
+
"const": "internalInputPotential"
|
|
376
320
|
},
|
|
377
|
-
{
|
|
378
|
-
"$ref": "#/$defs/
|
|
321
|
+
"toolStepRoleAddress": {
|
|
322
|
+
"$ref": "#/$defs/ToolStepRoleAddress"
|
|
379
323
|
}
|
|
380
|
-
|
|
324
|
+
},
|
|
325
|
+
"unevaluatedProperties": false
|
|
381
326
|
},
|
|
382
|
-
"
|
|
327
|
+
"BaseResource": {
|
|
383
328
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
384
329
|
"type": "object",
|
|
385
330
|
"required": [
|
|
386
|
-
"
|
|
331
|
+
"projection"
|
|
387
332
|
],
|
|
388
333
|
"properties": {
|
|
389
|
-
"
|
|
390
|
-
"const": "inputResource"
|
|
391
|
-
}
|
|
334
|
+
"projection": true
|
|
392
335
|
},
|
|
336
|
+
"$comment": "The projection field stores the Core-visible JSON projection of the Resource, not the raw underlying artifact. This will be overlaid dynamically to match the data structure of the underlying ResourceType's projectionSchema.",
|
|
393
337
|
"allOf": [
|
|
394
338
|
{
|
|
395
|
-
"$ref": "#/$defs/
|
|
339
|
+
"$ref": "#/$defs/ResourcePointer"
|
|
396
340
|
}
|
|
397
|
-
]
|
|
398
|
-
"unevaluatedProperties": false
|
|
341
|
+
]
|
|
399
342
|
},
|
|
400
343
|
"StepKind": {
|
|
401
344
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
@@ -424,67 +367,44 @@
|
|
|
424
367
|
},
|
|
425
368
|
"unevaluatedProperties": false
|
|
426
369
|
},
|
|
427
|
-
"
|
|
370
|
+
"ToolStepRoleAddress": {
|
|
428
371
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
429
372
|
"type": "object",
|
|
430
373
|
"required": [
|
|
431
|
-
"
|
|
432
|
-
"
|
|
433
|
-
"resourceTypeHandle"
|
|
374
|
+
"roleName",
|
|
375
|
+
"toolStepPath"
|
|
434
376
|
],
|
|
435
377
|
"properties": {
|
|
436
|
-
"
|
|
437
|
-
"
|
|
438
|
-
},
|
|
439
|
-
"id": {
|
|
440
|
-
"$ref": "#/$defs/ResourceId"
|
|
378
|
+
"roleName": {
|
|
379
|
+
"$ref": "#/$defs/RoleName"
|
|
441
380
|
},
|
|
442
|
-
"
|
|
443
|
-
"$ref": "#/$defs/
|
|
381
|
+
"toolStepPath": {
|
|
382
|
+
"$ref": "#/$defs/ToolStepPath"
|
|
444
383
|
}
|
|
445
384
|
},
|
|
446
385
|
"unevaluatedProperties": false
|
|
447
386
|
},
|
|
448
|
-
"
|
|
387
|
+
"ResourcePointer": {
|
|
449
388
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
450
389
|
"type": "object",
|
|
451
390
|
"required": [
|
|
452
|
-
"strategyStateInputKind",
|
|
453
391
|
"id",
|
|
454
|
-
"resourceTypeHandle"
|
|
455
|
-
"provenance"
|
|
392
|
+
"resourceTypeHandle"
|
|
456
393
|
],
|
|
457
394
|
"properties": {
|
|
458
|
-
"strategyStateInputKind": {
|
|
459
|
-
"const": "internalInputPotential"
|
|
460
|
-
},
|
|
461
395
|
"id": {
|
|
462
396
|
"$ref": "#/$defs/ResourceId"
|
|
463
397
|
},
|
|
464
398
|
"resourceTypeHandle": {
|
|
465
399
|
"$ref": "#/$defs/ResourceTypeHandle"
|
|
466
|
-
},
|
|
467
|
-
"provenance": {
|
|
468
|
-
"$ref": "#/$defs/DeferredStrategyProvenance"
|
|
469
400
|
}
|
|
470
401
|
},
|
|
471
|
-
"unevaluatedProperties": false
|
|
472
|
-
},
|
|
473
|
-
"BaseResource": {
|
|
474
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
475
|
-
"type": "object",
|
|
476
|
-
"required": [
|
|
477
|
-
"projection"
|
|
478
|
-
],
|
|
479
|
-
"properties": {
|
|
480
|
-
"projection": true
|
|
481
|
-
},
|
|
482
|
-
"$comment": "The projection field stores the Core-visible JSON projection of the Resource, not the raw underlying artifact. This will be overlaid dynamically to match the data structure of the underlying ResourceType's projectionSchema.",
|
|
483
402
|
"allOf": [
|
|
484
403
|
{
|
|
485
|
-
"$ref": "#/$defs/
|
|
404
|
+
"$ref": "#/$defs/ProvenanceFacet"
|
|
486
405
|
}
|
|
487
|
-
]
|
|
406
|
+
],
|
|
407
|
+
"unevaluatedProperties": false
|
|
488
408
|
},
|
|
489
409
|
"RoleNameArray": {
|
|
490
410
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
@@ -503,63 +423,6 @@
|
|
|
503
423
|
"type": "string",
|
|
504
424
|
"pattern": "^TYPE-.+$"
|
|
505
425
|
},
|
|
506
|
-
"DeferredStrategyProvenance": {
|
|
507
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
508
|
-
"$comment": "Build-time strategy provenance without strategyTraceHandle. strategyTraceHandle is only known at runtime.",
|
|
509
|
-
"type": "object",
|
|
510
|
-
"required": [
|
|
511
|
-
"provenanceKind",
|
|
512
|
-
"toolStepRoleAddress"
|
|
513
|
-
],
|
|
514
|
-
"properties": {
|
|
515
|
-
"provenanceKind": {
|
|
516
|
-
"const": "strategy"
|
|
517
|
-
},
|
|
518
|
-
"toolStepRoleAddress": {
|
|
519
|
-
"$ref": "#/$defs/ToolStepRoleAddress"
|
|
520
|
-
}
|
|
521
|
-
},
|
|
522
|
-
"unevaluatedProperties": false
|
|
523
|
-
},
|
|
524
|
-
"ResourcePointer": {
|
|
525
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
526
|
-
"type": "object",
|
|
527
|
-
"required": [
|
|
528
|
-
"id",
|
|
529
|
-
"resourceTypeHandle"
|
|
530
|
-
],
|
|
531
|
-
"properties": {
|
|
532
|
-
"id": {
|
|
533
|
-
"$ref": "#/$defs/ResourceId"
|
|
534
|
-
},
|
|
535
|
-
"resourceTypeHandle": {
|
|
536
|
-
"$ref": "#/$defs/ResourceTypeHandle"
|
|
537
|
-
}
|
|
538
|
-
},
|
|
539
|
-
"allOf": [
|
|
540
|
-
{
|
|
541
|
-
"$ref": "#/$defs/ProvenanceFacet"
|
|
542
|
-
}
|
|
543
|
-
],
|
|
544
|
-
"unevaluatedProperties": false
|
|
545
|
-
},
|
|
546
|
-
"ToolStepRoleAddress": {
|
|
547
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
548
|
-
"type": "object",
|
|
549
|
-
"required": [
|
|
550
|
-
"roleName",
|
|
551
|
-
"toolStepPath"
|
|
552
|
-
],
|
|
553
|
-
"properties": {
|
|
554
|
-
"roleName": {
|
|
555
|
-
"$ref": "#/$defs/RoleName"
|
|
556
|
-
},
|
|
557
|
-
"toolStepPath": {
|
|
558
|
-
"$ref": "#/$defs/ToolStepPath"
|
|
559
|
-
}
|
|
560
|
-
},
|
|
561
|
-
"unevaluatedProperties": false
|
|
562
|
-
},
|
|
563
426
|
"ProvenanceFacet": {
|
|
564
427
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
565
428
|
"type": "object",
|
|
@@ -572,23 +435,15 @@
|
|
|
572
435
|
}
|
|
573
436
|
}
|
|
574
437
|
},
|
|
575
|
-
"ToolStepPath": {
|
|
576
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
577
|
-
"oneOf": [
|
|
578
|
-
{
|
|
579
|
-
"$ref": "#/$defs/UnthreadedToolStepPath"
|
|
580
|
-
},
|
|
581
|
-
{
|
|
582
|
-
"$ref": "#/$defs/ThreadedToolStepPath"
|
|
583
|
-
}
|
|
584
|
-
]
|
|
585
|
-
},
|
|
586
438
|
"Provenance": {
|
|
587
439
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
588
440
|
"oneOf": [
|
|
589
441
|
{
|
|
590
442
|
"$ref": "#/$defs/GenesisProvenance"
|
|
591
443
|
},
|
|
444
|
+
{
|
|
445
|
+
"$ref": "#/$defs/RuntimeProvenance"
|
|
446
|
+
},
|
|
592
447
|
{
|
|
593
448
|
"$ref": "#/$defs/StrategyProvenance"
|
|
594
449
|
}
|
|
@@ -607,6 +462,19 @@
|
|
|
607
462
|
},
|
|
608
463
|
"unevaluatedProperties": false
|
|
609
464
|
},
|
|
465
|
+
"RuntimeProvenance": {
|
|
466
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
467
|
+
"type": "object",
|
|
468
|
+
"required": [
|
|
469
|
+
"provenanceKind"
|
|
470
|
+
],
|
|
471
|
+
"properties": {
|
|
472
|
+
"provenanceKind": {
|
|
473
|
+
"const": "runtime"
|
|
474
|
+
}
|
|
475
|
+
},
|
|
476
|
+
"unevaluatedProperties": false
|
|
477
|
+
},
|
|
610
478
|
"StrategyProvenance": {
|
|
611
479
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
612
480
|
"type": "object",
|