@basou/core 0.42.2 → 0.44.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +14 -2
- package/dist/index.js +59 -33
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/schemas/approval.schema.json +15 -27
- package/schemas/event.schema.json +75 -111
- package/schemas/manifest.schema.json +4 -4
- package/schemas/session-import.schema.json +86 -126
- package/schemas/session.schema.json +11 -15
- package/schemas/status.schema.json +2 -2
- package/schemas/task-index.schema.json +4 -4
- package/schemas/task.schema.json +4 -4
|
@@ -73,13 +73,13 @@
|
|
|
73
73
|
},
|
|
74
74
|
"started_at": {
|
|
75
75
|
"type": "string",
|
|
76
|
-
"
|
|
77
|
-
"
|
|
76
|
+
"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)))$",
|
|
77
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
78
78
|
},
|
|
79
79
|
"ended_at": {
|
|
80
80
|
"type": "string",
|
|
81
|
-
"
|
|
82
|
-
"
|
|
81
|
+
"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)))$",
|
|
82
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
83
83
|
},
|
|
84
84
|
"status": {
|
|
85
85
|
"type": "string",
|
|
@@ -141,13 +141,9 @@
|
|
|
141
141
|
"type": "string"
|
|
142
142
|
},
|
|
143
143
|
"summary": {
|
|
144
|
-
"
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
},
|
|
148
|
-
{
|
|
149
|
-
"type": "null"
|
|
150
|
-
}
|
|
144
|
+
"type": [
|
|
145
|
+
"string",
|
|
146
|
+
"null"
|
|
151
147
|
]
|
|
152
148
|
},
|
|
153
149
|
"metrics": {
|
|
@@ -185,13 +181,13 @@
|
|
|
185
181
|
"properties": {
|
|
186
182
|
"start": {
|
|
187
183
|
"type": "string",
|
|
188
|
-
"
|
|
189
|
-
"
|
|
184
|
+
"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)))$",
|
|
185
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
190
186
|
},
|
|
191
187
|
"end": {
|
|
192
188
|
"type": "string",
|
|
193
|
-
"
|
|
194
|
-
"
|
|
189
|
+
"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)))$",
|
|
190
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
195
191
|
}
|
|
196
192
|
},
|
|
197
193
|
"required": [
|
|
@@ -269,8 +265,8 @@
|
|
|
269
265
|
},
|
|
270
266
|
"occurred_at": {
|
|
271
267
|
"type": "string",
|
|
272
|
-
"
|
|
273
|
-
"
|
|
268
|
+
"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)))$",
|
|
269
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
274
270
|
},
|
|
275
271
|
"source": {
|
|
276
272
|
"type": "string",
|
|
@@ -312,8 +308,8 @@
|
|
|
312
308
|
},
|
|
313
309
|
"occurred_at": {
|
|
314
310
|
"type": "string",
|
|
315
|
-
"
|
|
316
|
-
"
|
|
311
|
+
"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)))$",
|
|
312
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
317
313
|
},
|
|
318
314
|
"source": {
|
|
319
315
|
"type": "string",
|
|
@@ -360,8 +356,8 @@
|
|
|
360
356
|
},
|
|
361
357
|
"occurred_at": {
|
|
362
358
|
"type": "string",
|
|
363
|
-
"
|
|
364
|
-
"
|
|
359
|
+
"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)))$",
|
|
360
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
365
361
|
},
|
|
366
362
|
"source": {
|
|
367
363
|
"type": "string",
|
|
@@ -411,8 +407,8 @@
|
|
|
411
407
|
},
|
|
412
408
|
"occurred_at": {
|
|
413
409
|
"type": "string",
|
|
414
|
-
"
|
|
415
|
-
"
|
|
410
|
+
"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)))$",
|
|
411
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
416
412
|
},
|
|
417
413
|
"source": {
|
|
418
414
|
"type": "string",
|
|
@@ -435,8 +431,8 @@
|
|
|
435
431
|
"anyOf": [
|
|
436
432
|
{
|
|
437
433
|
"type": "string",
|
|
438
|
-
"
|
|
439
|
-
"
|
|
434
|
+
"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)))$",
|
|
435
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
440
436
|
},
|
|
441
437
|
{
|
|
442
438
|
"type": "null"
|
|
@@ -505,8 +501,8 @@
|
|
|
505
501
|
},
|
|
506
502
|
"occurred_at": {
|
|
507
503
|
"type": "string",
|
|
508
|
-
"
|
|
509
|
-
"
|
|
504
|
+
"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)))$",
|
|
505
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
510
506
|
},
|
|
511
507
|
"source": {
|
|
512
508
|
"type": "string",
|
|
@@ -528,13 +524,9 @@
|
|
|
528
524
|
"type": "string"
|
|
529
525
|
},
|
|
530
526
|
"note": {
|
|
531
|
-
"
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
},
|
|
535
|
-
{
|
|
536
|
-
"type": "null"
|
|
537
|
-
}
|
|
527
|
+
"type": [
|
|
528
|
+
"string",
|
|
529
|
+
"null"
|
|
538
530
|
]
|
|
539
531
|
}
|
|
540
532
|
},
|
|
@@ -567,8 +559,8 @@
|
|
|
567
559
|
},
|
|
568
560
|
"occurred_at": {
|
|
569
561
|
"type": "string",
|
|
570
|
-
"
|
|
571
|
-
"
|
|
562
|
+
"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)))$",
|
|
563
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
572
564
|
},
|
|
573
565
|
"source": {
|
|
574
566
|
"type": "string",
|
|
@@ -623,8 +615,8 @@
|
|
|
623
615
|
},
|
|
624
616
|
"occurred_at": {
|
|
625
617
|
"type": "string",
|
|
626
|
-
"
|
|
627
|
-
"
|
|
618
|
+
"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)))$",
|
|
619
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
628
620
|
},
|
|
629
621
|
"source": {
|
|
630
622
|
"type": "string",
|
|
@@ -672,8 +664,8 @@
|
|
|
672
664
|
},
|
|
673
665
|
"occurred_at": {
|
|
674
666
|
"type": "string",
|
|
675
|
-
"
|
|
676
|
-
"
|
|
667
|
+
"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)))$",
|
|
668
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
677
669
|
},
|
|
678
670
|
"source": {
|
|
679
671
|
"type": "string",
|
|
@@ -687,15 +679,11 @@
|
|
|
687
679
|
"const": "command_executed"
|
|
688
680
|
},
|
|
689
681
|
"command": {
|
|
690
|
-
"
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
"type": "null"
|
|
696
|
-
}
|
|
697
|
-
],
|
|
698
|
-
"description": "Spawned executable name. null means basou did not observe the executor - not a default, and not a benign value."
|
|
682
|
+
"description": "Spawned executable name. null means basou did not observe the executor - not a default, and not a benign value.",
|
|
683
|
+
"type": [
|
|
684
|
+
"string",
|
|
685
|
+
"null"
|
|
686
|
+
]
|
|
699
687
|
},
|
|
700
688
|
"args": {
|
|
701
689
|
"type": "array",
|
|
@@ -704,15 +692,11 @@
|
|
|
704
692
|
}
|
|
705
693
|
},
|
|
706
694
|
"cwd": {
|
|
707
|
-
"
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
"type": "null"
|
|
713
|
-
}
|
|
714
|
-
],
|
|
715
|
-
"description": "Working directory the command ran in. null means the directory could not be resolved; it is never the session's directory as a fallback."
|
|
695
|
+
"description": "Working directory the command ran in. null means the directory could not be resolved; it is never the session's directory as a fallback.",
|
|
696
|
+
"type": [
|
|
697
|
+
"string",
|
|
698
|
+
"null"
|
|
699
|
+
]
|
|
716
700
|
},
|
|
717
701
|
"exit_code": {
|
|
718
702
|
"anyOf": [
|
|
@@ -728,23 +712,15 @@
|
|
|
728
712
|
"description": "Child exit code. null means the outcome is unknown (signal-terminated, or never recorded by the source). null is not success."
|
|
729
713
|
},
|
|
730
714
|
"signal": {
|
|
731
|
-
"
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
},
|
|
735
|
-
{
|
|
736
|
-
"type": "null"
|
|
737
|
-
}
|
|
715
|
+
"type": [
|
|
716
|
+
"string",
|
|
717
|
+
"null"
|
|
738
718
|
]
|
|
739
719
|
},
|
|
740
720
|
"received_signal": {
|
|
741
|
-
"
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
},
|
|
745
|
-
{
|
|
746
|
-
"type": "null"
|
|
747
|
-
}
|
|
721
|
+
"type": [
|
|
722
|
+
"string",
|
|
723
|
+
"null"
|
|
748
724
|
]
|
|
749
725
|
},
|
|
750
726
|
"duration_ms": {
|
|
@@ -794,8 +770,8 @@
|
|
|
794
770
|
},
|
|
795
771
|
"occurred_at": {
|
|
796
772
|
"type": "string",
|
|
797
|
-
"
|
|
798
|
-
"
|
|
773
|
+
"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)))$",
|
|
774
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
799
775
|
},
|
|
800
776
|
"source": {
|
|
801
777
|
"type": "string",
|
|
@@ -880,8 +856,8 @@
|
|
|
880
856
|
},
|
|
881
857
|
"occurred_at": {
|
|
882
858
|
"type": "string",
|
|
883
|
-
"
|
|
884
|
-
"
|
|
859
|
+
"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)))$",
|
|
860
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
885
861
|
},
|
|
886
862
|
"source": {
|
|
887
863
|
"type": "string",
|
|
@@ -907,13 +883,9 @@
|
|
|
907
883
|
]
|
|
908
884
|
},
|
|
909
885
|
"old_path": {
|
|
910
|
-
"
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
},
|
|
914
|
-
{
|
|
915
|
-
"type": "null"
|
|
916
|
-
}
|
|
886
|
+
"type": [
|
|
887
|
+
"string",
|
|
888
|
+
"null"
|
|
917
889
|
]
|
|
918
890
|
}
|
|
919
891
|
},
|
|
@@ -947,8 +919,8 @@
|
|
|
947
919
|
},
|
|
948
920
|
"occurred_at": {
|
|
949
921
|
"type": "string",
|
|
950
|
-
"
|
|
951
|
-
"
|
|
922
|
+
"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)))$",
|
|
923
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
952
924
|
},
|
|
953
925
|
"source": {
|
|
954
926
|
"type": "string",
|
|
@@ -970,13 +942,9 @@
|
|
|
970
942
|
"type": "string"
|
|
971
943
|
},
|
|
972
944
|
"rationale": {
|
|
973
|
-
"
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
},
|
|
977
|
-
{
|
|
978
|
-
"type": "null"
|
|
979
|
-
}
|
|
945
|
+
"type": [
|
|
946
|
+
"string",
|
|
947
|
+
"null"
|
|
980
948
|
]
|
|
981
949
|
},
|
|
982
950
|
"alternatives": {
|
|
@@ -987,13 +955,9 @@
|
|
|
987
955
|
}
|
|
988
956
|
},
|
|
989
957
|
"rejected_reason": {
|
|
990
|
-
"
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
},
|
|
994
|
-
{
|
|
995
|
-
"type": "null"
|
|
996
|
-
}
|
|
958
|
+
"type": [
|
|
959
|
+
"string",
|
|
960
|
+
"null"
|
|
997
961
|
]
|
|
998
962
|
},
|
|
999
963
|
"linked_events": {
|
|
@@ -1050,8 +1014,8 @@
|
|
|
1050
1014
|
},
|
|
1051
1015
|
"occurred_at": {
|
|
1052
1016
|
"type": "string",
|
|
1053
|
-
"
|
|
1054
|
-
"
|
|
1017
|
+
"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)))$",
|
|
1018
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
1055
1019
|
},
|
|
1056
1020
|
"source": {
|
|
1057
1021
|
"type": "string",
|
|
@@ -1070,13 +1034,9 @@
|
|
|
1070
1034
|
"description": "Basou decision id: `decision_` followed by a 26-character Crockford Base32 ULID."
|
|
1071
1035
|
},
|
|
1072
1036
|
"reason": {
|
|
1073
|
-
"
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
},
|
|
1077
|
-
{
|
|
1078
|
-
"type": "null"
|
|
1079
|
-
}
|
|
1037
|
+
"type": [
|
|
1038
|
+
"string",
|
|
1039
|
+
"null"
|
|
1080
1040
|
]
|
|
1081
1041
|
},
|
|
1082
1042
|
"superseded_by": {
|
|
@@ -1114,8 +1074,8 @@
|
|
|
1114
1074
|
},
|
|
1115
1075
|
"occurred_at": {
|
|
1116
1076
|
"type": "string",
|
|
1117
|
-
"
|
|
1118
|
-
"
|
|
1077
|
+
"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)))$",
|
|
1078
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
1119
1079
|
},
|
|
1120
1080
|
"source": {
|
|
1121
1081
|
"type": "string",
|
|
@@ -1167,8 +1127,8 @@
|
|
|
1167
1127
|
},
|
|
1168
1128
|
"occurred_at": {
|
|
1169
1129
|
"type": "string",
|
|
1170
|
-
"
|
|
1171
|
-
"
|
|
1130
|
+
"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)))$",
|
|
1131
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
1172
1132
|
},
|
|
1173
1133
|
"source": {
|
|
1174
1134
|
"type": "string",
|
|
@@ -1224,8 +1184,8 @@
|
|
|
1224
1184
|
},
|
|
1225
1185
|
"occurred_at": {
|
|
1226
1186
|
"type": "string",
|
|
1227
|
-
"
|
|
1228
|
-
"
|
|
1187
|
+
"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)))$",
|
|
1188
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
1229
1189
|
},
|
|
1230
1190
|
"source": {
|
|
1231
1191
|
"type": "string",
|
|
@@ -1309,8 +1269,8 @@
|
|
|
1309
1269
|
},
|
|
1310
1270
|
"occurred_at": {
|
|
1311
1271
|
"type": "string",
|
|
1312
|
-
"
|
|
1313
|
-
"
|
|
1272
|
+
"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)))$",
|
|
1273
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
1314
1274
|
},
|
|
1315
1275
|
"source": {
|
|
1316
1276
|
"type": "string",
|
|
@@ -1382,8 +1342,8 @@
|
|
|
1382
1342
|
},
|
|
1383
1343
|
"occurred_at": {
|
|
1384
1344
|
"type": "string",
|
|
1385
|
-
"
|
|
1386
|
-
"
|
|
1345
|
+
"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)))$",
|
|
1346
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
1387
1347
|
},
|
|
1388
1348
|
"source": {
|
|
1389
1349
|
"type": "string",
|
|
@@ -1437,8 +1397,8 @@
|
|
|
1437
1397
|
},
|
|
1438
1398
|
"occurred_at": {
|
|
1439
1399
|
"type": "string",
|
|
1440
|
-
"
|
|
1441
|
-
"
|
|
1400
|
+
"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)))$",
|
|
1401
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
1442
1402
|
},
|
|
1443
1403
|
"source": {
|
|
1444
1404
|
"type": "string",
|
|
@@ -1492,8 +1452,8 @@
|
|
|
1492
1452
|
},
|
|
1493
1453
|
"occurred_at": {
|
|
1494
1454
|
"type": "string",
|
|
1495
|
-
"
|
|
1496
|
-
"
|
|
1455
|
+
"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)))$",
|
|
1456
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
1497
1457
|
},
|
|
1498
1458
|
"source": {
|
|
1499
1459
|
"type": "string",
|
|
@@ -1546,8 +1506,8 @@
|
|
|
1546
1506
|
},
|
|
1547
1507
|
"occurred_at": {
|
|
1548
1508
|
"type": "string",
|
|
1549
|
-
"
|
|
1550
|
-
"
|
|
1509
|
+
"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)))$",
|
|
1510
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
1551
1511
|
},
|
|
1552
1512
|
"source": {
|
|
1553
1513
|
"type": "string",
|
|
@@ -1686,8 +1646,8 @@
|
|
|
1686
1646
|
},
|
|
1687
1647
|
"occurred_at": {
|
|
1688
1648
|
"type": "string",
|
|
1689
|
-
"
|
|
1690
|
-
"
|
|
1649
|
+
"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)))$",
|
|
1650
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
1691
1651
|
},
|
|
1692
1652
|
"source": {
|
|
1693
1653
|
"type": "string",
|
|
@@ -73,13 +73,13 @@
|
|
|
73
73
|
},
|
|
74
74
|
"started_at": {
|
|
75
75
|
"type": "string",
|
|
76
|
-
"
|
|
77
|
-
"
|
|
76
|
+
"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)))$",
|
|
77
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
78
78
|
},
|
|
79
79
|
"ended_at": {
|
|
80
80
|
"type": "string",
|
|
81
|
-
"
|
|
82
|
-
"
|
|
81
|
+
"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)))$",
|
|
82
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
83
83
|
},
|
|
84
84
|
"status": {
|
|
85
85
|
"type": "string",
|
|
@@ -143,13 +143,9 @@
|
|
|
143
143
|
"type": "string"
|
|
144
144
|
},
|
|
145
145
|
"summary": {
|
|
146
|
-
"
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
},
|
|
150
|
-
{
|
|
151
|
-
"type": "null"
|
|
152
|
-
}
|
|
146
|
+
"type": [
|
|
147
|
+
"string",
|
|
148
|
+
"null"
|
|
153
149
|
]
|
|
154
150
|
},
|
|
155
151
|
"metrics": {
|
|
@@ -187,13 +183,13 @@
|
|
|
187
183
|
"properties": {
|
|
188
184
|
"start": {
|
|
189
185
|
"type": "string",
|
|
190
|
-
"
|
|
191
|
-
"
|
|
186
|
+
"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)))$",
|
|
187
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
192
188
|
},
|
|
193
189
|
"end": {
|
|
194
190
|
"type": "string",
|
|
195
|
-
"
|
|
196
|
-
"
|
|
191
|
+
"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)))$",
|
|
192
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
197
193
|
}
|
|
198
194
|
},
|
|
199
195
|
"required": [
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
},
|
|
12
12
|
"generated_at": {
|
|
13
13
|
"type": "string",
|
|
14
|
-
"
|
|
15
|
-
"
|
|
14
|
+
"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)))$",
|
|
15
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
16
16
|
},
|
|
17
17
|
"workspace": {
|
|
18
18
|
"type": "object",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
},
|
|
35
35
|
"updated_at": {
|
|
36
36
|
"type": "string",
|
|
37
|
-
"
|
|
38
|
-
"
|
|
37
|
+
"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)))$",
|
|
38
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
39
39
|
}
|
|
40
40
|
},
|
|
41
41
|
"required": [
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
},
|
|
49
49
|
"last_rebuilt_at": {
|
|
50
50
|
"type": "string",
|
|
51
|
-
"
|
|
52
|
-
"
|
|
51
|
+
"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)))$",
|
|
52
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
53
53
|
}
|
|
54
54
|
},
|
|
55
55
|
"required": [
|
package/schemas/task.schema.json
CHANGED
|
@@ -36,13 +36,13 @@
|
|
|
36
36
|
},
|
|
37
37
|
"created_at": {
|
|
38
38
|
"type": "string",
|
|
39
|
-
"
|
|
40
|
-
"
|
|
39
|
+
"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)))$",
|
|
40
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
41
41
|
},
|
|
42
42
|
"updated_at": {
|
|
43
43
|
"type": "string",
|
|
44
|
-
"
|
|
45
|
-
"
|
|
44
|
+
"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)))$",
|
|
45
|
+
"description": "Timestamp with an offset or Z. The pattern is normative under ECMA-262 semantics: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds."
|
|
46
46
|
},
|
|
47
47
|
"workspace_id": {
|
|
48
48
|
"type": "string",
|