scjson 0.1.6 → 0.1.8

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.
@@ -0,0 +1,1701 @@
1
+
2
+ {
3
+ "$defs": {
4
+ "Assign": {
5
+ "properties": {
6
+ "location": {
7
+ "title": "Location",
8
+ "type": "string"
9
+ },
10
+ "expr": {
11
+ "anyOf": [
12
+ {
13
+ "type": "string"
14
+ },
15
+ {
16
+ "type": "null"
17
+ }
18
+ ],
19
+ "default": null,
20
+ "title": "Expr"
21
+ },
22
+ "type_value": {
23
+ "$ref": "#/$defs/AssignTypeDatatype",
24
+ "default": "replacechildren"
25
+ },
26
+ "attr": {
27
+ "anyOf": [
28
+ {
29
+ "type": "string"
30
+ },
31
+ {
32
+ "type": "null"
33
+ }
34
+ ],
35
+ "default": null,
36
+ "title": "Attr"
37
+ },
38
+ "other_attributes": {
39
+ "additionalProperties": {
40
+ "type": "string"
41
+ },
42
+ "title": "Other Attributes",
43
+ "type": "object"
44
+ },
45
+ "content": {
46
+ "items": {},
47
+ "title": "Content",
48
+ "type": "array"
49
+ }
50
+ },
51
+ "required": [
52
+ "location"
53
+ ],
54
+ "title": "Assign",
55
+ "type": "object"
56
+ },
57
+ "AssignTypeDatatype": {
58
+ "description": "The assign type that allows for precise manipulation of the datamodel\nlocation.\n\nTypes are:\nreplacechildren (default),\nfirstchild, lastchild,\nprevioussibling, nextsibling,\nreplace, delete,\naddattribute",
59
+ "enum": [
60
+ "replacechildren",
61
+ "firstchild",
62
+ "lastchild",
63
+ "previoussibling",
64
+ "nextsibling",
65
+ "replace",
66
+ "delete",
67
+ "addattribute"
68
+ ],
69
+ "title": "AssignTypeDatatype",
70
+ "type": "string"
71
+ },
72
+ "BindingDatatype": {
73
+ "description": "The binding type in use for the SCXML document.",
74
+ "enum": [
75
+ "early",
76
+ "late"
77
+ ],
78
+ "title": "BindingDatatype",
79
+ "type": "string"
80
+ },
81
+ "BooleanDatatype": {
82
+ "description": "Boolean: true or false only",
83
+ "enum": [
84
+ "true",
85
+ "false"
86
+ ],
87
+ "title": "BooleanDatatype",
88
+ "type": "string"
89
+ },
90
+ "Cancel": {
91
+ "properties": {
92
+ "other_element": {
93
+ "items": {},
94
+ "title": "Other Element",
95
+ "type": "array"
96
+ },
97
+ "sendid": {
98
+ "anyOf": [
99
+ {
100
+ "type": "string"
101
+ },
102
+ {
103
+ "type": "null"
104
+ }
105
+ ],
106
+ "default": null,
107
+ "title": "Sendid"
108
+ },
109
+ "sendidexpr": {
110
+ "anyOf": [
111
+ {
112
+ "type": "string"
113
+ },
114
+ {
115
+ "type": "null"
116
+ }
117
+ ],
118
+ "default": null,
119
+ "title": "Sendidexpr"
120
+ },
121
+ "other_attributes": {
122
+ "additionalProperties": {
123
+ "type": "string"
124
+ },
125
+ "title": "Other Attributes",
126
+ "type": "object"
127
+ }
128
+ },
129
+ "title": "Cancel",
130
+ "type": "object"
131
+ },
132
+ "Content": {
133
+ "properties": {
134
+ "other_attributes": {
135
+ "additionalProperties": {
136
+ "type": "string"
137
+ },
138
+ "title": "Other Attributes",
139
+ "type": "object"
140
+ },
141
+ "expr": {
142
+ "anyOf": [
143
+ {
144
+ "type": "string"
145
+ },
146
+ {
147
+ "type": "null"
148
+ }
149
+ ],
150
+ "default": null,
151
+ "title": "Expr"
152
+ },
153
+ "content": {
154
+ "items": {},
155
+ "title": "Content",
156
+ "type": "array"
157
+ }
158
+ },
159
+ "title": "Content",
160
+ "type": "object"
161
+ },
162
+ "Data": {
163
+ "properties": {
164
+ "id": {
165
+ "title": "Id",
166
+ "type": "string"
167
+ },
168
+ "src": {
169
+ "anyOf": [
170
+ {
171
+ "type": "string"
172
+ },
173
+ {
174
+ "type": "null"
175
+ }
176
+ ],
177
+ "default": null,
178
+ "title": "Src"
179
+ },
180
+ "expr": {
181
+ "anyOf": [
182
+ {
183
+ "type": "string"
184
+ },
185
+ {
186
+ "type": "null"
187
+ }
188
+ ],
189
+ "default": null,
190
+ "title": "Expr"
191
+ },
192
+ "other_attributes": {
193
+ "additionalProperties": {
194
+ "type": "string"
195
+ },
196
+ "title": "Other Attributes",
197
+ "type": "object"
198
+ },
199
+ "content": {
200
+ "items": {},
201
+ "title": "Content",
202
+ "type": "array"
203
+ }
204
+ },
205
+ "required": [
206
+ "id"
207
+ ],
208
+ "title": "Data",
209
+ "type": "object"
210
+ },
211
+ "Datamodel": {
212
+ "properties": {
213
+ "data": {
214
+ "items": {
215
+ "$ref": "#/$defs/Data"
216
+ },
217
+ "title": "Data",
218
+ "type": "array"
219
+ },
220
+ "other_element": {
221
+ "items": {},
222
+ "title": "Other Element",
223
+ "type": "array"
224
+ },
225
+ "other_attributes": {
226
+ "additionalProperties": {
227
+ "type": "string"
228
+ },
229
+ "title": "Other Attributes",
230
+ "type": "object"
231
+ }
232
+ },
233
+ "title": "Datamodel",
234
+ "type": "object"
235
+ },
236
+ "Donedata": {
237
+ "properties": {
238
+ "content": {
239
+ "anyOf": [
240
+ {
241
+ "$ref": "#/$defs/Content"
242
+ },
243
+ {
244
+ "type": "null"
245
+ }
246
+ ],
247
+ "default": null
248
+ },
249
+ "param": {
250
+ "items": {
251
+ "$ref": "#/$defs/Param"
252
+ },
253
+ "title": "Param",
254
+ "type": "array"
255
+ },
256
+ "other_attributes": {
257
+ "additionalProperties": {
258
+ "type": "string"
259
+ },
260
+ "title": "Other Attributes",
261
+ "type": "object"
262
+ }
263
+ },
264
+ "title": "Donedata",
265
+ "type": "object"
266
+ },
267
+ "Else": {
268
+ "properties": {
269
+ "other_attributes": {
270
+ "additionalProperties": {
271
+ "type": "string"
272
+ },
273
+ "title": "Other Attributes",
274
+ "type": "object"
275
+ }
276
+ },
277
+ "title": "Else",
278
+ "type": "object"
279
+ },
280
+ "Elseif": {
281
+ "properties": {
282
+ "cond": {
283
+ "title": "Cond",
284
+ "type": "string"
285
+ },
286
+ "other_attributes": {
287
+ "additionalProperties": {
288
+ "type": "string"
289
+ },
290
+ "title": "Other Attributes",
291
+ "type": "object"
292
+ }
293
+ },
294
+ "required": [
295
+ "cond"
296
+ ],
297
+ "title": "Elseif",
298
+ "type": "object"
299
+ },
300
+ "ExmodeDatatype": {
301
+ "description": "Describes the processor execution mode for this document, being either \"lax\" or\n\"strict\".",
302
+ "enum": [
303
+ "lax",
304
+ "strict"
305
+ ],
306
+ "title": "ExmodeDatatype",
307
+ "type": "string"
308
+ },
309
+ "Final": {
310
+ "properties": {
311
+ "onentry": {
312
+ "items": {
313
+ "$ref": "#/$defs/Onentry"
314
+ },
315
+ "title": "Onentry",
316
+ "type": "array"
317
+ },
318
+ "onexit": {
319
+ "items": {
320
+ "$ref": "#/$defs/Onexit"
321
+ },
322
+ "title": "Onexit",
323
+ "type": "array"
324
+ },
325
+ "donedata": {
326
+ "items": {
327
+ "$ref": "#/$defs/Donedata"
328
+ },
329
+ "title": "Donedata",
330
+ "type": "array"
331
+ },
332
+ "other_element": {
333
+ "items": {},
334
+ "title": "Other Element",
335
+ "type": "array"
336
+ },
337
+ "id": {
338
+ "anyOf": [
339
+ {
340
+ "type": "string"
341
+ },
342
+ {
343
+ "type": "null"
344
+ }
345
+ ],
346
+ "default": null,
347
+ "title": "Id"
348
+ },
349
+ "other_attributes": {
350
+ "additionalProperties": {
351
+ "type": "string"
352
+ },
353
+ "title": "Other Attributes",
354
+ "type": "object"
355
+ }
356
+ },
357
+ "title": "Final",
358
+ "type": "object"
359
+ },
360
+ "Finalize": {
361
+ "properties": {
362
+ "other_element": {
363
+ "items": {},
364
+ "title": "Other Element",
365
+ "type": "array"
366
+ },
367
+ "raise_value": {
368
+ "items": {
369
+ "$ref": "#/$defs/Raise"
370
+ },
371
+ "title": "Raise Value",
372
+ "type": "array"
373
+ },
374
+ "if_value": {
375
+ "items": {
376
+ "$ref": "#/$defs/If"
377
+ },
378
+ "title": "If Value",
379
+ "type": "array"
380
+ },
381
+ "foreach": {
382
+ "items": {
383
+ "$ref": "#/$defs/Foreach"
384
+ },
385
+ "title": "Foreach",
386
+ "type": "array"
387
+ },
388
+ "send": {
389
+ "items": {
390
+ "$ref": "#/$defs/Send"
391
+ },
392
+ "title": "Send",
393
+ "type": "array"
394
+ },
395
+ "script": {
396
+ "items": {
397
+ "$ref": "#/$defs/Script"
398
+ },
399
+ "title": "Script",
400
+ "type": "array"
401
+ },
402
+ "assign": {
403
+ "items": {
404
+ "$ref": "#/$defs/Assign"
405
+ },
406
+ "title": "Assign",
407
+ "type": "array"
408
+ },
409
+ "log": {
410
+ "items": {
411
+ "$ref": "#/$defs/Log"
412
+ },
413
+ "title": "Log",
414
+ "type": "array"
415
+ },
416
+ "cancel": {
417
+ "items": {
418
+ "$ref": "#/$defs/Cancel"
419
+ },
420
+ "title": "Cancel",
421
+ "type": "array"
422
+ },
423
+ "other_attributes": {
424
+ "additionalProperties": {
425
+ "type": "string"
426
+ },
427
+ "title": "Other Attributes",
428
+ "type": "object"
429
+ }
430
+ },
431
+ "title": "Finalize",
432
+ "type": "object"
433
+ },
434
+ "Foreach": {
435
+ "properties": {
436
+ "other_element": {
437
+ "items": {},
438
+ "title": "Other Element",
439
+ "type": "array"
440
+ },
441
+ "raise_value": {
442
+ "items": {
443
+ "$ref": "#/$defs/Raise"
444
+ },
445
+ "title": "Raise Value",
446
+ "type": "array"
447
+ },
448
+ "if_value": {
449
+ "items": {
450
+ "$ref": "#/$defs/If"
451
+ },
452
+ "title": "If Value",
453
+ "type": "array"
454
+ },
455
+ "foreach": {
456
+ "items": {
457
+ "$ref": "#/$defs/Foreach"
458
+ },
459
+ "title": "Foreach",
460
+ "type": "array"
461
+ },
462
+ "send": {
463
+ "items": {
464
+ "$ref": "#/$defs/Send"
465
+ },
466
+ "title": "Send",
467
+ "type": "array"
468
+ },
469
+ "script": {
470
+ "items": {
471
+ "$ref": "#/$defs/Script"
472
+ },
473
+ "title": "Script",
474
+ "type": "array"
475
+ },
476
+ "assign": {
477
+ "items": {
478
+ "$ref": "#/$defs/Assign"
479
+ },
480
+ "title": "Assign",
481
+ "type": "array"
482
+ },
483
+ "log": {
484
+ "items": {
485
+ "$ref": "#/$defs/Log"
486
+ },
487
+ "title": "Log",
488
+ "type": "array"
489
+ },
490
+ "cancel": {
491
+ "items": {
492
+ "$ref": "#/$defs/Cancel"
493
+ },
494
+ "title": "Cancel",
495
+ "type": "array"
496
+ },
497
+ "array": {
498
+ "title": "Array",
499
+ "type": "string"
500
+ },
501
+ "item": {
502
+ "title": "Item",
503
+ "type": "string"
504
+ },
505
+ "index": {
506
+ "anyOf": [
507
+ {
508
+ "type": "string"
509
+ },
510
+ {
511
+ "type": "null"
512
+ }
513
+ ],
514
+ "default": null,
515
+ "title": "Index"
516
+ },
517
+ "other_attributes": {
518
+ "additionalProperties": {
519
+ "type": "string"
520
+ },
521
+ "title": "Other Attributes",
522
+ "type": "object"
523
+ }
524
+ },
525
+ "required": [
526
+ "array",
527
+ "item"
528
+ ],
529
+ "title": "Foreach",
530
+ "type": "object"
531
+ },
532
+ "History": {
533
+ "properties": {
534
+ "other_element": {
535
+ "items": {},
536
+ "title": "Other Element",
537
+ "type": "array"
538
+ },
539
+ "transition": {
540
+ "$ref": "#/$defs/Transition"
541
+ },
542
+ "id": {
543
+ "anyOf": [
544
+ {
545
+ "type": "string"
546
+ },
547
+ {
548
+ "type": "null"
549
+ }
550
+ ],
551
+ "default": null,
552
+ "title": "Id"
553
+ },
554
+ "type_value": {
555
+ "anyOf": [
556
+ {
557
+ "$ref": "#/$defs/HistoryTypeDatatype"
558
+ },
559
+ {
560
+ "type": "null"
561
+ }
562
+ ],
563
+ "default": null
564
+ },
565
+ "other_attributes": {
566
+ "additionalProperties": {
567
+ "type": "string"
568
+ },
569
+ "title": "Other Attributes",
570
+ "type": "object"
571
+ }
572
+ },
573
+ "required": [
574
+ "transition"
575
+ ],
576
+ "title": "History",
577
+ "type": "object"
578
+ },
579
+ "HistoryTypeDatatype": {
580
+ "enum": [
581
+ "shallow",
582
+ "deep"
583
+ ],
584
+ "title": "HistoryTypeDatatype",
585
+ "type": "string"
586
+ },
587
+ "If": {
588
+ "properties": {
589
+ "other_element": {
590
+ "items": {},
591
+ "title": "Other Element",
592
+ "type": "array"
593
+ },
594
+ "raise_value": {
595
+ "items": {
596
+ "$ref": "#/$defs/Raise"
597
+ },
598
+ "title": "Raise Value",
599
+ "type": "array"
600
+ },
601
+ "if_value": {
602
+ "items": {
603
+ "$ref": "#/$defs/If"
604
+ },
605
+ "title": "If Value",
606
+ "type": "array"
607
+ },
608
+ "foreach": {
609
+ "items": {
610
+ "$ref": "#/$defs/Foreach"
611
+ },
612
+ "title": "Foreach",
613
+ "type": "array"
614
+ },
615
+ "send": {
616
+ "items": {
617
+ "$ref": "#/$defs/Send"
618
+ },
619
+ "title": "Send",
620
+ "type": "array"
621
+ },
622
+ "script": {
623
+ "items": {
624
+ "$ref": "#/$defs/Script"
625
+ },
626
+ "title": "Script",
627
+ "type": "array"
628
+ },
629
+ "assign": {
630
+ "items": {
631
+ "$ref": "#/$defs/Assign"
632
+ },
633
+ "title": "Assign",
634
+ "type": "array"
635
+ },
636
+ "log": {
637
+ "items": {
638
+ "$ref": "#/$defs/Log"
639
+ },
640
+ "title": "Log",
641
+ "type": "array"
642
+ },
643
+ "cancel": {
644
+ "items": {
645
+ "$ref": "#/$defs/Cancel"
646
+ },
647
+ "title": "Cancel",
648
+ "type": "array"
649
+ },
650
+ "elseif": {
651
+ "anyOf": [
652
+ {
653
+ "$ref": "#/$defs/Elseif"
654
+ },
655
+ {
656
+ "type": "null"
657
+ }
658
+ ],
659
+ "default": null
660
+ },
661
+ "else_value": {
662
+ "anyOf": [
663
+ {
664
+ "$ref": "#/$defs/Else"
665
+ },
666
+ {
667
+ "type": "null"
668
+ }
669
+ ],
670
+ "default": null
671
+ },
672
+ "cond": {
673
+ "title": "Cond",
674
+ "type": "string"
675
+ },
676
+ "other_attributes": {
677
+ "additionalProperties": {
678
+ "type": "string"
679
+ },
680
+ "title": "Other Attributes",
681
+ "type": "object"
682
+ }
683
+ },
684
+ "required": [
685
+ "cond"
686
+ ],
687
+ "title": "If",
688
+ "type": "object"
689
+ },
690
+ "Initial": {
691
+ "properties": {
692
+ "other_element": {
693
+ "items": {},
694
+ "title": "Other Element",
695
+ "type": "array"
696
+ },
697
+ "transition": {
698
+ "$ref": "#/$defs/Transition"
699
+ },
700
+ "other_attributes": {
701
+ "additionalProperties": {
702
+ "type": "string"
703
+ },
704
+ "title": "Other Attributes",
705
+ "type": "object"
706
+ }
707
+ },
708
+ "required": [
709
+ "transition"
710
+ ],
711
+ "title": "Initial",
712
+ "type": "object"
713
+ },
714
+ "Invoke": {
715
+ "properties": {
716
+ "content": {
717
+ "items": {
718
+ "$ref": "#/$defs/Content"
719
+ },
720
+ "title": "Content",
721
+ "type": "array"
722
+ },
723
+ "param": {
724
+ "items": {
725
+ "$ref": "#/$defs/Param"
726
+ },
727
+ "title": "Param",
728
+ "type": "array"
729
+ },
730
+ "finalize": {
731
+ "items": {
732
+ "$ref": "#/$defs/Finalize"
733
+ },
734
+ "title": "Finalize",
735
+ "type": "array"
736
+ },
737
+ "other_element": {
738
+ "items": {},
739
+ "title": "Other Element",
740
+ "type": "array"
741
+ },
742
+ "type_value": {
743
+ "default": "scxml",
744
+ "title": "Type Value",
745
+ "type": "string"
746
+ },
747
+ "typeexpr": {
748
+ "anyOf": [
749
+ {
750
+ "type": "string"
751
+ },
752
+ {
753
+ "type": "null"
754
+ }
755
+ ],
756
+ "default": null,
757
+ "title": "Typeexpr"
758
+ },
759
+ "src": {
760
+ "anyOf": [
761
+ {
762
+ "type": "string"
763
+ },
764
+ {
765
+ "type": "null"
766
+ }
767
+ ],
768
+ "default": null,
769
+ "title": "Src"
770
+ },
771
+ "srcexpr": {
772
+ "anyOf": [
773
+ {
774
+ "type": "string"
775
+ },
776
+ {
777
+ "type": "null"
778
+ }
779
+ ],
780
+ "default": null,
781
+ "title": "Srcexpr"
782
+ },
783
+ "id": {
784
+ "anyOf": [
785
+ {
786
+ "type": "string"
787
+ },
788
+ {
789
+ "type": "null"
790
+ }
791
+ ],
792
+ "default": null,
793
+ "title": "Id"
794
+ },
795
+ "idlocation": {
796
+ "anyOf": [
797
+ {
798
+ "type": "string"
799
+ },
800
+ {
801
+ "type": "null"
802
+ }
803
+ ],
804
+ "default": null,
805
+ "title": "Idlocation"
806
+ },
807
+ "namelist": {
808
+ "anyOf": [
809
+ {
810
+ "type": "string"
811
+ },
812
+ {
813
+ "type": "null"
814
+ }
815
+ ],
816
+ "default": null,
817
+ "title": "Namelist"
818
+ },
819
+ "autoforward": {
820
+ "$ref": "#/$defs/BooleanDatatype",
821
+ "default": "false"
822
+ },
823
+ "other_attributes": {
824
+ "additionalProperties": {
825
+ "type": "string"
826
+ },
827
+ "title": "Other Attributes",
828
+ "type": "object"
829
+ }
830
+ },
831
+ "title": "Invoke",
832
+ "type": "object"
833
+ },
834
+ "Log": {
835
+ "properties": {
836
+ "other_element": {
837
+ "items": {},
838
+ "title": "Other Element",
839
+ "type": "array"
840
+ },
841
+ "label": {
842
+ "anyOf": [
843
+ {
844
+ "type": "string"
845
+ },
846
+ {
847
+ "type": "null"
848
+ }
849
+ ],
850
+ "default": null,
851
+ "title": "Label"
852
+ },
853
+ "expr": {
854
+ "anyOf": [
855
+ {
856
+ "type": "string"
857
+ },
858
+ {
859
+ "type": "null"
860
+ }
861
+ ],
862
+ "default": null,
863
+ "title": "Expr"
864
+ },
865
+ "other_attributes": {
866
+ "additionalProperties": {
867
+ "type": "string"
868
+ },
869
+ "title": "Other Attributes",
870
+ "type": "object"
871
+ }
872
+ },
873
+ "title": "Log",
874
+ "type": "object"
875
+ },
876
+ "Onentry": {
877
+ "properties": {
878
+ "other_element": {
879
+ "items": {},
880
+ "title": "Other Element",
881
+ "type": "array"
882
+ },
883
+ "raise_value": {
884
+ "items": {
885
+ "$ref": "#/$defs/Raise"
886
+ },
887
+ "title": "Raise Value",
888
+ "type": "array"
889
+ },
890
+ "if_value": {
891
+ "items": {
892
+ "$ref": "#/$defs/If"
893
+ },
894
+ "title": "If Value",
895
+ "type": "array"
896
+ },
897
+ "foreach": {
898
+ "items": {
899
+ "$ref": "#/$defs/Foreach"
900
+ },
901
+ "title": "Foreach",
902
+ "type": "array"
903
+ },
904
+ "send": {
905
+ "items": {
906
+ "$ref": "#/$defs/Send"
907
+ },
908
+ "title": "Send",
909
+ "type": "array"
910
+ },
911
+ "script": {
912
+ "items": {
913
+ "$ref": "#/$defs/Script"
914
+ },
915
+ "title": "Script",
916
+ "type": "array"
917
+ },
918
+ "assign": {
919
+ "items": {
920
+ "$ref": "#/$defs/Assign"
921
+ },
922
+ "title": "Assign",
923
+ "type": "array"
924
+ },
925
+ "log": {
926
+ "items": {
927
+ "$ref": "#/$defs/Log"
928
+ },
929
+ "title": "Log",
930
+ "type": "array"
931
+ },
932
+ "cancel": {
933
+ "items": {
934
+ "$ref": "#/$defs/Cancel"
935
+ },
936
+ "title": "Cancel",
937
+ "type": "array"
938
+ },
939
+ "other_attributes": {
940
+ "additionalProperties": {
941
+ "type": "string"
942
+ },
943
+ "title": "Other Attributes",
944
+ "type": "object"
945
+ }
946
+ },
947
+ "title": "Onentry",
948
+ "type": "object"
949
+ },
950
+ "Onexit": {
951
+ "properties": {
952
+ "other_element": {
953
+ "items": {},
954
+ "title": "Other Element",
955
+ "type": "array"
956
+ },
957
+ "raise_value": {
958
+ "items": {
959
+ "$ref": "#/$defs/Raise"
960
+ },
961
+ "title": "Raise Value",
962
+ "type": "array"
963
+ },
964
+ "if_value": {
965
+ "items": {
966
+ "$ref": "#/$defs/If"
967
+ },
968
+ "title": "If Value",
969
+ "type": "array"
970
+ },
971
+ "foreach": {
972
+ "items": {
973
+ "$ref": "#/$defs/Foreach"
974
+ },
975
+ "title": "Foreach",
976
+ "type": "array"
977
+ },
978
+ "send": {
979
+ "items": {
980
+ "$ref": "#/$defs/Send"
981
+ },
982
+ "title": "Send",
983
+ "type": "array"
984
+ },
985
+ "script": {
986
+ "items": {
987
+ "$ref": "#/$defs/Script"
988
+ },
989
+ "title": "Script",
990
+ "type": "array"
991
+ },
992
+ "assign": {
993
+ "items": {
994
+ "$ref": "#/$defs/Assign"
995
+ },
996
+ "title": "Assign",
997
+ "type": "array"
998
+ },
999
+ "log": {
1000
+ "items": {
1001
+ "$ref": "#/$defs/Log"
1002
+ },
1003
+ "title": "Log",
1004
+ "type": "array"
1005
+ },
1006
+ "cancel": {
1007
+ "items": {
1008
+ "$ref": "#/$defs/Cancel"
1009
+ },
1010
+ "title": "Cancel",
1011
+ "type": "array"
1012
+ },
1013
+ "other_attributes": {
1014
+ "additionalProperties": {
1015
+ "type": "string"
1016
+ },
1017
+ "title": "Other Attributes",
1018
+ "type": "object"
1019
+ }
1020
+ },
1021
+ "title": "Onexit",
1022
+ "type": "object"
1023
+ },
1024
+ "Parallel": {
1025
+ "properties": {
1026
+ "onentry": {
1027
+ "items": {
1028
+ "$ref": "#/$defs/Onentry"
1029
+ },
1030
+ "title": "Onentry",
1031
+ "type": "array"
1032
+ },
1033
+ "onexit": {
1034
+ "items": {
1035
+ "$ref": "#/$defs/Onexit"
1036
+ },
1037
+ "title": "Onexit",
1038
+ "type": "array"
1039
+ },
1040
+ "transition": {
1041
+ "items": {
1042
+ "$ref": "#/$defs/Transition"
1043
+ },
1044
+ "title": "Transition",
1045
+ "type": "array"
1046
+ },
1047
+ "state": {
1048
+ "items": {
1049
+ "$ref": "#/$defs/State"
1050
+ },
1051
+ "title": "State",
1052
+ "type": "array"
1053
+ },
1054
+ "parallel": {
1055
+ "items": {
1056
+ "$ref": "#/$defs/Parallel"
1057
+ },
1058
+ "title": "Parallel",
1059
+ "type": "array"
1060
+ },
1061
+ "history": {
1062
+ "items": {
1063
+ "$ref": "#/$defs/History"
1064
+ },
1065
+ "title": "History",
1066
+ "type": "array"
1067
+ },
1068
+ "datamodel": {
1069
+ "items": {
1070
+ "$ref": "#/$defs/Datamodel"
1071
+ },
1072
+ "title": "Datamodel",
1073
+ "type": "array"
1074
+ },
1075
+ "invoke": {
1076
+ "items": {
1077
+ "$ref": "#/$defs/Invoke"
1078
+ },
1079
+ "title": "Invoke",
1080
+ "type": "array"
1081
+ },
1082
+ "other_element": {
1083
+ "items": {},
1084
+ "title": "Other Element",
1085
+ "type": "array"
1086
+ },
1087
+ "id": {
1088
+ "anyOf": [
1089
+ {
1090
+ "type": "string"
1091
+ },
1092
+ {
1093
+ "type": "null"
1094
+ }
1095
+ ],
1096
+ "default": null,
1097
+ "title": "Id"
1098
+ },
1099
+ "other_attributes": {
1100
+ "additionalProperties": {
1101
+ "type": "string"
1102
+ },
1103
+ "title": "Other Attributes",
1104
+ "type": "object"
1105
+ }
1106
+ },
1107
+ "title": "Parallel",
1108
+ "type": "object"
1109
+ },
1110
+ "Param": {
1111
+ "properties": {
1112
+ "other_element": {
1113
+ "items": {},
1114
+ "title": "Other Element",
1115
+ "type": "array"
1116
+ },
1117
+ "name": {
1118
+ "title": "Name",
1119
+ "type": "string"
1120
+ },
1121
+ "expr": {
1122
+ "anyOf": [
1123
+ {
1124
+ "type": "string"
1125
+ },
1126
+ {
1127
+ "type": "null"
1128
+ }
1129
+ ],
1130
+ "default": null,
1131
+ "title": "Expr"
1132
+ },
1133
+ "location": {
1134
+ "anyOf": [
1135
+ {
1136
+ "type": "string"
1137
+ },
1138
+ {
1139
+ "type": "null"
1140
+ }
1141
+ ],
1142
+ "default": null,
1143
+ "title": "Location"
1144
+ },
1145
+ "other_attributes": {
1146
+ "additionalProperties": {
1147
+ "type": "string"
1148
+ },
1149
+ "title": "Other Attributes",
1150
+ "type": "object"
1151
+ }
1152
+ },
1153
+ "required": [
1154
+ "name"
1155
+ ],
1156
+ "title": "Param",
1157
+ "type": "object"
1158
+ },
1159
+ "Raise": {
1160
+ "properties": {
1161
+ "event": {
1162
+ "title": "Event",
1163
+ "type": "string"
1164
+ },
1165
+ "other_attributes": {
1166
+ "additionalProperties": {
1167
+ "type": "string"
1168
+ },
1169
+ "title": "Other Attributes",
1170
+ "type": "object"
1171
+ }
1172
+ },
1173
+ "required": [
1174
+ "event"
1175
+ ],
1176
+ "title": "Raise",
1177
+ "type": "object"
1178
+ },
1179
+ "Script": {
1180
+ "properties": {
1181
+ "src": {
1182
+ "anyOf": [
1183
+ {
1184
+ "type": "string"
1185
+ },
1186
+ {
1187
+ "type": "null"
1188
+ }
1189
+ ],
1190
+ "default": null,
1191
+ "title": "Src"
1192
+ },
1193
+ "other_attributes": {
1194
+ "additionalProperties": {
1195
+ "type": "string"
1196
+ },
1197
+ "title": "Other Attributes",
1198
+ "type": "object"
1199
+ },
1200
+ "content": {
1201
+ "items": {},
1202
+ "title": "Content",
1203
+ "type": "array"
1204
+ }
1205
+ },
1206
+ "title": "Script",
1207
+ "type": "object"
1208
+ },
1209
+ "Send": {
1210
+ "properties": {
1211
+ "content": {
1212
+ "items": {
1213
+ "$ref": "#/$defs/Content"
1214
+ },
1215
+ "title": "Content",
1216
+ "type": "array"
1217
+ },
1218
+ "param": {
1219
+ "items": {
1220
+ "$ref": "#/$defs/Param"
1221
+ },
1222
+ "title": "Param",
1223
+ "type": "array"
1224
+ },
1225
+ "other_element": {
1226
+ "items": {},
1227
+ "title": "Other Element",
1228
+ "type": "array"
1229
+ },
1230
+ "event": {
1231
+ "anyOf": [
1232
+ {
1233
+ "type": "string"
1234
+ },
1235
+ {
1236
+ "type": "null"
1237
+ }
1238
+ ],
1239
+ "default": null,
1240
+ "title": "Event"
1241
+ },
1242
+ "eventexpr": {
1243
+ "anyOf": [
1244
+ {
1245
+ "type": "string"
1246
+ },
1247
+ {
1248
+ "type": "null"
1249
+ }
1250
+ ],
1251
+ "default": null,
1252
+ "title": "Eventexpr"
1253
+ },
1254
+ "target": {
1255
+ "anyOf": [
1256
+ {
1257
+ "type": "string"
1258
+ },
1259
+ {
1260
+ "type": "null"
1261
+ }
1262
+ ],
1263
+ "default": null,
1264
+ "title": "Target"
1265
+ },
1266
+ "targetexpr": {
1267
+ "anyOf": [
1268
+ {
1269
+ "type": "string"
1270
+ },
1271
+ {
1272
+ "type": "null"
1273
+ }
1274
+ ],
1275
+ "default": null,
1276
+ "title": "Targetexpr"
1277
+ },
1278
+ "type_value": {
1279
+ "default": "scxml",
1280
+ "title": "Type Value",
1281
+ "type": "string"
1282
+ },
1283
+ "typeexpr": {
1284
+ "anyOf": [
1285
+ {
1286
+ "type": "string"
1287
+ },
1288
+ {
1289
+ "type": "null"
1290
+ }
1291
+ ],
1292
+ "default": null,
1293
+ "title": "Typeexpr"
1294
+ },
1295
+ "id": {
1296
+ "anyOf": [
1297
+ {
1298
+ "type": "string"
1299
+ },
1300
+ {
1301
+ "type": "null"
1302
+ }
1303
+ ],
1304
+ "default": null,
1305
+ "title": "Id"
1306
+ },
1307
+ "idlocation": {
1308
+ "anyOf": [
1309
+ {
1310
+ "type": "string"
1311
+ },
1312
+ {
1313
+ "type": "null"
1314
+ }
1315
+ ],
1316
+ "default": null,
1317
+ "title": "Idlocation"
1318
+ },
1319
+ "delay": {
1320
+ "default": "0s",
1321
+ "title": "Delay",
1322
+ "type": "string"
1323
+ },
1324
+ "delayexpr": {
1325
+ "anyOf": [
1326
+ {
1327
+ "type": "string"
1328
+ },
1329
+ {
1330
+ "type": "null"
1331
+ }
1332
+ ],
1333
+ "default": null,
1334
+ "title": "Delayexpr"
1335
+ },
1336
+ "namelist": {
1337
+ "anyOf": [
1338
+ {
1339
+ "type": "string"
1340
+ },
1341
+ {
1342
+ "type": "null"
1343
+ }
1344
+ ],
1345
+ "default": null,
1346
+ "title": "Namelist"
1347
+ },
1348
+ "other_attributes": {
1349
+ "additionalProperties": {
1350
+ "type": "string"
1351
+ },
1352
+ "title": "Other Attributes",
1353
+ "type": "object"
1354
+ }
1355
+ },
1356
+ "title": "Send",
1357
+ "type": "object"
1358
+ },
1359
+ "State": {
1360
+ "properties": {
1361
+ "onentry": {
1362
+ "items": {
1363
+ "$ref": "#/$defs/Onentry"
1364
+ },
1365
+ "title": "Onentry",
1366
+ "type": "array"
1367
+ },
1368
+ "onexit": {
1369
+ "items": {
1370
+ "$ref": "#/$defs/Onexit"
1371
+ },
1372
+ "title": "Onexit",
1373
+ "type": "array"
1374
+ },
1375
+ "transition": {
1376
+ "items": {
1377
+ "$ref": "#/$defs/Transition"
1378
+ },
1379
+ "title": "Transition",
1380
+ "type": "array"
1381
+ },
1382
+ "initial": {
1383
+ "items": {
1384
+ "$ref": "#/$defs/Initial"
1385
+ },
1386
+ "title": "Initial",
1387
+ "type": "array"
1388
+ },
1389
+ "state": {
1390
+ "items": {
1391
+ "$ref": "#/$defs/State"
1392
+ },
1393
+ "title": "State",
1394
+ "type": "array"
1395
+ },
1396
+ "parallel": {
1397
+ "items": {
1398
+ "$ref": "#/$defs/Parallel"
1399
+ },
1400
+ "title": "Parallel",
1401
+ "type": "array"
1402
+ },
1403
+ "final": {
1404
+ "items": {
1405
+ "$ref": "#/$defs/Final"
1406
+ },
1407
+ "title": "Final",
1408
+ "type": "array"
1409
+ },
1410
+ "history": {
1411
+ "items": {
1412
+ "$ref": "#/$defs/History"
1413
+ },
1414
+ "title": "History",
1415
+ "type": "array"
1416
+ },
1417
+ "datamodel": {
1418
+ "items": {
1419
+ "$ref": "#/$defs/Datamodel"
1420
+ },
1421
+ "title": "Datamodel",
1422
+ "type": "array"
1423
+ },
1424
+ "invoke": {
1425
+ "items": {
1426
+ "$ref": "#/$defs/Invoke"
1427
+ },
1428
+ "title": "Invoke",
1429
+ "type": "array"
1430
+ },
1431
+ "other_element": {
1432
+ "items": {},
1433
+ "title": "Other Element",
1434
+ "type": "array"
1435
+ },
1436
+ "id": {
1437
+ "anyOf": [
1438
+ {
1439
+ "type": "string"
1440
+ },
1441
+ {
1442
+ "type": "null"
1443
+ }
1444
+ ],
1445
+ "default": null,
1446
+ "title": "Id"
1447
+ },
1448
+ "initial_attribute": {
1449
+ "items": {
1450
+ "type": "string"
1451
+ },
1452
+ "title": "Initial Attribute",
1453
+ "type": "array"
1454
+ },
1455
+ "other_attributes": {
1456
+ "additionalProperties": {
1457
+ "type": "string"
1458
+ },
1459
+ "title": "Other Attributes",
1460
+ "type": "object"
1461
+ }
1462
+ },
1463
+ "title": "State",
1464
+ "type": "object"
1465
+ },
1466
+ "Transition": {
1467
+ "properties": {
1468
+ "other_element": {
1469
+ "items": {},
1470
+ "title": "Other Element",
1471
+ "type": "array"
1472
+ },
1473
+ "raise_value": {
1474
+ "items": {
1475
+ "$ref": "#/$defs/Raise"
1476
+ },
1477
+ "title": "Raise Value",
1478
+ "type": "array"
1479
+ },
1480
+ "if_value": {
1481
+ "items": {
1482
+ "$ref": "#/$defs/If"
1483
+ },
1484
+ "title": "If Value",
1485
+ "type": "array"
1486
+ },
1487
+ "foreach": {
1488
+ "items": {
1489
+ "$ref": "#/$defs/Foreach"
1490
+ },
1491
+ "title": "Foreach",
1492
+ "type": "array"
1493
+ },
1494
+ "send": {
1495
+ "items": {
1496
+ "$ref": "#/$defs/Send"
1497
+ },
1498
+ "title": "Send",
1499
+ "type": "array"
1500
+ },
1501
+ "script": {
1502
+ "items": {
1503
+ "$ref": "#/$defs/Script"
1504
+ },
1505
+ "title": "Script",
1506
+ "type": "array"
1507
+ },
1508
+ "assign": {
1509
+ "items": {
1510
+ "$ref": "#/$defs/Assign"
1511
+ },
1512
+ "title": "Assign",
1513
+ "type": "array"
1514
+ },
1515
+ "log": {
1516
+ "items": {
1517
+ "$ref": "#/$defs/Log"
1518
+ },
1519
+ "title": "Log",
1520
+ "type": "array"
1521
+ },
1522
+ "cancel": {
1523
+ "items": {
1524
+ "$ref": "#/$defs/Cancel"
1525
+ },
1526
+ "title": "Cancel",
1527
+ "type": "array"
1528
+ },
1529
+ "event": {
1530
+ "anyOf": [
1531
+ {
1532
+ "type": "string"
1533
+ },
1534
+ {
1535
+ "type": "null"
1536
+ }
1537
+ ],
1538
+ "default": null,
1539
+ "title": "Event"
1540
+ },
1541
+ "cond": {
1542
+ "anyOf": [
1543
+ {
1544
+ "type": "string"
1545
+ },
1546
+ {
1547
+ "type": "null"
1548
+ }
1549
+ ],
1550
+ "default": null,
1551
+ "title": "Cond"
1552
+ },
1553
+ "target": {
1554
+ "items": {
1555
+ "type": "string"
1556
+ },
1557
+ "title": "Target",
1558
+ "type": "array"
1559
+ },
1560
+ "type_value": {
1561
+ "anyOf": [
1562
+ {
1563
+ "$ref": "#/$defs/TransitionTypeDatatype"
1564
+ },
1565
+ {
1566
+ "type": "null"
1567
+ }
1568
+ ],
1569
+ "default": null
1570
+ },
1571
+ "other_attributes": {
1572
+ "additionalProperties": {
1573
+ "type": "string"
1574
+ },
1575
+ "title": "Other Attributes",
1576
+ "type": "object"
1577
+ }
1578
+ },
1579
+ "title": "Transition",
1580
+ "type": "object"
1581
+ },
1582
+ "TransitionTypeDatatype": {
1583
+ "description": "The type of the transition i.e. internal or external.",
1584
+ "enum": [
1585
+ "internal",
1586
+ "external"
1587
+ ],
1588
+ "title": "TransitionTypeDatatype",
1589
+ "type": "string"
1590
+ }
1591
+ },
1592
+ "properties": {
1593
+ "state": {
1594
+ "items": {
1595
+ "$ref": "#/$defs/State"
1596
+ },
1597
+ "title": "State",
1598
+ "type": "array"
1599
+ },
1600
+ "parallel": {
1601
+ "items": {
1602
+ "$ref": "#/$defs/Parallel"
1603
+ },
1604
+ "title": "Parallel",
1605
+ "type": "array"
1606
+ },
1607
+ "final": {
1608
+ "items": {
1609
+ "$ref": "#/$defs/Final"
1610
+ },
1611
+ "title": "Final",
1612
+ "type": "array"
1613
+ },
1614
+ "datamodel": {
1615
+ "items": {
1616
+ "$ref": "#/$defs/Datamodel"
1617
+ },
1618
+ "title": "Datamodel",
1619
+ "type": "array"
1620
+ },
1621
+ "script": {
1622
+ "items": {
1623
+ "$ref": "#/$defs/Script"
1624
+ },
1625
+ "title": "Script",
1626
+ "type": "array"
1627
+ },
1628
+ "other_element": {
1629
+ "items": {},
1630
+ "title": "Other Element",
1631
+ "type": "array"
1632
+ },
1633
+ "initial": {
1634
+ "items": {
1635
+ "type": "string"
1636
+ },
1637
+ "title": "Initial",
1638
+ "type": "array"
1639
+ },
1640
+ "name": {
1641
+ "anyOf": [
1642
+ {
1643
+ "type": "string"
1644
+ },
1645
+ {
1646
+ "type": "null"
1647
+ }
1648
+ ],
1649
+ "default": null,
1650
+ "title": "Name"
1651
+ },
1652
+ "version": {
1653
+ "anyOf": [
1654
+ {
1655
+ "type": "number"
1656
+ },
1657
+ {
1658
+ "type": "string"
1659
+ }
1660
+ ],
1661
+ "default": "1.0",
1662
+ "title": "Version"
1663
+ },
1664
+ "datamodel_attribute": {
1665
+ "default": "null",
1666
+ "title": "Datamodel Attribute",
1667
+ "type": "string"
1668
+ },
1669
+ "binding": {
1670
+ "anyOf": [
1671
+ {
1672
+ "$ref": "#/$defs/BindingDatatype"
1673
+ },
1674
+ {
1675
+ "type": "null"
1676
+ }
1677
+ ],
1678
+ "default": null
1679
+ },
1680
+ "exmode": {
1681
+ "anyOf": [
1682
+ {
1683
+ "$ref": "#/$defs/ExmodeDatatype"
1684
+ },
1685
+ {
1686
+ "type": "null"
1687
+ }
1688
+ ],
1689
+ "default": null
1690
+ },
1691
+ "other_attributes": {
1692
+ "additionalProperties": {
1693
+ "type": "string"
1694
+ },
1695
+ "title": "Other Attributes",
1696
+ "type": "object"
1697
+ }
1698
+ },
1699
+ "title": "Scxml",
1700
+ "type": "object"
1701
+ }