@openpond/evals 0.7.0 → 0.7.2
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/LEARNING.md +14 -0
- package/dist/javascript-verifier-worker-source.js +1 -1
- package/dist/learning/authoring-service.js +49 -0
- package/dist/learning/authoring.js +37 -0
- package/dist/learning/index.js +1 -0
- package/dist/learning/operations.js +7 -3
- package/dist/learning/repository.js +2 -0
- package/dist/learning/service.js +22 -0
- package/dist/learning/transport.js +10 -0
- package/dist/task-schema-meta-validator.js +2 -0
- package/dist/task-schema-validation.js +113 -0
- package/dist/task-schema.js +4 -142
- package/dist/task-value-validator.js +37 -0
- package/dist/types/learning/authoring-service.d.ts +25 -0
- package/dist/types/learning/authoring-service.d.ts.map +1 -0
- package/dist/types/learning/authoring.d.ts +672 -0
- package/dist/types/learning/authoring.d.ts.map +1 -0
- package/dist/types/learning/index.d.ts +1 -0
- package/dist/types/learning/index.d.ts.map +1 -1
- package/dist/types/learning/operations.d.ts +557 -1
- package/dist/types/learning/operations.d.ts.map +1 -1
- package/dist/types/learning/repository.d.ts +192 -0
- package/dist/types/learning/repository.d.ts.map +1 -1
- package/dist/types/learning/service.d.ts +14 -0
- package/dist/types/learning/service.d.ts.map +1 -1
- package/dist/types/learning/transport.d.ts +505 -2
- package/dist/types/learning/transport.d.ts.map +1 -1
- package/dist/types/task-schema-meta-validator.d.ts +3 -0
- package/dist/types/task-schema-validation.d.ts +18 -0
- package/dist/types/task-schema-validation.d.ts.map +1 -0
- package/dist/types/task-schema.d.ts +2 -17
- package/dist/types/task-schema.d.ts.map +1 -1
- package/dist/types/task-value-validator.d.ts +3 -0
- package/dist/types/task-value-validator.d.ts.map +1 -0
- package/package.json +2 -2
- package/schemas/learning/v1/command-request.schema.json +757 -366
- package/schemas/learning/v1/draft.schema.json +562 -0
- package/schemas/learning/v1/evidence-inspection.schema.json +106 -0
- package/schemas/learning/v1/read-request.schema.json +42 -0
|
@@ -7,6 +7,334 @@
|
|
|
7
7
|
},
|
|
8
8
|
"command": {
|
|
9
9
|
"anyOf": [
|
|
10
|
+
{
|
|
11
|
+
"type": "object",
|
|
12
|
+
"properties": {
|
|
13
|
+
"operationId": {
|
|
14
|
+
"$ref": "#/$defs/__schema0"
|
|
15
|
+
},
|
|
16
|
+
"action": {
|
|
17
|
+
"type": "string",
|
|
18
|
+
"const": "save_draft"
|
|
19
|
+
},
|
|
20
|
+
"expectedRevision": {
|
|
21
|
+
"type": "integer",
|
|
22
|
+
"minimum": 0,
|
|
23
|
+
"maximum": 9007199254740991
|
|
24
|
+
},
|
|
25
|
+
"draft": {
|
|
26
|
+
"oneOf": [
|
|
27
|
+
{
|
|
28
|
+
"type": "object",
|
|
29
|
+
"properties": {
|
|
30
|
+
"id": {
|
|
31
|
+
"$ref": "#/$defs/__schema0"
|
|
32
|
+
},
|
|
33
|
+
"targetId": {
|
|
34
|
+
"$ref": "#/$defs/__schema0"
|
|
35
|
+
},
|
|
36
|
+
"baseRelease": {
|
|
37
|
+
"$ref": "#/$defs/__schema1"
|
|
38
|
+
},
|
|
39
|
+
"editorVersion": {
|
|
40
|
+
"$ref": "#/$defs/__schema4"
|
|
41
|
+
},
|
|
42
|
+
"targetKind": {
|
|
43
|
+
"type": "string",
|
|
44
|
+
"const": "definition"
|
|
45
|
+
},
|
|
46
|
+
"fields": {
|
|
47
|
+
"type": "object",
|
|
48
|
+
"properties": {
|
|
49
|
+
"name": {
|
|
50
|
+
"type": "string",
|
|
51
|
+
"maxLength": 500
|
|
52
|
+
},
|
|
53
|
+
"description": {
|
|
54
|
+
"type": "string",
|
|
55
|
+
"maxLength": 10000
|
|
56
|
+
},
|
|
57
|
+
"instructions": {
|
|
58
|
+
"type": "string",
|
|
59
|
+
"maxLength": 20000
|
|
60
|
+
},
|
|
61
|
+
"input": {
|
|
62
|
+
"type": "string"
|
|
63
|
+
},
|
|
64
|
+
"output": {
|
|
65
|
+
"type": "string"
|
|
66
|
+
},
|
|
67
|
+
"familyNamespace": {
|
|
68
|
+
"type": "string"
|
|
69
|
+
},
|
|
70
|
+
"sources": {
|
|
71
|
+
"maxItems": 100,
|
|
72
|
+
"type": "array",
|
|
73
|
+
"items": {
|
|
74
|
+
"$ref": "#/$defs/__schema5"
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"recipeRef": {
|
|
78
|
+
"$ref": "#/$defs/__schema2"
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"required": [
|
|
82
|
+
"name",
|
|
83
|
+
"description",
|
|
84
|
+
"instructions",
|
|
85
|
+
"input",
|
|
86
|
+
"output",
|
|
87
|
+
"familyNamespace",
|
|
88
|
+
"sources"
|
|
89
|
+
],
|
|
90
|
+
"additionalProperties": false
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
"required": [
|
|
94
|
+
"id",
|
|
95
|
+
"targetId",
|
|
96
|
+
"baseRelease",
|
|
97
|
+
"editorVersion",
|
|
98
|
+
"targetKind",
|
|
99
|
+
"fields"
|
|
100
|
+
],
|
|
101
|
+
"additionalProperties": false
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"type": "object",
|
|
105
|
+
"properties": {
|
|
106
|
+
"id": {
|
|
107
|
+
"$ref": "#/$defs/__schema0"
|
|
108
|
+
},
|
|
109
|
+
"targetId": {
|
|
110
|
+
"$ref": "#/$defs/__schema0"
|
|
111
|
+
},
|
|
112
|
+
"baseRelease": {
|
|
113
|
+
"$ref": "#/$defs/__schema1"
|
|
114
|
+
},
|
|
115
|
+
"editorVersion": {
|
|
116
|
+
"$ref": "#/$defs/__schema4"
|
|
117
|
+
},
|
|
118
|
+
"targetKind": {
|
|
119
|
+
"type": "string",
|
|
120
|
+
"const": "reward"
|
|
121
|
+
},
|
|
122
|
+
"fields": {
|
|
123
|
+
"type": "object",
|
|
124
|
+
"properties": {
|
|
125
|
+
"name": {
|
|
126
|
+
"type": "string",
|
|
127
|
+
"maxLength": 500
|
|
128
|
+
},
|
|
129
|
+
"description": {
|
|
130
|
+
"type": "string",
|
|
131
|
+
"maxLength": 10000
|
|
132
|
+
},
|
|
133
|
+
"kind": {
|
|
134
|
+
"type": "string",
|
|
135
|
+
"enum": [
|
|
136
|
+
"custom_verifier",
|
|
137
|
+
"state",
|
|
138
|
+
"content",
|
|
139
|
+
"schema",
|
|
140
|
+
"artifact",
|
|
141
|
+
"runtime_event",
|
|
142
|
+
"model_judge",
|
|
143
|
+
"learned_model",
|
|
144
|
+
"human"
|
|
145
|
+
]
|
|
146
|
+
},
|
|
147
|
+
"fields": {
|
|
148
|
+
"type": "string"
|
|
149
|
+
},
|
|
150
|
+
"outputField": {
|
|
151
|
+
"type": "string"
|
|
152
|
+
},
|
|
153
|
+
"expectedField": {
|
|
154
|
+
"type": "string"
|
|
155
|
+
},
|
|
156
|
+
"expectedValue": {
|
|
157
|
+
"type": "string"
|
|
158
|
+
},
|
|
159
|
+
"schema": {
|
|
160
|
+
"type": "string"
|
|
161
|
+
},
|
|
162
|
+
"reference": {
|
|
163
|
+
"type": "string"
|
|
164
|
+
},
|
|
165
|
+
"events": {
|
|
166
|
+
"type": "string"
|
|
167
|
+
},
|
|
168
|
+
"code": {
|
|
169
|
+
"type": "string"
|
|
170
|
+
},
|
|
171
|
+
"exportName": {
|
|
172
|
+
"type": "string"
|
|
173
|
+
},
|
|
174
|
+
"timeout": {
|
|
175
|
+
"type": "string"
|
|
176
|
+
},
|
|
177
|
+
"rubric": {
|
|
178
|
+
"type": "string"
|
|
179
|
+
},
|
|
180
|
+
"providerId": {
|
|
181
|
+
"type": "string"
|
|
182
|
+
},
|
|
183
|
+
"modelId": {
|
|
184
|
+
"type": "string"
|
|
185
|
+
},
|
|
186
|
+
"modelRevision": {
|
|
187
|
+
"type": "string"
|
|
188
|
+
},
|
|
189
|
+
"temperature": {
|
|
190
|
+
"type": "string"
|
|
191
|
+
},
|
|
192
|
+
"reviewerRole": {
|
|
193
|
+
"type": "string"
|
|
194
|
+
},
|
|
195
|
+
"learnedId": {
|
|
196
|
+
"type": "string"
|
|
197
|
+
},
|
|
198
|
+
"learnedHash": {
|
|
199
|
+
"type": "string"
|
|
200
|
+
},
|
|
201
|
+
"inputContract": {
|
|
202
|
+
"type": "string"
|
|
203
|
+
},
|
|
204
|
+
"minimum": {
|
|
205
|
+
"type": "string"
|
|
206
|
+
},
|
|
207
|
+
"maximum": {
|
|
208
|
+
"type": "string"
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
"required": [
|
|
212
|
+
"name",
|
|
213
|
+
"description",
|
|
214
|
+
"kind",
|
|
215
|
+
"fields",
|
|
216
|
+
"outputField",
|
|
217
|
+
"expectedField",
|
|
218
|
+
"expectedValue",
|
|
219
|
+
"schema",
|
|
220
|
+
"reference",
|
|
221
|
+
"events",
|
|
222
|
+
"code",
|
|
223
|
+
"exportName",
|
|
224
|
+
"timeout",
|
|
225
|
+
"rubric",
|
|
226
|
+
"providerId",
|
|
227
|
+
"modelId",
|
|
228
|
+
"modelRevision",
|
|
229
|
+
"temperature",
|
|
230
|
+
"reviewerRole",
|
|
231
|
+
"learnedId",
|
|
232
|
+
"learnedHash",
|
|
233
|
+
"inputContract",
|
|
234
|
+
"minimum",
|
|
235
|
+
"maximum"
|
|
236
|
+
],
|
|
237
|
+
"additionalProperties": false
|
|
238
|
+
}
|
|
239
|
+
},
|
|
240
|
+
"required": [
|
|
241
|
+
"id",
|
|
242
|
+
"targetId",
|
|
243
|
+
"baseRelease",
|
|
244
|
+
"editorVersion",
|
|
245
|
+
"targetKind",
|
|
246
|
+
"fields"
|
|
247
|
+
],
|
|
248
|
+
"additionalProperties": false
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"type": "object",
|
|
252
|
+
"properties": {
|
|
253
|
+
"id": {
|
|
254
|
+
"$ref": "#/$defs/__schema0"
|
|
255
|
+
},
|
|
256
|
+
"targetId": {
|
|
257
|
+
"$ref": "#/$defs/__schema0"
|
|
258
|
+
},
|
|
259
|
+
"baseRelease": {
|
|
260
|
+
"$ref": "#/$defs/__schema1"
|
|
261
|
+
},
|
|
262
|
+
"editorVersion": {
|
|
263
|
+
"$ref": "#/$defs/__schema4"
|
|
264
|
+
},
|
|
265
|
+
"targetKind": {
|
|
266
|
+
"type": "string",
|
|
267
|
+
"const": "binding"
|
|
268
|
+
},
|
|
269
|
+
"fields": {
|
|
270
|
+
"type": "object",
|
|
271
|
+
"properties": {
|
|
272
|
+
"name": {
|
|
273
|
+
"type": "string",
|
|
274
|
+
"maxLength": 500
|
|
275
|
+
},
|
|
276
|
+
"description": {
|
|
277
|
+
"type": "string",
|
|
278
|
+
"maxLength": 10000
|
|
279
|
+
},
|
|
280
|
+
"sources": {
|
|
281
|
+
"maxItems": 100,
|
|
282
|
+
"type": "array",
|
|
283
|
+
"items": {
|
|
284
|
+
"$ref": "#/$defs/__schema5"
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
},
|
|
288
|
+
"required": [
|
|
289
|
+
"name",
|
|
290
|
+
"description",
|
|
291
|
+
"sources"
|
|
292
|
+
],
|
|
293
|
+
"additionalProperties": false
|
|
294
|
+
}
|
|
295
|
+
},
|
|
296
|
+
"required": [
|
|
297
|
+
"id",
|
|
298
|
+
"targetId",
|
|
299
|
+
"baseRelease",
|
|
300
|
+
"editorVersion",
|
|
301
|
+
"targetKind",
|
|
302
|
+
"fields"
|
|
303
|
+
],
|
|
304
|
+
"additionalProperties": false
|
|
305
|
+
}
|
|
306
|
+
]
|
|
307
|
+
}
|
|
308
|
+
},
|
|
309
|
+
"required": [
|
|
310
|
+
"operationId",
|
|
311
|
+
"action",
|
|
312
|
+
"expectedRevision",
|
|
313
|
+
"draft"
|
|
314
|
+
],
|
|
315
|
+
"additionalProperties": false
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"type": "object",
|
|
319
|
+
"properties": {
|
|
320
|
+
"operationId": {
|
|
321
|
+
"$ref": "#/$defs/__schema0"
|
|
322
|
+
},
|
|
323
|
+
"action": {
|
|
324
|
+
"type": "string",
|
|
325
|
+
"const": "archive_draft"
|
|
326
|
+
},
|
|
327
|
+
"draft": {
|
|
328
|
+
"$ref": "#/$defs/__schema2"
|
|
329
|
+
}
|
|
330
|
+
},
|
|
331
|
+
"required": [
|
|
332
|
+
"operationId",
|
|
333
|
+
"action",
|
|
334
|
+
"draft"
|
|
335
|
+
],
|
|
336
|
+
"additionalProperties": false
|
|
337
|
+
},
|
|
10
338
|
{
|
|
11
339
|
"oneOf": [
|
|
12
340
|
{
|
|
@@ -16,16 +344,19 @@
|
|
|
16
344
|
"$ref": "#/$defs/__schema0"
|
|
17
345
|
},
|
|
18
346
|
"action": {
|
|
19
|
-
"$ref": "#/$defs/
|
|
347
|
+
"$ref": "#/$defs/__schema7"
|
|
20
348
|
},
|
|
21
349
|
"expectedRevision": {
|
|
22
|
-
"$ref": "#/$defs/
|
|
350
|
+
"$ref": "#/$defs/__schema8"
|
|
351
|
+
},
|
|
352
|
+
"finalizeDraft": {
|
|
353
|
+
"$ref": "#/$defs/__schema9"
|
|
23
354
|
},
|
|
24
355
|
"kind": {
|
|
25
|
-
"$ref": "#/$defs/
|
|
356
|
+
"$ref": "#/$defs/__schema11"
|
|
26
357
|
},
|
|
27
358
|
"content": {
|
|
28
|
-
"$ref": "#/$defs/
|
|
359
|
+
"$ref": "#/$defs/__schema12"
|
|
29
360
|
}
|
|
30
361
|
},
|
|
31
362
|
"required": [
|
|
@@ -44,16 +375,19 @@
|
|
|
44
375
|
"$ref": "#/$defs/__schema0"
|
|
45
376
|
},
|
|
46
377
|
"action": {
|
|
47
|
-
"$ref": "#/$defs/
|
|
378
|
+
"$ref": "#/$defs/__schema7"
|
|
48
379
|
},
|
|
49
380
|
"expectedRevision": {
|
|
50
|
-
"$ref": "#/$defs/
|
|
381
|
+
"$ref": "#/$defs/__schema8"
|
|
382
|
+
},
|
|
383
|
+
"finalizeDraft": {
|
|
384
|
+
"$ref": "#/$defs/__schema9"
|
|
51
385
|
},
|
|
52
386
|
"kind": {
|
|
53
|
-
"$ref": "#/$defs/
|
|
387
|
+
"$ref": "#/$defs/__schema17"
|
|
54
388
|
},
|
|
55
389
|
"content": {
|
|
56
|
-
"$ref": "#/$defs/
|
|
390
|
+
"$ref": "#/$defs/__schema18"
|
|
57
391
|
}
|
|
58
392
|
},
|
|
59
393
|
"required": [
|
|
@@ -72,16 +406,19 @@
|
|
|
72
406
|
"$ref": "#/$defs/__schema0"
|
|
73
407
|
},
|
|
74
408
|
"action": {
|
|
75
|
-
"$ref": "#/$defs/
|
|
409
|
+
"$ref": "#/$defs/__schema7"
|
|
76
410
|
},
|
|
77
411
|
"expectedRevision": {
|
|
78
|
-
"$ref": "#/$defs/
|
|
412
|
+
"$ref": "#/$defs/__schema8"
|
|
413
|
+
},
|
|
414
|
+
"finalizeDraft": {
|
|
415
|
+
"$ref": "#/$defs/__schema9"
|
|
79
416
|
},
|
|
80
417
|
"kind": {
|
|
81
|
-
"$ref": "#/$defs/
|
|
418
|
+
"$ref": "#/$defs/__schema33"
|
|
82
419
|
},
|
|
83
420
|
"content": {
|
|
84
|
-
"$ref": "#/$defs/
|
|
421
|
+
"$ref": "#/$defs/__schema34"
|
|
85
422
|
}
|
|
86
423
|
},
|
|
87
424
|
"required": [
|
|
@@ -100,16 +437,19 @@
|
|
|
100
437
|
"$ref": "#/$defs/__schema0"
|
|
101
438
|
},
|
|
102
439
|
"action": {
|
|
103
|
-
"$ref": "#/$defs/
|
|
440
|
+
"$ref": "#/$defs/__schema7"
|
|
104
441
|
},
|
|
105
442
|
"expectedRevision": {
|
|
106
|
-
"$ref": "#/$defs/
|
|
443
|
+
"$ref": "#/$defs/__schema8"
|
|
444
|
+
},
|
|
445
|
+
"finalizeDraft": {
|
|
446
|
+
"$ref": "#/$defs/__schema9"
|
|
107
447
|
},
|
|
108
448
|
"kind": {
|
|
109
|
-
"$ref": "#/$defs/
|
|
449
|
+
"$ref": "#/$defs/__schema42"
|
|
110
450
|
},
|
|
111
451
|
"content": {
|
|
112
|
-
"$ref": "#/$defs/
|
|
452
|
+
"$ref": "#/$defs/__schema43"
|
|
113
453
|
}
|
|
114
454
|
},
|
|
115
455
|
"required": [
|
|
@@ -128,16 +468,19 @@
|
|
|
128
468
|
"$ref": "#/$defs/__schema0"
|
|
129
469
|
},
|
|
130
470
|
"action": {
|
|
131
|
-
"$ref": "#/$defs/
|
|
471
|
+
"$ref": "#/$defs/__schema7"
|
|
132
472
|
},
|
|
133
473
|
"expectedRevision": {
|
|
134
|
-
"$ref": "#/$defs/
|
|
474
|
+
"$ref": "#/$defs/__schema8"
|
|
475
|
+
},
|
|
476
|
+
"finalizeDraft": {
|
|
477
|
+
"$ref": "#/$defs/__schema9"
|
|
135
478
|
},
|
|
136
479
|
"kind": {
|
|
137
|
-
"$ref": "#/$defs/
|
|
480
|
+
"$ref": "#/$defs/__schema52"
|
|
138
481
|
},
|
|
139
482
|
"content": {
|
|
140
|
-
"$ref": "#/$defs/
|
|
483
|
+
"$ref": "#/$defs/__schema53"
|
|
141
484
|
}
|
|
142
485
|
},
|
|
143
486
|
"required": [
|
|
@@ -156,16 +499,19 @@
|
|
|
156
499
|
"$ref": "#/$defs/__schema0"
|
|
157
500
|
},
|
|
158
501
|
"action": {
|
|
159
|
-
"$ref": "#/$defs/
|
|
502
|
+
"$ref": "#/$defs/__schema7"
|
|
160
503
|
},
|
|
161
504
|
"expectedRevision": {
|
|
162
|
-
"$ref": "#/$defs/
|
|
505
|
+
"$ref": "#/$defs/__schema8"
|
|
506
|
+
},
|
|
507
|
+
"finalizeDraft": {
|
|
508
|
+
"$ref": "#/$defs/__schema9"
|
|
163
509
|
},
|
|
164
510
|
"kind": {
|
|
165
|
-
"$ref": "#/$defs/
|
|
511
|
+
"$ref": "#/$defs/__schema64"
|
|
166
512
|
},
|
|
167
513
|
"content": {
|
|
168
|
-
"$ref": "#/$defs/
|
|
514
|
+
"$ref": "#/$defs/__schema65"
|
|
169
515
|
}
|
|
170
516
|
},
|
|
171
517
|
"required": [
|
|
@@ -189,12 +535,15 @@
|
|
|
189
535
|
"type": "string",
|
|
190
536
|
"const": "publish_resources"
|
|
191
537
|
},
|
|
538
|
+
"finalizeDraft": {
|
|
539
|
+
"$ref": "#/$defs/__schema10"
|
|
540
|
+
},
|
|
192
541
|
"resources": {
|
|
193
542
|
"minItems": 1,
|
|
194
543
|
"maxItems": 20,
|
|
195
544
|
"type": "array",
|
|
196
545
|
"items": {
|
|
197
|
-
"$ref": "#/$defs/
|
|
546
|
+
"$ref": "#/$defs/__schema78"
|
|
198
547
|
}
|
|
199
548
|
}
|
|
200
549
|
},
|
|
@@ -229,7 +578,7 @@
|
|
|
229
578
|
"$ref": "#/$defs/__schema0"
|
|
230
579
|
},
|
|
231
580
|
"taskDefinition": {
|
|
232
|
-
"$ref": "#/$defs/
|
|
581
|
+
"$ref": "#/$defs/__schema2"
|
|
233
582
|
},
|
|
234
583
|
"exampleId": {
|
|
235
584
|
"$ref": "#/$defs/__schema0"
|
|
@@ -238,7 +587,7 @@
|
|
|
238
587
|
"$ref": "#/$defs/__schema0"
|
|
239
588
|
},
|
|
240
589
|
"occurredAt": {
|
|
241
|
-
"$ref": "#/$defs/
|
|
590
|
+
"$ref": "#/$defs/__schema79"
|
|
242
591
|
},
|
|
243
592
|
"familyKey": {
|
|
244
593
|
"anyOf": [
|
|
@@ -251,15 +600,15 @@
|
|
|
251
600
|
]
|
|
252
601
|
},
|
|
253
602
|
"split": {
|
|
254
|
-
"$ref": "#/$defs/
|
|
603
|
+
"$ref": "#/$defs/__schema60"
|
|
255
604
|
},
|
|
256
605
|
"input": {
|
|
257
|
-
"$ref": "#/$defs/
|
|
606
|
+
"$ref": "#/$defs/__schema80"
|
|
258
607
|
},
|
|
259
608
|
"observedOutput": {
|
|
260
609
|
"anyOf": [
|
|
261
610
|
{
|
|
262
|
-
"$ref": "#/$defs/
|
|
611
|
+
"$ref": "#/$defs/__schema80"
|
|
263
612
|
},
|
|
264
613
|
{
|
|
265
614
|
"type": "null"
|
|
@@ -269,7 +618,7 @@
|
|
|
269
618
|
"expected": {
|
|
270
619
|
"anyOf": [
|
|
271
620
|
{
|
|
272
|
-
"$ref": "#/$defs/
|
|
621
|
+
"$ref": "#/$defs/__schema80"
|
|
273
622
|
},
|
|
274
623
|
{
|
|
275
624
|
"type": "null"
|
|
@@ -279,7 +628,7 @@
|
|
|
279
628
|
"evaluatorContext": {
|
|
280
629
|
"anyOf": [
|
|
281
630
|
{
|
|
282
|
-
"$ref": "#/$defs/
|
|
631
|
+
"$ref": "#/$defs/__schema80"
|
|
283
632
|
},
|
|
284
633
|
{
|
|
285
634
|
"type": "null"
|
|
@@ -290,7 +639,7 @@
|
|
|
290
639
|
"maxItems": 1000,
|
|
291
640
|
"type": "array",
|
|
292
641
|
"items": {
|
|
293
|
-
"$ref": "#/$defs/
|
|
642
|
+
"$ref": "#/$defs/__schema15"
|
|
294
643
|
}
|
|
295
644
|
},
|
|
296
645
|
"provenance": {
|
|
@@ -310,7 +659,7 @@
|
|
|
310
659
|
"mappingHash": {
|
|
311
660
|
"anyOf": [
|
|
312
661
|
{
|
|
313
|
-
"$ref": "#/$defs/
|
|
662
|
+
"$ref": "#/$defs/__schema3"
|
|
314
663
|
},
|
|
315
664
|
{
|
|
316
665
|
"type": "null"
|
|
@@ -384,7 +733,7 @@
|
|
|
384
733
|
"expectedEvidenceHash": {
|
|
385
734
|
"anyOf": [
|
|
386
735
|
{
|
|
387
|
-
"$ref": "#/$defs/
|
|
736
|
+
"$ref": "#/$defs/__schema3"
|
|
388
737
|
},
|
|
389
738
|
{
|
|
390
739
|
"type": "null"
|
|
@@ -392,7 +741,7 @@
|
|
|
392
741
|
]
|
|
393
742
|
},
|
|
394
743
|
"occurredAt": {
|
|
395
|
-
"$ref": "#/$defs/
|
|
744
|
+
"$ref": "#/$defs/__schema79"
|
|
396
745
|
},
|
|
397
746
|
"kind": {
|
|
398
747
|
"type": "string",
|
|
@@ -405,7 +754,7 @@
|
|
|
405
754
|
]
|
|
406
755
|
},
|
|
407
756
|
"value": {
|
|
408
|
-
"$ref": "#/$defs/
|
|
757
|
+
"$ref": "#/$defs/__schema80"
|
|
409
758
|
},
|
|
410
759
|
"note": {
|
|
411
760
|
"type": "string",
|
|
@@ -448,7 +797,7 @@
|
|
|
448
797
|
"$ref": "#/$defs/__schema0"
|
|
449
798
|
},
|
|
450
799
|
"evidence": {
|
|
451
|
-
"$ref": "#/$defs/
|
|
800
|
+
"$ref": "#/$defs/__schema2"
|
|
452
801
|
}
|
|
453
802
|
},
|
|
454
803
|
"required": [
|
|
@@ -488,7 +837,7 @@
|
|
|
488
837
|
"decision": {
|
|
489
838
|
"anyOf": [
|
|
490
839
|
{
|
|
491
|
-
"$ref": "#/$defs/
|
|
840
|
+
"$ref": "#/$defs/__schema2"
|
|
492
841
|
},
|
|
493
842
|
{
|
|
494
843
|
"type": "null"
|
|
@@ -522,7 +871,7 @@
|
|
|
522
871
|
"const": "queue_grade"
|
|
523
872
|
},
|
|
524
873
|
"evidence": {
|
|
525
|
-
"$ref": "#/$defs/
|
|
874
|
+
"$ref": "#/$defs/__schema2"
|
|
526
875
|
},
|
|
527
876
|
"target": {
|
|
528
877
|
"type": "string",
|
|
@@ -534,7 +883,7 @@
|
|
|
534
883
|
"proposedTarget": {
|
|
535
884
|
"anyOf": [
|
|
536
885
|
{
|
|
537
|
-
"$ref": "#/$defs/
|
|
886
|
+
"$ref": "#/$defs/__schema80"
|
|
538
887
|
},
|
|
539
888
|
{
|
|
540
889
|
"type": "null"
|
|
@@ -576,7 +925,7 @@
|
|
|
576
925
|
"const": "review"
|
|
577
926
|
},
|
|
578
927
|
"evidence": {
|
|
579
|
-
"$ref": "#/$defs/
|
|
928
|
+
"$ref": "#/$defs/__schema2"
|
|
580
929
|
},
|
|
581
930
|
"expectedRevision": {
|
|
582
931
|
"type": "integer",
|
|
@@ -603,7 +952,7 @@
|
|
|
603
952
|
"approvedTarget": {
|
|
604
953
|
"anyOf": [
|
|
605
954
|
{
|
|
606
|
-
"$ref": "#/$defs/
|
|
955
|
+
"$ref": "#/$defs/__schema80"
|
|
607
956
|
},
|
|
608
957
|
{
|
|
609
958
|
"type": "null"
|
|
@@ -663,7 +1012,7 @@
|
|
|
663
1012
|
"$ref": "#/$defs/__schema0"
|
|
664
1013
|
},
|
|
665
1014
|
"taskDefinition": {
|
|
666
|
-
"$ref": "#/$defs/
|
|
1015
|
+
"$ref": "#/$defs/__schema2"
|
|
667
1016
|
},
|
|
668
1017
|
"purpose": {
|
|
669
1018
|
"type": "string",
|
|
@@ -678,7 +1027,7 @@
|
|
|
678
1027
|
"maxItems": 10000,
|
|
679
1028
|
"type": "array",
|
|
680
1029
|
"items": {
|
|
681
|
-
"$ref": "#/$defs/
|
|
1030
|
+
"$ref": "#/$defs/__schema2"
|
|
682
1031
|
}
|
|
683
1032
|
},
|
|
684
1033
|
"decisions": {
|
|
@@ -686,7 +1035,7 @@
|
|
|
686
1035
|
"maxItems": 10000,
|
|
687
1036
|
"type": "array",
|
|
688
1037
|
"items": {
|
|
689
|
-
"$ref": "#/$defs/
|
|
1038
|
+
"$ref": "#/$defs/__schema2"
|
|
690
1039
|
}
|
|
691
1040
|
}
|
|
692
1041
|
},
|
|
@@ -743,35 +1092,216 @@
|
|
|
743
1092
|
"maxLength": 240
|
|
744
1093
|
},
|
|
745
1094
|
"__schema1": {
|
|
1095
|
+
"anyOf": [
|
|
1096
|
+
{
|
|
1097
|
+
"$ref": "#/$defs/__schema2"
|
|
1098
|
+
},
|
|
1099
|
+
{
|
|
1100
|
+
"type": "null"
|
|
1101
|
+
}
|
|
1102
|
+
]
|
|
1103
|
+
},
|
|
1104
|
+
"__schema2": {
|
|
1105
|
+
"type": "object",
|
|
1106
|
+
"properties": {
|
|
1107
|
+
"id": {
|
|
1108
|
+
"$ref": "#/$defs/__schema0"
|
|
1109
|
+
},
|
|
1110
|
+
"contentHash": {
|
|
1111
|
+
"$ref": "#/$defs/__schema3"
|
|
1112
|
+
},
|
|
1113
|
+
"revision": {
|
|
1114
|
+
"type": "integer",
|
|
1115
|
+
"exclusiveMinimum": 0,
|
|
1116
|
+
"maximum": 9007199254740991
|
|
1117
|
+
}
|
|
1118
|
+
},
|
|
1119
|
+
"required": [
|
|
1120
|
+
"id",
|
|
1121
|
+
"contentHash",
|
|
1122
|
+
"revision"
|
|
1123
|
+
],
|
|
1124
|
+
"additionalProperties": false
|
|
1125
|
+
},
|
|
1126
|
+
"__schema3": {
|
|
1127
|
+
"type": "string",
|
|
1128
|
+
"pattern": "^[a-f0-9]{64}$"
|
|
1129
|
+
},
|
|
1130
|
+
"__schema4": {
|
|
1131
|
+
"type": "string",
|
|
1132
|
+
"const": "openpond.modelsEditor.v1"
|
|
1133
|
+
},
|
|
1134
|
+
"__schema5": {
|
|
1135
|
+
"type": "object",
|
|
1136
|
+
"properties": {
|
|
1137
|
+
"graderId": {
|
|
1138
|
+
"$ref": "#/$defs/__schema0"
|
|
1139
|
+
},
|
|
1140
|
+
"reward": {
|
|
1141
|
+
"$ref": "#/$defs/__schema2"
|
|
1142
|
+
},
|
|
1143
|
+
"role": {
|
|
1144
|
+
"type": "string",
|
|
1145
|
+
"enum": [
|
|
1146
|
+
"training",
|
|
1147
|
+
"evaluation"
|
|
1148
|
+
]
|
|
1149
|
+
},
|
|
1150
|
+
"normalization": {
|
|
1151
|
+
"oneOf": [
|
|
1152
|
+
{
|
|
1153
|
+
"type": "object",
|
|
1154
|
+
"properties": {
|
|
1155
|
+
"kind": {
|
|
1156
|
+
"type": "string",
|
|
1157
|
+
"const": "identity"
|
|
1158
|
+
}
|
|
1159
|
+
},
|
|
1160
|
+
"required": [
|
|
1161
|
+
"kind"
|
|
1162
|
+
],
|
|
1163
|
+
"additionalProperties": false
|
|
1164
|
+
},
|
|
1165
|
+
{
|
|
1166
|
+
"type": "object",
|
|
1167
|
+
"properties": {
|
|
1168
|
+
"kind": {
|
|
1169
|
+
"type": "string",
|
|
1170
|
+
"const": "linear"
|
|
1171
|
+
},
|
|
1172
|
+
"minimum": {
|
|
1173
|
+
"type": "number"
|
|
1174
|
+
},
|
|
1175
|
+
"maximum": {
|
|
1176
|
+
"type": "number"
|
|
1177
|
+
},
|
|
1178
|
+
"direction": {
|
|
1179
|
+
"type": "string",
|
|
1180
|
+
"enum": [
|
|
1181
|
+
"higher",
|
|
1182
|
+
"lower"
|
|
1183
|
+
]
|
|
1184
|
+
}
|
|
1185
|
+
},
|
|
1186
|
+
"required": [
|
|
1187
|
+
"kind",
|
|
1188
|
+
"minimum",
|
|
1189
|
+
"maximum",
|
|
1190
|
+
"direction"
|
|
1191
|
+
],
|
|
1192
|
+
"additionalProperties": false
|
|
1193
|
+
}
|
|
1194
|
+
]
|
|
1195
|
+
},
|
|
1196
|
+
"weight": {
|
|
1197
|
+
"type": "number",
|
|
1198
|
+
"minimum": 0,
|
|
1199
|
+
"maximum": 1000
|
|
1200
|
+
},
|
|
1201
|
+
"required": {
|
|
1202
|
+
"type": "boolean"
|
|
1203
|
+
},
|
|
1204
|
+
"hardGate": {
|
|
1205
|
+
"type": "boolean"
|
|
1206
|
+
},
|
|
1207
|
+
"privileged": {
|
|
1208
|
+
"type": "boolean"
|
|
1209
|
+
},
|
|
1210
|
+
"fixtureRefs": {
|
|
1211
|
+
"maxItems": 1000,
|
|
1212
|
+
"type": "array",
|
|
1213
|
+
"items": {
|
|
1214
|
+
"$ref": "#/$defs/__schema6"
|
|
1215
|
+
}
|
|
1216
|
+
}
|
|
1217
|
+
},
|
|
1218
|
+
"required": [
|
|
1219
|
+
"graderId",
|
|
1220
|
+
"reward",
|
|
1221
|
+
"role",
|
|
1222
|
+
"normalization",
|
|
1223
|
+
"weight",
|
|
1224
|
+
"required",
|
|
1225
|
+
"hardGate",
|
|
1226
|
+
"privileged",
|
|
1227
|
+
"fixtureRefs"
|
|
1228
|
+
],
|
|
1229
|
+
"additionalProperties": false
|
|
1230
|
+
},
|
|
1231
|
+
"__schema6": {
|
|
1232
|
+
"type": "object",
|
|
1233
|
+
"properties": {
|
|
1234
|
+
"id": {
|
|
1235
|
+
"$ref": "#/$defs/__schema0"
|
|
1236
|
+
},
|
|
1237
|
+
"contentHash": {
|
|
1238
|
+
"$ref": "#/$defs/__schema3"
|
|
1239
|
+
}
|
|
1240
|
+
},
|
|
1241
|
+
"required": [
|
|
1242
|
+
"id",
|
|
1243
|
+
"contentHash"
|
|
1244
|
+
],
|
|
1245
|
+
"additionalProperties": false
|
|
1246
|
+
},
|
|
1247
|
+
"__schema7": {
|
|
746
1248
|
"type": "string",
|
|
747
1249
|
"const": "publish"
|
|
748
1250
|
},
|
|
749
|
-
"
|
|
1251
|
+
"__schema8": {
|
|
750
1252
|
"type": "integer",
|
|
751
1253
|
"minimum": 0,
|
|
752
1254
|
"maximum": 9007199254740991
|
|
753
1255
|
},
|
|
754
|
-
"
|
|
1256
|
+
"__schema9": {
|
|
1257
|
+
"$ref": "#/$defs/__schema10"
|
|
1258
|
+
},
|
|
1259
|
+
"__schema10": {
|
|
1260
|
+
"type": "object",
|
|
1261
|
+
"properties": {
|
|
1262
|
+
"draft": {
|
|
1263
|
+
"$ref": "#/$defs/__schema2"
|
|
1264
|
+
},
|
|
1265
|
+
"targetKind": {
|
|
1266
|
+
"type": "string",
|
|
1267
|
+
"enum": [
|
|
1268
|
+
"definition",
|
|
1269
|
+
"reward",
|
|
1270
|
+
"binding"
|
|
1271
|
+
]
|
|
1272
|
+
},
|
|
1273
|
+
"release": {
|
|
1274
|
+
"$ref": "#/$defs/__schema2"
|
|
1275
|
+
}
|
|
1276
|
+
},
|
|
1277
|
+
"required": [
|
|
1278
|
+
"draft",
|
|
1279
|
+
"targetKind",
|
|
1280
|
+
"release"
|
|
1281
|
+
],
|
|
1282
|
+
"additionalProperties": false
|
|
1283
|
+
},
|
|
1284
|
+
"__schema11": {
|
|
755
1285
|
"type": "string",
|
|
756
1286
|
"const": "asset"
|
|
757
1287
|
},
|
|
758
|
-
"
|
|
1288
|
+
"__schema12": {
|
|
759
1289
|
"type": "object",
|
|
760
1290
|
"properties": {
|
|
761
1291
|
"schemaVersion": {
|
|
762
|
-
"$ref": "#/$defs/
|
|
1292
|
+
"$ref": "#/$defs/__schema13"
|
|
763
1293
|
},
|
|
764
1294
|
"id": {
|
|
765
1295
|
"$ref": "#/$defs/__schema0"
|
|
766
1296
|
},
|
|
767
1297
|
"revision": {
|
|
768
|
-
"$ref": "#/$defs/
|
|
1298
|
+
"$ref": "#/$defs/__schema14"
|
|
769
1299
|
},
|
|
770
1300
|
"asset": {
|
|
771
|
-
"$ref": "#/$defs/
|
|
1301
|
+
"$ref": "#/$defs/__schema15"
|
|
772
1302
|
},
|
|
773
1303
|
"text": {
|
|
774
|
-
"$ref": "#/$defs/
|
|
1304
|
+
"$ref": "#/$defs/__schema16"
|
|
775
1305
|
}
|
|
776
1306
|
},
|
|
777
1307
|
"required": [
|
|
@@ -783,15 +1313,15 @@
|
|
|
783
1313
|
],
|
|
784
1314
|
"additionalProperties": false
|
|
785
1315
|
},
|
|
786
|
-
"
|
|
1316
|
+
"__schema13": {
|
|
787
1317
|
"type": "string",
|
|
788
1318
|
"const": "openpond.learningTextAsset.v1"
|
|
789
1319
|
},
|
|
790
|
-
"
|
|
1320
|
+
"__schema14": {
|
|
791
1321
|
"type": "number",
|
|
792
1322
|
"const": 1
|
|
793
1323
|
},
|
|
794
|
-
"
|
|
1324
|
+
"__schema15": {
|
|
795
1325
|
"type": "object",
|
|
796
1326
|
"properties": {
|
|
797
1327
|
"id": {
|
|
@@ -803,7 +1333,7 @@
|
|
|
803
1333
|
"maxLength": 2000
|
|
804
1334
|
},
|
|
805
1335
|
"contentHash": {
|
|
806
|
-
"$ref": "#/$defs/
|
|
1336
|
+
"$ref": "#/$defs/__schema3"
|
|
807
1337
|
},
|
|
808
1338
|
"sizeBytes": {
|
|
809
1339
|
"type": "integer",
|
|
@@ -834,59 +1364,55 @@
|
|
|
834
1364
|
],
|
|
835
1365
|
"additionalProperties": false
|
|
836
1366
|
},
|
|
837
|
-
"
|
|
838
|
-
"type": "string",
|
|
839
|
-
"pattern": "^[a-f0-9]{64}$"
|
|
840
|
-
},
|
|
841
|
-
"__schema9": {
|
|
1367
|
+
"__schema16": {
|
|
842
1368
|
"type": "string",
|
|
843
1369
|
"maxLength": 524288
|
|
844
1370
|
},
|
|
845
|
-
"
|
|
1371
|
+
"__schema17": {
|
|
846
1372
|
"type": "string",
|
|
847
1373
|
"const": "definition"
|
|
848
1374
|
},
|
|
849
|
-
"
|
|
1375
|
+
"__schema18": {
|
|
850
1376
|
"type": "object",
|
|
851
1377
|
"properties": {
|
|
852
1378
|
"schemaVersion": {
|
|
853
|
-
"$ref": "#/$defs/
|
|
1379
|
+
"$ref": "#/$defs/__schema19"
|
|
854
1380
|
},
|
|
855
1381
|
"id": {
|
|
856
1382
|
"$ref": "#/$defs/__schema0"
|
|
857
1383
|
},
|
|
858
1384
|
"revision": {
|
|
859
|
-
"$ref": "#/$defs/
|
|
1385
|
+
"$ref": "#/$defs/__schema20"
|
|
860
1386
|
},
|
|
861
1387
|
"name": {
|
|
862
|
-
"$ref": "#/$defs/
|
|
1388
|
+
"$ref": "#/$defs/__schema21"
|
|
863
1389
|
},
|
|
864
1390
|
"description": {
|
|
865
|
-
"$ref": "#/$defs/
|
|
1391
|
+
"$ref": "#/$defs/__schema22"
|
|
866
1392
|
},
|
|
867
1393
|
"instructions": {
|
|
868
|
-
"$ref": "#/$defs/
|
|
1394
|
+
"$ref": "#/$defs/__schema23"
|
|
869
1395
|
},
|
|
870
1396
|
"category": {
|
|
871
|
-
"$ref": "#/$defs/
|
|
1397
|
+
"$ref": "#/$defs/__schema24"
|
|
872
1398
|
},
|
|
873
1399
|
"familyNamespace": {
|
|
874
1400
|
"$ref": "#/$defs/__schema0"
|
|
875
1401
|
},
|
|
876
1402
|
"inputSchema": {
|
|
877
|
-
"$ref": "#/$defs/
|
|
1403
|
+
"$ref": "#/$defs/__schema25"
|
|
878
1404
|
},
|
|
879
1405
|
"outputSchema": {
|
|
880
|
-
"$ref": "#/$defs/
|
|
1406
|
+
"$ref": "#/$defs/__schema26"
|
|
881
1407
|
},
|
|
882
1408
|
"rewardBinding": {
|
|
883
|
-
"$ref": "#/$defs/
|
|
1409
|
+
"$ref": "#/$defs/__schema2"
|
|
884
1410
|
},
|
|
885
1411
|
"harness": {
|
|
886
|
-
"$ref": "#/$defs/
|
|
1412
|
+
"$ref": "#/$defs/__schema27"
|
|
887
1413
|
},
|
|
888
1414
|
"execution": {
|
|
889
|
-
"$ref": "#/$defs/
|
|
1415
|
+
"$ref": "#/$defs/__schema28"
|
|
890
1416
|
}
|
|
891
1417
|
},
|
|
892
1418
|
"required": [
|
|
@@ -906,30 +1432,30 @@
|
|
|
906
1432
|
],
|
|
907
1433
|
"additionalProperties": false
|
|
908
1434
|
},
|
|
909
|
-
"
|
|
1435
|
+
"__schema19": {
|
|
910
1436
|
"type": "string",
|
|
911
1437
|
"const": "openpond.taskDefinition.v1"
|
|
912
1438
|
},
|
|
913
|
-
"
|
|
1439
|
+
"__schema20": {
|
|
914
1440
|
"type": "integer",
|
|
915
1441
|
"exclusiveMinimum": 0,
|
|
916
1442
|
"maximum": 9007199254740991
|
|
917
1443
|
},
|
|
918
|
-
"
|
|
1444
|
+
"__schema21": {
|
|
919
1445
|
"type": "string",
|
|
920
1446
|
"minLength": 1,
|
|
921
1447
|
"maxLength": 500
|
|
922
1448
|
},
|
|
923
|
-
"
|
|
1449
|
+
"__schema22": {
|
|
924
1450
|
"type": "string",
|
|
925
1451
|
"maxLength": 10000
|
|
926
1452
|
},
|
|
927
|
-
"
|
|
1453
|
+
"__schema23": {
|
|
928
1454
|
"type": "string",
|
|
929
1455
|
"minLength": 1,
|
|
930
1456
|
"maxLength": 20000
|
|
931
1457
|
},
|
|
932
|
-
"
|
|
1458
|
+
"__schema24": {
|
|
933
1459
|
"type": "string",
|
|
934
1460
|
"enum": [
|
|
935
1461
|
"structured",
|
|
@@ -939,69 +1465,31 @@
|
|
|
939
1465
|
"custom"
|
|
940
1466
|
]
|
|
941
1467
|
},
|
|
942
|
-
"
|
|
1468
|
+
"__schema25": {
|
|
943
1469
|
"type": "object",
|
|
944
1470
|
"propertyNames": {
|
|
945
1471
|
"type": "string"
|
|
946
1472
|
},
|
|
947
1473
|
"additionalProperties": {}
|
|
948
1474
|
},
|
|
949
|
-
"
|
|
1475
|
+
"__schema26": {
|
|
950
1476
|
"type": "object",
|
|
951
1477
|
"propertyNames": {
|
|
952
1478
|
"type": "string"
|
|
953
1479
|
},
|
|
954
1480
|
"additionalProperties": {}
|
|
955
1481
|
},
|
|
956
|
-
"
|
|
957
|
-
"type": "object",
|
|
958
|
-
"properties": {
|
|
959
|
-
"id": {
|
|
960
|
-
"$ref": "#/$defs/__schema0"
|
|
961
|
-
},
|
|
962
|
-
"contentHash": {
|
|
963
|
-
"$ref": "#/$defs/__schema8"
|
|
964
|
-
},
|
|
965
|
-
"revision": {
|
|
966
|
-
"type": "integer",
|
|
967
|
-
"exclusiveMinimum": 0,
|
|
968
|
-
"maximum": 9007199254740991
|
|
969
|
-
}
|
|
970
|
-
},
|
|
971
|
-
"required": [
|
|
972
|
-
"id",
|
|
973
|
-
"contentHash",
|
|
974
|
-
"revision"
|
|
975
|
-
],
|
|
976
|
-
"additionalProperties": false
|
|
977
|
-
},
|
|
978
|
-
"__schema21": {
|
|
1482
|
+
"__schema27": {
|
|
979
1483
|
"anyOf": [
|
|
980
1484
|
{
|
|
981
|
-
"$ref": "#/$defs/
|
|
1485
|
+
"$ref": "#/$defs/__schema6"
|
|
982
1486
|
},
|
|
983
1487
|
{
|
|
984
1488
|
"type": "null"
|
|
985
1489
|
}
|
|
986
1490
|
]
|
|
987
1491
|
},
|
|
988
|
-
"
|
|
989
|
-
"type": "object",
|
|
990
|
-
"properties": {
|
|
991
|
-
"id": {
|
|
992
|
-
"$ref": "#/$defs/__schema0"
|
|
993
|
-
},
|
|
994
|
-
"contentHash": {
|
|
995
|
-
"$ref": "#/$defs/__schema8"
|
|
996
|
-
}
|
|
997
|
-
},
|
|
998
|
-
"required": [
|
|
999
|
-
"id",
|
|
1000
|
-
"contentHash"
|
|
1001
|
-
],
|
|
1002
|
-
"additionalProperties": false
|
|
1003
|
-
},
|
|
1004
|
-
"__schema23": {
|
|
1492
|
+
"__schema28": {
|
|
1005
1493
|
"type": "object",
|
|
1006
1494
|
"properties": {
|
|
1007
1495
|
"policy": {
|
|
@@ -1080,7 +1568,7 @@
|
|
|
1080
1568
|
"maxItems": 5,
|
|
1081
1569
|
"type": "array",
|
|
1082
1570
|
"items": {
|
|
1083
|
-
"$ref": "#/$defs/
|
|
1571
|
+
"$ref": "#/$defs/__schema29"
|
|
1084
1572
|
}
|
|
1085
1573
|
},
|
|
1086
1574
|
"networkPolicy": {
|
|
@@ -1116,7 +1604,7 @@
|
|
|
1116
1604
|
"$ref": "#/$defs/__schema0"
|
|
1117
1605
|
},
|
|
1118
1606
|
"contentHash": {
|
|
1119
|
-
"$ref": "#/$defs/
|
|
1607
|
+
"$ref": "#/$defs/__schema3"
|
|
1120
1608
|
}
|
|
1121
1609
|
},
|
|
1122
1610
|
"required": [
|
|
@@ -1129,14 +1617,14 @@
|
|
|
1129
1617
|
"maxItems": 200,
|
|
1130
1618
|
"type": "array",
|
|
1131
1619
|
"items": {
|
|
1132
|
-
"$ref": "#/$defs/
|
|
1620
|
+
"$ref": "#/$defs/__schema30"
|
|
1133
1621
|
}
|
|
1134
1622
|
},
|
|
1135
1623
|
"capabilities": {
|
|
1136
1624
|
"maxItems": 200,
|
|
1137
1625
|
"type": "array",
|
|
1138
1626
|
"items": {
|
|
1139
|
-
"$ref": "#/$defs/
|
|
1627
|
+
"$ref": "#/$defs/__schema31"
|
|
1140
1628
|
}
|
|
1141
1629
|
},
|
|
1142
1630
|
"verifierSetRelease": {
|
|
@@ -1146,7 +1634,7 @@
|
|
|
1146
1634
|
"$ref": "#/$defs/__schema0"
|
|
1147
1635
|
},
|
|
1148
1636
|
"contentHash": {
|
|
1149
|
-
"$ref": "#/$defs/
|
|
1637
|
+
"$ref": "#/$defs/__schema3"
|
|
1150
1638
|
}
|
|
1151
1639
|
},
|
|
1152
1640
|
"required": [
|
|
@@ -1164,7 +1652,7 @@
|
|
|
1164
1652
|
],
|
|
1165
1653
|
"additionalProperties": false
|
|
1166
1654
|
},
|
|
1167
|
-
"
|
|
1655
|
+
"__schema29": {
|
|
1168
1656
|
"type": "string",
|
|
1169
1657
|
"enum": [
|
|
1170
1658
|
"create",
|
|
@@ -1174,7 +1662,7 @@
|
|
|
1174
1662
|
"destroy"
|
|
1175
1663
|
]
|
|
1176
1664
|
},
|
|
1177
|
-
"
|
|
1665
|
+
"__schema30": {
|
|
1178
1666
|
"type": "object",
|
|
1179
1667
|
"properties": {
|
|
1180
1668
|
"name": {
|
|
@@ -1196,7 +1684,7 @@
|
|
|
1196
1684
|
"additionalProperties": {}
|
|
1197
1685
|
},
|
|
1198
1686
|
"inputSchemaHash": {
|
|
1199
|
-
"$ref": "#/$defs/
|
|
1687
|
+
"$ref": "#/$defs/__schema3"
|
|
1200
1688
|
},
|
|
1201
1689
|
"sideEffect": {
|
|
1202
1690
|
"type": "string",
|
|
@@ -1221,7 +1709,7 @@
|
|
|
1221
1709
|
],
|
|
1222
1710
|
"additionalProperties": false
|
|
1223
1711
|
},
|
|
1224
|
-
"
|
|
1712
|
+
"__schema31": {
|
|
1225
1713
|
"type": "object",
|
|
1226
1714
|
"properties": {
|
|
1227
1715
|
"id": {
|
|
@@ -1235,7 +1723,7 @@
|
|
|
1235
1723
|
"maxItems": 100,
|
|
1236
1724
|
"type": "array",
|
|
1237
1725
|
"items": {
|
|
1238
|
-
"$ref": "#/$defs/
|
|
1726
|
+
"$ref": "#/$defs/__schema32"
|
|
1239
1727
|
}
|
|
1240
1728
|
},
|
|
1241
1729
|
"portability": {
|
|
@@ -1256,41 +1744,41 @@
|
|
|
1256
1744
|
],
|
|
1257
1745
|
"additionalProperties": false
|
|
1258
1746
|
},
|
|
1259
|
-
"
|
|
1747
|
+
"__schema32": {
|
|
1260
1748
|
"type": "string",
|
|
1261
1749
|
"minLength": 1,
|
|
1262
1750
|
"maxLength": 500
|
|
1263
1751
|
},
|
|
1264
|
-
"
|
|
1752
|
+
"__schema33": {
|
|
1265
1753
|
"type": "string",
|
|
1266
1754
|
"const": "reward"
|
|
1267
1755
|
},
|
|
1268
|
-
"
|
|
1756
|
+
"__schema34": {
|
|
1269
1757
|
"type": "object",
|
|
1270
1758
|
"properties": {
|
|
1271
1759
|
"schemaVersion": {
|
|
1272
|
-
"$ref": "#/$defs/
|
|
1760
|
+
"$ref": "#/$defs/__schema35"
|
|
1273
1761
|
},
|
|
1274
1762
|
"id": {
|
|
1275
1763
|
"$ref": "#/$defs/__schema0"
|
|
1276
1764
|
},
|
|
1277
1765
|
"revision": {
|
|
1278
|
-
"$ref": "#/$defs/
|
|
1766
|
+
"$ref": "#/$defs/__schema36"
|
|
1279
1767
|
},
|
|
1280
1768
|
"name": {
|
|
1281
|
-
"$ref": "#/$defs/
|
|
1769
|
+
"$ref": "#/$defs/__schema37"
|
|
1282
1770
|
},
|
|
1283
1771
|
"description": {
|
|
1284
|
-
"$ref": "#/$defs/
|
|
1772
|
+
"$ref": "#/$defs/__schema38"
|
|
1285
1773
|
},
|
|
1286
1774
|
"implementation": {
|
|
1287
|
-
"$ref": "#/$defs/
|
|
1775
|
+
"$ref": "#/$defs/__schema39"
|
|
1288
1776
|
},
|
|
1289
1777
|
"rawScore": {
|
|
1290
|
-
"$ref": "#/$defs/
|
|
1778
|
+
"$ref": "#/$defs/__schema40"
|
|
1291
1779
|
},
|
|
1292
1780
|
"assets": {
|
|
1293
|
-
"$ref": "#/$defs/
|
|
1781
|
+
"$ref": "#/$defs/__schema41"
|
|
1294
1782
|
}
|
|
1295
1783
|
},
|
|
1296
1784
|
"required": [
|
|
@@ -1305,25 +1793,25 @@
|
|
|
1305
1793
|
],
|
|
1306
1794
|
"additionalProperties": false
|
|
1307
1795
|
},
|
|
1308
|
-
"
|
|
1796
|
+
"__schema35": {
|
|
1309
1797
|
"type": "string",
|
|
1310
1798
|
"const": "openpond.rewardRelease.v1"
|
|
1311
1799
|
},
|
|
1312
|
-
"
|
|
1800
|
+
"__schema36": {
|
|
1313
1801
|
"type": "integer",
|
|
1314
1802
|
"exclusiveMinimum": 0,
|
|
1315
1803
|
"maximum": 9007199254740991
|
|
1316
1804
|
},
|
|
1317
|
-
"
|
|
1805
|
+
"__schema37": {
|
|
1318
1806
|
"type": "string",
|
|
1319
1807
|
"minLength": 1,
|
|
1320
1808
|
"maxLength": 500
|
|
1321
1809
|
},
|
|
1322
|
-
"
|
|
1810
|
+
"__schema38": {
|
|
1323
1811
|
"type": "string",
|
|
1324
1812
|
"maxLength": 10000
|
|
1325
1813
|
},
|
|
1326
|
-
"
|
|
1814
|
+
"__schema39": {
|
|
1327
1815
|
"anyOf": [
|
|
1328
1816
|
{
|
|
1329
1817
|
"type": "object",
|
|
@@ -1360,7 +1848,7 @@
|
|
|
1360
1848
|
"const": "model_judge"
|
|
1361
1849
|
},
|
|
1362
1850
|
"rubricRef": {
|
|
1363
|
-
"$ref": "#/$defs/
|
|
1851
|
+
"$ref": "#/$defs/__schema15"
|
|
1364
1852
|
},
|
|
1365
1853
|
"calibrationStatus": {
|
|
1366
1854
|
"type": "string",
|
|
@@ -1420,7 +1908,7 @@
|
|
|
1420
1908
|
"const": "custom_verifier"
|
|
1421
1909
|
},
|
|
1422
1910
|
"verifierRef": {
|
|
1423
|
-
"$ref": "#/$defs/
|
|
1911
|
+
"$ref": "#/$defs/__schema15"
|
|
1424
1912
|
},
|
|
1425
1913
|
"exportName": {
|
|
1426
1914
|
"type": "string",
|
|
@@ -1453,7 +1941,7 @@
|
|
|
1453
1941
|
"const": "human"
|
|
1454
1942
|
},
|
|
1455
1943
|
"rubricRef": {
|
|
1456
|
-
"$ref": "#/$defs/
|
|
1944
|
+
"$ref": "#/$defs/__schema15"
|
|
1457
1945
|
},
|
|
1458
1946
|
"reviewerRole": {
|
|
1459
1947
|
"type": "string",
|
|
@@ -1476,10 +1964,10 @@
|
|
|
1476
1964
|
"const": "learned_model"
|
|
1477
1965
|
},
|
|
1478
1966
|
"modelVersion": {
|
|
1479
|
-
"$ref": "#/$defs/
|
|
1967
|
+
"$ref": "#/$defs/__schema6"
|
|
1480
1968
|
},
|
|
1481
1969
|
"inputContract": {
|
|
1482
|
-
"$ref": "#/$defs/
|
|
1970
|
+
"$ref": "#/$defs/__schema15"
|
|
1483
1971
|
}
|
|
1484
1972
|
},
|
|
1485
1973
|
"required": [
|
|
@@ -1491,7 +1979,7 @@
|
|
|
1491
1979
|
}
|
|
1492
1980
|
]
|
|
1493
1981
|
},
|
|
1494
|
-
"
|
|
1982
|
+
"__schema40": {
|
|
1495
1983
|
"type": "object",
|
|
1496
1984
|
"properties": {
|
|
1497
1985
|
"minimum": {
|
|
@@ -1507,46 +1995,46 @@
|
|
|
1507
1995
|
],
|
|
1508
1996
|
"additionalProperties": false
|
|
1509
1997
|
},
|
|
1510
|
-
"
|
|
1998
|
+
"__schema41": {
|
|
1511
1999
|
"maxItems": 1000,
|
|
1512
2000
|
"type": "array",
|
|
1513
2001
|
"items": {
|
|
1514
|
-
"$ref": "#/$defs/
|
|
2002
|
+
"$ref": "#/$defs/__schema15"
|
|
1515
2003
|
}
|
|
1516
2004
|
},
|
|
1517
|
-
"
|
|
2005
|
+
"__schema42": {
|
|
1518
2006
|
"type": "string",
|
|
1519
2007
|
"const": "binding"
|
|
1520
2008
|
},
|
|
1521
|
-
"
|
|
2009
|
+
"__schema43": {
|
|
1522
2010
|
"type": "object",
|
|
1523
2011
|
"properties": {
|
|
1524
2012
|
"schemaVersion": {
|
|
1525
|
-
"$ref": "#/$defs/
|
|
2013
|
+
"$ref": "#/$defs/__schema44"
|
|
1526
2014
|
},
|
|
1527
2015
|
"id": {
|
|
1528
2016
|
"$ref": "#/$defs/__schema0"
|
|
1529
2017
|
},
|
|
1530
2018
|
"revision": {
|
|
1531
|
-
"$ref": "#/$defs/
|
|
2019
|
+
"$ref": "#/$defs/__schema45"
|
|
1532
2020
|
},
|
|
1533
2021
|
"name": {
|
|
1534
|
-
"$ref": "#/$defs/
|
|
2022
|
+
"$ref": "#/$defs/__schema46"
|
|
1535
2023
|
},
|
|
1536
2024
|
"description": {
|
|
1537
|
-
"$ref": "#/$defs/
|
|
2025
|
+
"$ref": "#/$defs/__schema47"
|
|
1538
2026
|
},
|
|
1539
2027
|
"recipeRef": {
|
|
1540
|
-
"$ref": "#/$defs/
|
|
2028
|
+
"$ref": "#/$defs/__schema48"
|
|
1541
2029
|
},
|
|
1542
2030
|
"sources": {
|
|
1543
|
-
"$ref": "#/$defs/
|
|
2031
|
+
"$ref": "#/$defs/__schema49"
|
|
1544
2032
|
},
|
|
1545
2033
|
"aggregation": {
|
|
1546
|
-
"$ref": "#/$defs/
|
|
2034
|
+
"$ref": "#/$defs/__schema50"
|
|
1547
2035
|
},
|
|
1548
2036
|
"unscorable": {
|
|
1549
|
-
"$ref": "#/$defs/
|
|
2037
|
+
"$ref": "#/$defs/__schema51"
|
|
1550
2038
|
}
|
|
1551
2039
|
},
|
|
1552
2040
|
"required": [
|
|
@@ -1559,176 +2047,79 @@
|
|
|
1559
2047
|
],
|
|
1560
2048
|
"additionalProperties": false
|
|
1561
2049
|
},
|
|
1562
|
-
"
|
|
2050
|
+
"__schema44": {
|
|
1563
2051
|
"type": "string",
|
|
1564
2052
|
"const": "openpond.rewardBinding.v1"
|
|
1565
2053
|
},
|
|
1566
|
-
"
|
|
2054
|
+
"__schema45": {
|
|
1567
2055
|
"type": "integer",
|
|
1568
2056
|
"exclusiveMinimum": 0,
|
|
1569
2057
|
"maximum": 9007199254740991
|
|
1570
2058
|
},
|
|
1571
|
-
"
|
|
2059
|
+
"__schema46": {
|
|
1572
2060
|
"type": "string",
|
|
1573
2061
|
"minLength": 1,
|
|
1574
2062
|
"maxLength": 500
|
|
1575
2063
|
},
|
|
1576
|
-
"
|
|
2064
|
+
"__schema47": {
|
|
1577
2065
|
"type": "string",
|
|
1578
2066
|
"maxLength": 10000
|
|
1579
2067
|
},
|
|
1580
|
-
"
|
|
1581
|
-
"$ref": "#/$defs/
|
|
2068
|
+
"__schema48": {
|
|
2069
|
+
"$ref": "#/$defs/__schema2"
|
|
1582
2070
|
},
|
|
1583
|
-
"
|
|
2071
|
+
"__schema49": {
|
|
1584
2072
|
"minItems": 1,
|
|
1585
2073
|
"maxItems": 100,
|
|
1586
2074
|
"type": "array",
|
|
1587
2075
|
"items": {
|
|
1588
|
-
"$ref": "#/$defs/
|
|
2076
|
+
"$ref": "#/$defs/__schema5"
|
|
1589
2077
|
}
|
|
1590
2078
|
},
|
|
1591
|
-
"
|
|
1592
|
-
"type": "object",
|
|
1593
|
-
"properties": {
|
|
1594
|
-
"graderId": {
|
|
1595
|
-
"$ref": "#/$defs/__schema0"
|
|
1596
|
-
},
|
|
1597
|
-
"reward": {
|
|
1598
|
-
"$ref": "#/$defs/__schema20"
|
|
1599
|
-
},
|
|
1600
|
-
"role": {
|
|
1601
|
-
"type": "string",
|
|
1602
|
-
"enum": [
|
|
1603
|
-
"training",
|
|
1604
|
-
"evaluation"
|
|
1605
|
-
]
|
|
1606
|
-
},
|
|
1607
|
-
"normalization": {
|
|
1608
|
-
"oneOf": [
|
|
1609
|
-
{
|
|
1610
|
-
"type": "object",
|
|
1611
|
-
"properties": {
|
|
1612
|
-
"kind": {
|
|
1613
|
-
"type": "string",
|
|
1614
|
-
"const": "identity"
|
|
1615
|
-
}
|
|
1616
|
-
},
|
|
1617
|
-
"required": [
|
|
1618
|
-
"kind"
|
|
1619
|
-
],
|
|
1620
|
-
"additionalProperties": false
|
|
1621
|
-
},
|
|
1622
|
-
{
|
|
1623
|
-
"type": "object",
|
|
1624
|
-
"properties": {
|
|
1625
|
-
"kind": {
|
|
1626
|
-
"type": "string",
|
|
1627
|
-
"const": "linear"
|
|
1628
|
-
},
|
|
1629
|
-
"minimum": {
|
|
1630
|
-
"type": "number"
|
|
1631
|
-
},
|
|
1632
|
-
"maximum": {
|
|
1633
|
-
"type": "number"
|
|
1634
|
-
},
|
|
1635
|
-
"direction": {
|
|
1636
|
-
"type": "string",
|
|
1637
|
-
"enum": [
|
|
1638
|
-
"higher",
|
|
1639
|
-
"lower"
|
|
1640
|
-
]
|
|
1641
|
-
}
|
|
1642
|
-
},
|
|
1643
|
-
"required": [
|
|
1644
|
-
"kind",
|
|
1645
|
-
"minimum",
|
|
1646
|
-
"maximum",
|
|
1647
|
-
"direction"
|
|
1648
|
-
],
|
|
1649
|
-
"additionalProperties": false
|
|
1650
|
-
}
|
|
1651
|
-
]
|
|
1652
|
-
},
|
|
1653
|
-
"weight": {
|
|
1654
|
-
"type": "number",
|
|
1655
|
-
"minimum": 0,
|
|
1656
|
-
"maximum": 1000
|
|
1657
|
-
},
|
|
1658
|
-
"required": {
|
|
1659
|
-
"type": "boolean"
|
|
1660
|
-
},
|
|
1661
|
-
"hardGate": {
|
|
1662
|
-
"type": "boolean"
|
|
1663
|
-
},
|
|
1664
|
-
"privileged": {
|
|
1665
|
-
"type": "boolean"
|
|
1666
|
-
},
|
|
1667
|
-
"fixtureRefs": {
|
|
1668
|
-
"maxItems": 1000,
|
|
1669
|
-
"type": "array",
|
|
1670
|
-
"items": {
|
|
1671
|
-
"$ref": "#/$defs/__schema22"
|
|
1672
|
-
}
|
|
1673
|
-
}
|
|
1674
|
-
},
|
|
1675
|
-
"required": [
|
|
1676
|
-
"graderId",
|
|
1677
|
-
"reward",
|
|
1678
|
-
"role",
|
|
1679
|
-
"normalization",
|
|
1680
|
-
"weight",
|
|
1681
|
-
"required",
|
|
1682
|
-
"hardGate",
|
|
1683
|
-
"privileged",
|
|
1684
|
-
"fixtureRefs"
|
|
1685
|
-
],
|
|
1686
|
-
"additionalProperties": false
|
|
1687
|
-
},
|
|
1688
|
-
"__schema46": {
|
|
2079
|
+
"__schema50": {
|
|
1689
2080
|
"type": "string",
|
|
1690
2081
|
"const": "weighted_mean"
|
|
1691
2082
|
},
|
|
1692
|
-
"
|
|
2083
|
+
"__schema51": {
|
|
1693
2084
|
"type": "string",
|
|
1694
2085
|
"const": "exclude_optional_require_all_required"
|
|
1695
2086
|
},
|
|
1696
|
-
"
|
|
2087
|
+
"__schema52": {
|
|
1697
2088
|
"type": "string",
|
|
1698
2089
|
"const": "source"
|
|
1699
2090
|
},
|
|
1700
|
-
"
|
|
2091
|
+
"__schema53": {
|
|
1701
2092
|
"type": "object",
|
|
1702
2093
|
"properties": {
|
|
1703
2094
|
"schemaVersion": {
|
|
1704
|
-
"$ref": "#/$defs/
|
|
2095
|
+
"$ref": "#/$defs/__schema54"
|
|
1705
2096
|
},
|
|
1706
2097
|
"id": {
|
|
1707
2098
|
"$ref": "#/$defs/__schema0"
|
|
1708
2099
|
},
|
|
1709
2100
|
"revision": {
|
|
1710
|
-
"$ref": "#/$defs/
|
|
2101
|
+
"$ref": "#/$defs/__schema55"
|
|
1711
2102
|
},
|
|
1712
2103
|
"name": {
|
|
1713
|
-
"$ref": "#/$defs/
|
|
2104
|
+
"$ref": "#/$defs/__schema56"
|
|
1714
2105
|
},
|
|
1715
2106
|
"kind": {
|
|
1716
|
-
"$ref": "#/$defs/
|
|
2107
|
+
"$ref": "#/$defs/__schema57"
|
|
1717
2108
|
},
|
|
1718
2109
|
"taskDefinition": {
|
|
1719
|
-
"$ref": "#/$defs/
|
|
2110
|
+
"$ref": "#/$defs/__schema2"
|
|
1720
2111
|
},
|
|
1721
2112
|
"enabled": {
|
|
1722
|
-
"$ref": "#/$defs/
|
|
2113
|
+
"$ref": "#/$defs/__schema58"
|
|
1723
2114
|
},
|
|
1724
2115
|
"allowedSplits": {
|
|
1725
|
-
"$ref": "#/$defs/
|
|
2116
|
+
"$ref": "#/$defs/__schema59"
|
|
1726
2117
|
},
|
|
1727
2118
|
"mapping": {
|
|
1728
|
-
"$ref": "#/$defs/
|
|
2119
|
+
"$ref": "#/$defs/__schema61"
|
|
1729
2120
|
},
|
|
1730
2121
|
"adapterVersion": {
|
|
1731
|
-
"$ref": "#/$defs/
|
|
2122
|
+
"$ref": "#/$defs/__schema63"
|
|
1732
2123
|
}
|
|
1733
2124
|
},
|
|
1734
2125
|
"required": [
|
|
@@ -1745,21 +2136,21 @@
|
|
|
1745
2136
|
],
|
|
1746
2137
|
"additionalProperties": false
|
|
1747
2138
|
},
|
|
1748
|
-
"
|
|
2139
|
+
"__schema54": {
|
|
1749
2140
|
"type": "string",
|
|
1750
2141
|
"const": "openpond.learningSource.v1"
|
|
1751
2142
|
},
|
|
1752
|
-
"
|
|
2143
|
+
"__schema55": {
|
|
1753
2144
|
"type": "integer",
|
|
1754
2145
|
"exclusiveMinimum": 0,
|
|
1755
2146
|
"maximum": 9007199254740991
|
|
1756
2147
|
},
|
|
1757
|
-
"
|
|
2148
|
+
"__schema56": {
|
|
1758
2149
|
"type": "string",
|
|
1759
2150
|
"minLength": 1,
|
|
1760
2151
|
"maxLength": 500
|
|
1761
2152
|
},
|
|
1762
|
-
"
|
|
2153
|
+
"__schema57": {
|
|
1763
2154
|
"type": "string",
|
|
1764
2155
|
"enum": [
|
|
1765
2156
|
"direct",
|
|
@@ -1769,18 +2160,18 @@
|
|
|
1769
2160
|
"provider"
|
|
1770
2161
|
]
|
|
1771
2162
|
},
|
|
1772
|
-
"
|
|
2163
|
+
"__schema58": {
|
|
1773
2164
|
"type": "boolean"
|
|
1774
2165
|
},
|
|
1775
|
-
"
|
|
2166
|
+
"__schema59": {
|
|
1776
2167
|
"minItems": 1,
|
|
1777
2168
|
"maxItems": 4,
|
|
1778
2169
|
"type": "array",
|
|
1779
2170
|
"items": {
|
|
1780
|
-
"$ref": "#/$defs/
|
|
2171
|
+
"$ref": "#/$defs/__schema60"
|
|
1781
2172
|
}
|
|
1782
2173
|
},
|
|
1783
|
-
"
|
|
2174
|
+
"__schema60": {
|
|
1784
2175
|
"type": "string",
|
|
1785
2176
|
"enum": [
|
|
1786
2177
|
"train",
|
|
@@ -1789,7 +2180,7 @@
|
|
|
1789
2180
|
"frozen_eval"
|
|
1790
2181
|
]
|
|
1791
2182
|
},
|
|
1792
|
-
"
|
|
2183
|
+
"__schema61": {
|
|
1793
2184
|
"anyOf": [
|
|
1794
2185
|
{
|
|
1795
2186
|
"type": "object",
|
|
@@ -1799,21 +2190,21 @@
|
|
|
1799
2190
|
"const": "openpond.taskSourceMapping.v1"
|
|
1800
2191
|
},
|
|
1801
2192
|
"exampleId": {
|
|
1802
|
-
"$ref": "#/$defs/
|
|
2193
|
+
"$ref": "#/$defs/__schema62"
|
|
1803
2194
|
},
|
|
1804
2195
|
"attemptId": {
|
|
1805
|
-
"$ref": "#/$defs/
|
|
2196
|
+
"$ref": "#/$defs/__schema62"
|
|
1806
2197
|
},
|
|
1807
2198
|
"occurredAt": {
|
|
1808
|
-
"$ref": "#/$defs/
|
|
2199
|
+
"$ref": "#/$defs/__schema62"
|
|
1809
2200
|
},
|
|
1810
2201
|
"input": {
|
|
1811
|
-
"$ref": "#/$defs/
|
|
2202
|
+
"$ref": "#/$defs/__schema62"
|
|
1812
2203
|
},
|
|
1813
2204
|
"observedOutput": {
|
|
1814
2205
|
"anyOf": [
|
|
1815
2206
|
{
|
|
1816
|
-
"$ref": "#/$defs/
|
|
2207
|
+
"$ref": "#/$defs/__schema62"
|
|
1817
2208
|
},
|
|
1818
2209
|
{
|
|
1819
2210
|
"type": "null"
|
|
@@ -1823,7 +2214,7 @@
|
|
|
1823
2214
|
"expected": {
|
|
1824
2215
|
"anyOf": [
|
|
1825
2216
|
{
|
|
1826
|
-
"$ref": "#/$defs/
|
|
2217
|
+
"$ref": "#/$defs/__schema62"
|
|
1827
2218
|
},
|
|
1828
2219
|
{
|
|
1829
2220
|
"type": "null"
|
|
@@ -1833,7 +2224,7 @@
|
|
|
1833
2224
|
"evaluatorContext": {
|
|
1834
2225
|
"anyOf": [
|
|
1835
2226
|
{
|
|
1836
|
-
"$ref": "#/$defs/
|
|
2227
|
+
"$ref": "#/$defs/__schema62"
|
|
1837
2228
|
},
|
|
1838
2229
|
{
|
|
1839
2230
|
"type": "null"
|
|
@@ -1841,10 +2232,10 @@
|
|
|
1841
2232
|
]
|
|
1842
2233
|
},
|
|
1843
2234
|
"familyKey": {
|
|
1844
|
-
"$ref": "#/$defs/
|
|
2235
|
+
"$ref": "#/$defs/__schema62"
|
|
1845
2236
|
},
|
|
1846
2237
|
"split": {
|
|
1847
|
-
"$ref": "#/$defs/
|
|
2238
|
+
"$ref": "#/$defs/__schema60"
|
|
1848
2239
|
}
|
|
1849
2240
|
},
|
|
1850
2241
|
"required": [
|
|
@@ -1866,11 +2257,11 @@
|
|
|
1866
2257
|
}
|
|
1867
2258
|
]
|
|
1868
2259
|
},
|
|
1869
|
-
"
|
|
2260
|
+
"__schema62": {
|
|
1870
2261
|
"type": "string",
|
|
1871
2262
|
"maxLength": 2000
|
|
1872
2263
|
},
|
|
1873
|
-
"
|
|
2264
|
+
"__schema63": {
|
|
1874
2265
|
"anyOf": [
|
|
1875
2266
|
{
|
|
1876
2267
|
"type": "string",
|
|
@@ -1882,63 +2273,63 @@
|
|
|
1882
2273
|
}
|
|
1883
2274
|
]
|
|
1884
2275
|
},
|
|
1885
|
-
"
|
|
2276
|
+
"__schema64": {
|
|
1886
2277
|
"type": "string",
|
|
1887
2278
|
"const": "policy"
|
|
1888
2279
|
},
|
|
1889
|
-
"
|
|
2280
|
+
"__schema65": {
|
|
1890
2281
|
"type": "object",
|
|
1891
2282
|
"properties": {
|
|
1892
2283
|
"schemaVersion": {
|
|
1893
|
-
"$ref": "#/$defs/
|
|
2284
|
+
"$ref": "#/$defs/__schema66"
|
|
1894
2285
|
},
|
|
1895
2286
|
"id": {
|
|
1896
2287
|
"$ref": "#/$defs/__schema0"
|
|
1897
2288
|
},
|
|
1898
2289
|
"revision": {
|
|
1899
|
-
"$ref": "#/$defs/
|
|
2290
|
+
"$ref": "#/$defs/__schema67"
|
|
1900
2291
|
},
|
|
1901
2292
|
"modelProjectId": {
|
|
1902
2293
|
"$ref": "#/$defs/__schema0"
|
|
1903
2294
|
},
|
|
1904
2295
|
"executionOwner": {
|
|
1905
|
-
"$ref": "#/$defs/
|
|
2296
|
+
"$ref": "#/$defs/__schema68"
|
|
1906
2297
|
},
|
|
1907
2298
|
"enabled": {
|
|
1908
|
-
"$ref": "#/$defs/
|
|
2299
|
+
"$ref": "#/$defs/__schema69"
|
|
1909
2300
|
},
|
|
1910
2301
|
"sources": {
|
|
1911
|
-
"$ref": "#/$defs/
|
|
2302
|
+
"$ref": "#/$defs/__schema70"
|
|
1912
2303
|
},
|
|
1913
2304
|
"taskDefinition": {
|
|
1914
|
-
"$ref": "#/$defs/
|
|
2305
|
+
"$ref": "#/$defs/__schema2"
|
|
1915
2306
|
},
|
|
1916
2307
|
"rewardBinding": {
|
|
1917
|
-
"$ref": "#/$defs/
|
|
2308
|
+
"$ref": "#/$defs/__schema2"
|
|
1918
2309
|
},
|
|
1919
2310
|
"admission": {
|
|
1920
|
-
"$ref": "#/$defs/
|
|
2311
|
+
"$ref": "#/$defs/__schema71"
|
|
1921
2312
|
},
|
|
1922
2313
|
"trigger": {
|
|
1923
|
-
"$ref": "#/$defs/
|
|
2314
|
+
"$ref": "#/$defs/__schema72"
|
|
1924
2315
|
},
|
|
1925
2316
|
"trainingParent": {
|
|
1926
|
-
"$ref": "#/$defs/
|
|
2317
|
+
"$ref": "#/$defs/__schema6"
|
|
1927
2318
|
},
|
|
1928
2319
|
"teacher": {
|
|
1929
|
-
"$ref": "#/$defs/
|
|
2320
|
+
"$ref": "#/$defs/__schema73"
|
|
1930
2321
|
},
|
|
1931
2322
|
"training": {
|
|
1932
|
-
"$ref": "#/$defs/
|
|
2323
|
+
"$ref": "#/$defs/__schema74"
|
|
1933
2324
|
},
|
|
1934
2325
|
"limits": {
|
|
1935
|
-
"$ref": "#/$defs/
|
|
2326
|
+
"$ref": "#/$defs/__schema75"
|
|
1936
2327
|
},
|
|
1937
2328
|
"automation": {
|
|
1938
|
-
"$ref": "#/$defs/
|
|
2329
|
+
"$ref": "#/$defs/__schema76"
|
|
1939
2330
|
},
|
|
1940
2331
|
"acceptance": {
|
|
1941
|
-
"$ref": "#/$defs/
|
|
2332
|
+
"$ref": "#/$defs/__schema77"
|
|
1942
2333
|
}
|
|
1943
2334
|
},
|
|
1944
2335
|
"required": [
|
|
@@ -1962,34 +2353,34 @@
|
|
|
1962
2353
|
],
|
|
1963
2354
|
"additionalProperties": false
|
|
1964
2355
|
},
|
|
1965
|
-
"
|
|
2356
|
+
"__schema66": {
|
|
1966
2357
|
"type": "string",
|
|
1967
2358
|
"const": "openpond.learningPolicy.v1"
|
|
1968
2359
|
},
|
|
1969
|
-
"
|
|
2360
|
+
"__schema67": {
|
|
1970
2361
|
"type": "integer",
|
|
1971
2362
|
"exclusiveMinimum": 0,
|
|
1972
2363
|
"maximum": 9007199254740991
|
|
1973
2364
|
},
|
|
1974
|
-
"
|
|
2365
|
+
"__schema68": {
|
|
1975
2366
|
"type": "string",
|
|
1976
2367
|
"enum": [
|
|
1977
2368
|
"local",
|
|
1978
2369
|
"hosted"
|
|
1979
2370
|
]
|
|
1980
2371
|
},
|
|
1981
|
-
"
|
|
2372
|
+
"__schema69": {
|
|
1982
2373
|
"type": "boolean"
|
|
1983
2374
|
},
|
|
1984
|
-
"
|
|
2375
|
+
"__schema70": {
|
|
1985
2376
|
"minItems": 1,
|
|
1986
2377
|
"maxItems": 100,
|
|
1987
2378
|
"type": "array",
|
|
1988
2379
|
"items": {
|
|
1989
|
-
"$ref": "#/$defs/
|
|
2380
|
+
"$ref": "#/$defs/__schema2"
|
|
1990
2381
|
}
|
|
1991
2382
|
},
|
|
1992
|
-
"
|
|
2383
|
+
"__schema71": {
|
|
1993
2384
|
"type": "object",
|
|
1994
2385
|
"properties": {
|
|
1995
2386
|
"mode": {
|
|
@@ -2002,7 +2393,7 @@
|
|
|
2002
2393
|
"qualification": {
|
|
2003
2394
|
"anyOf": [
|
|
2004
2395
|
{
|
|
2005
|
-
"$ref": "#/$defs/
|
|
2396
|
+
"$ref": "#/$defs/__schema6"
|
|
2006
2397
|
},
|
|
2007
2398
|
{
|
|
2008
2399
|
"type": "null"
|
|
@@ -2022,7 +2413,7 @@
|
|
|
2022
2413
|
],
|
|
2023
2414
|
"additionalProperties": false
|
|
2024
2415
|
},
|
|
2025
|
-
"
|
|
2416
|
+
"__schema72": {
|
|
2026
2417
|
"oneOf": [
|
|
2027
2418
|
{
|
|
2028
2419
|
"type": "object",
|
|
@@ -2088,17 +2479,17 @@
|
|
|
2088
2479
|
}
|
|
2089
2480
|
]
|
|
2090
2481
|
},
|
|
2091
|
-
"
|
|
2482
|
+
"__schema73": {
|
|
2092
2483
|
"anyOf": [
|
|
2093
2484
|
{
|
|
2094
|
-
"$ref": "#/$defs/
|
|
2485
|
+
"$ref": "#/$defs/__schema6"
|
|
2095
2486
|
},
|
|
2096
2487
|
{
|
|
2097
2488
|
"type": "null"
|
|
2098
2489
|
}
|
|
2099
2490
|
]
|
|
2100
2491
|
},
|
|
2101
|
-
"
|
|
2492
|
+
"__schema74": {
|
|
2102
2493
|
"type": "object",
|
|
2103
2494
|
"properties": {
|
|
2104
2495
|
"method": {
|
|
@@ -2115,16 +2506,16 @@
|
|
|
2115
2506
|
]
|
|
2116
2507
|
},
|
|
2117
2508
|
"recipe": {
|
|
2118
|
-
"$ref": "#/$defs/
|
|
2509
|
+
"$ref": "#/$defs/__schema6"
|
|
2119
2510
|
},
|
|
2120
2511
|
"retentionEvaluation": {
|
|
2121
|
-
"$ref": "#/$defs/
|
|
2512
|
+
"$ref": "#/$defs/__schema6"
|
|
2122
2513
|
},
|
|
2123
2514
|
"replayBatches": {
|
|
2124
2515
|
"maxItems": 100,
|
|
2125
2516
|
"type": "array",
|
|
2126
2517
|
"items": {
|
|
2127
|
-
"$ref": "#/$defs/
|
|
2518
|
+
"$ref": "#/$defs/__schema6"
|
|
2128
2519
|
}
|
|
2129
2520
|
}
|
|
2130
2521
|
},
|
|
@@ -2136,7 +2527,7 @@
|
|
|
2136
2527
|
],
|
|
2137
2528
|
"additionalProperties": false
|
|
2138
2529
|
},
|
|
2139
|
-
"
|
|
2530
|
+
"__schema75": {
|
|
2140
2531
|
"type": "object",
|
|
2141
2532
|
"properties": {
|
|
2142
2533
|
"maxIterationSpendUsd": {
|
|
@@ -2180,7 +2571,7 @@
|
|
|
2180
2571
|
],
|
|
2181
2572
|
"additionalProperties": false
|
|
2182
2573
|
},
|
|
2183
|
-
"
|
|
2574
|
+
"__schema76": {
|
|
2184
2575
|
"type": "object",
|
|
2185
2576
|
"properties": {
|
|
2186
2577
|
"collect": {
|
|
@@ -2204,7 +2595,7 @@
|
|
|
2204
2595
|
],
|
|
2205
2596
|
"additionalProperties": false
|
|
2206
2597
|
},
|
|
2207
|
-
"
|
|
2598
|
+
"__schema77": {
|
|
2208
2599
|
"type": "object",
|
|
2209
2600
|
"properties": {
|
|
2210
2601
|
"minimumScore": {
|
|
@@ -2223,7 +2614,7 @@
|
|
|
2223
2614
|
"rollbackVersion": {
|
|
2224
2615
|
"anyOf": [
|
|
2225
2616
|
{
|
|
2226
|
-
"$ref": "#/$defs/
|
|
2617
|
+
"$ref": "#/$defs/__schema6"
|
|
2227
2618
|
},
|
|
2228
2619
|
{
|
|
2229
2620
|
"type": "null"
|
|
@@ -2239,19 +2630,19 @@
|
|
|
2239
2630
|
],
|
|
2240
2631
|
"additionalProperties": false
|
|
2241
2632
|
},
|
|
2242
|
-
"
|
|
2633
|
+
"__schema78": {
|
|
2243
2634
|
"anyOf": [
|
|
2244
2635
|
{
|
|
2245
2636
|
"type": "object",
|
|
2246
2637
|
"properties": {
|
|
2247
2638
|
"expectedRevision": {
|
|
2248
|
-
"$ref": "#/$defs/
|
|
2639
|
+
"$ref": "#/$defs/__schema8"
|
|
2249
2640
|
},
|
|
2250
2641
|
"kind": {
|
|
2251
|
-
"$ref": "#/$defs/
|
|
2642
|
+
"$ref": "#/$defs/__schema11"
|
|
2252
2643
|
},
|
|
2253
2644
|
"content": {
|
|
2254
|
-
"$ref": "#/$defs/
|
|
2645
|
+
"$ref": "#/$defs/__schema12"
|
|
2255
2646
|
}
|
|
2256
2647
|
},
|
|
2257
2648
|
"required": [
|
|
@@ -2265,13 +2656,13 @@
|
|
|
2265
2656
|
"type": "object",
|
|
2266
2657
|
"properties": {
|
|
2267
2658
|
"expectedRevision": {
|
|
2268
|
-
"$ref": "#/$defs/
|
|
2659
|
+
"$ref": "#/$defs/__schema8"
|
|
2269
2660
|
},
|
|
2270
2661
|
"kind": {
|
|
2271
|
-
"$ref": "#/$defs/
|
|
2662
|
+
"$ref": "#/$defs/__schema17"
|
|
2272
2663
|
},
|
|
2273
2664
|
"content": {
|
|
2274
|
-
"$ref": "#/$defs/
|
|
2665
|
+
"$ref": "#/$defs/__schema18"
|
|
2275
2666
|
}
|
|
2276
2667
|
},
|
|
2277
2668
|
"required": [
|
|
@@ -2285,13 +2676,13 @@
|
|
|
2285
2676
|
"type": "object",
|
|
2286
2677
|
"properties": {
|
|
2287
2678
|
"expectedRevision": {
|
|
2288
|
-
"$ref": "#/$defs/
|
|
2679
|
+
"$ref": "#/$defs/__schema8"
|
|
2289
2680
|
},
|
|
2290
2681
|
"kind": {
|
|
2291
|
-
"$ref": "#/$defs/
|
|
2682
|
+
"$ref": "#/$defs/__schema33"
|
|
2292
2683
|
},
|
|
2293
2684
|
"content": {
|
|
2294
|
-
"$ref": "#/$defs/
|
|
2685
|
+
"$ref": "#/$defs/__schema34"
|
|
2295
2686
|
}
|
|
2296
2687
|
},
|
|
2297
2688
|
"required": [
|
|
@@ -2305,13 +2696,13 @@
|
|
|
2305
2696
|
"type": "object",
|
|
2306
2697
|
"properties": {
|
|
2307
2698
|
"expectedRevision": {
|
|
2308
|
-
"$ref": "#/$defs/
|
|
2699
|
+
"$ref": "#/$defs/__schema8"
|
|
2309
2700
|
},
|
|
2310
2701
|
"kind": {
|
|
2311
|
-
"$ref": "#/$defs/
|
|
2702
|
+
"$ref": "#/$defs/__schema42"
|
|
2312
2703
|
},
|
|
2313
2704
|
"content": {
|
|
2314
|
-
"$ref": "#/$defs/
|
|
2705
|
+
"$ref": "#/$defs/__schema43"
|
|
2315
2706
|
}
|
|
2316
2707
|
},
|
|
2317
2708
|
"required": [
|
|
@@ -2325,13 +2716,13 @@
|
|
|
2325
2716
|
"type": "object",
|
|
2326
2717
|
"properties": {
|
|
2327
2718
|
"expectedRevision": {
|
|
2328
|
-
"$ref": "#/$defs/
|
|
2719
|
+
"$ref": "#/$defs/__schema8"
|
|
2329
2720
|
},
|
|
2330
2721
|
"kind": {
|
|
2331
|
-
"$ref": "#/$defs/
|
|
2722
|
+
"$ref": "#/$defs/__schema52"
|
|
2332
2723
|
},
|
|
2333
2724
|
"content": {
|
|
2334
|
-
"$ref": "#/$defs/
|
|
2725
|
+
"$ref": "#/$defs/__schema53"
|
|
2335
2726
|
}
|
|
2336
2727
|
},
|
|
2337
2728
|
"required": [
|
|
@@ -2345,13 +2736,13 @@
|
|
|
2345
2736
|
"type": "object",
|
|
2346
2737
|
"properties": {
|
|
2347
2738
|
"expectedRevision": {
|
|
2348
|
-
"$ref": "#/$defs/
|
|
2739
|
+
"$ref": "#/$defs/__schema8"
|
|
2349
2740
|
},
|
|
2350
2741
|
"kind": {
|
|
2351
|
-
"$ref": "#/$defs/
|
|
2742
|
+
"$ref": "#/$defs/__schema64"
|
|
2352
2743
|
},
|
|
2353
2744
|
"content": {
|
|
2354
|
-
"$ref": "#/$defs/
|
|
2745
|
+
"$ref": "#/$defs/__schema65"
|
|
2355
2746
|
}
|
|
2356
2747
|
},
|
|
2357
2748
|
"required": [
|
|
@@ -2363,21 +2754,21 @@
|
|
|
2363
2754
|
}
|
|
2364
2755
|
]
|
|
2365
2756
|
},
|
|
2366
|
-
"
|
|
2757
|
+
"__schema79": {
|
|
2367
2758
|
"type": "string",
|
|
2368
2759
|
"format": "date-time",
|
|
2369
2760
|
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
|
|
2370
2761
|
},
|
|
2371
|
-
"
|
|
2762
|
+
"__schema80": {
|
|
2372
2763
|
"type": "object",
|
|
2373
2764
|
"propertyNames": {
|
|
2374
2765
|
"type": "string"
|
|
2375
2766
|
},
|
|
2376
2767
|
"additionalProperties": {
|
|
2377
|
-
"$ref": "#/$defs/
|
|
2768
|
+
"$ref": "#/$defs/__schema81"
|
|
2378
2769
|
}
|
|
2379
2770
|
},
|
|
2380
|
-
"
|
|
2771
|
+
"__schema81": {
|
|
2381
2772
|
"anyOf": [
|
|
2382
2773
|
{
|
|
2383
2774
|
"type": "string"
|
|
@@ -2394,7 +2785,7 @@
|
|
|
2394
2785
|
{
|
|
2395
2786
|
"type": "array",
|
|
2396
2787
|
"items": {
|
|
2397
|
-
"$ref": "#/$defs/
|
|
2788
|
+
"$ref": "#/$defs/__schema81"
|
|
2398
2789
|
}
|
|
2399
2790
|
},
|
|
2400
2791
|
{
|
|
@@ -2403,7 +2794,7 @@
|
|
|
2403
2794
|
"type": "string"
|
|
2404
2795
|
},
|
|
2405
2796
|
"additionalProperties": {
|
|
2406
|
-
"$ref": "#/$defs/
|
|
2797
|
+
"$ref": "#/$defs/__schema81"
|
|
2407
2798
|
}
|
|
2408
2799
|
}
|
|
2409
2800
|
]
|