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