@visactor/vchart-schema 1.12.15-alpha.0 → 1.13.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/package.json +1 -1
- package/vchart.json +138 -23
package/package.json
CHANGED
package/vchart.json
CHANGED
|
@@ -32279,6 +32279,11 @@
|
|
|
32279
32279
|
"$ref": "#/definitions/ILayoutPaddingSpec",
|
|
32280
32280
|
"description": "模块的布局间距"
|
|
32281
32281
|
},
|
|
32282
|
+
"parent": {
|
|
32283
|
+
"description": "指定 parent Id",
|
|
32284
|
+
"since": "1.13.0",
|
|
32285
|
+
"type": "string"
|
|
32286
|
+
},
|
|
32282
32287
|
"progressiveStep": {
|
|
32283
32288
|
"description": "分片长度",
|
|
32284
32289
|
"type": "number"
|
|
@@ -34811,6 +34816,11 @@
|
|
|
34811
34816
|
"$ref": "#/definitions/ILayoutPaddingSpec",
|
|
34812
34817
|
"description": "模块的布局间距"
|
|
34813
34818
|
},
|
|
34819
|
+
"parent": {
|
|
34820
|
+
"description": "指定 parent Id",
|
|
34821
|
+
"since": "1.13.0",
|
|
34822
|
+
"type": "string"
|
|
34823
|
+
},
|
|
34814
34824
|
"progressiveStep": {
|
|
34815
34825
|
"description": "分片长度",
|
|
34816
34826
|
"type": "number"
|
|
@@ -35076,6 +35086,11 @@
|
|
|
35076
35086
|
"$ref": "#/definitions/ILayoutPaddingSpec",
|
|
35077
35087
|
"description": "模块的布局间距"
|
|
35078
35088
|
},
|
|
35089
|
+
"parent": {
|
|
35090
|
+
"description": "指定 parent Id",
|
|
35091
|
+
"since": "1.13.0",
|
|
35092
|
+
"type": "string"
|
|
35093
|
+
},
|
|
35079
35094
|
"progressiveStep": {
|
|
35080
35095
|
"description": "分片长度",
|
|
35081
35096
|
"type": "number"
|
|
@@ -67680,6 +67695,17 @@
|
|
|
67680
67695
|
],
|
|
67681
67696
|
"description": "每个节点的宽度,支持三种取值\n1. 百分比字符串,例如:{ nodeWidth: '12%' }\n2. 以'px'为单位的简单数字,eg: { nodeWidth: 20 }\n3. function,通过自定义计算指定nodeWidth"
|
|
67682
67697
|
},
|
|
67698
|
+
"overflow": {
|
|
67699
|
+
"description": "当制定了节点、边的宽度的时候,可以配置这个属性\n当宽度大于图表region的宽度、高度大于图表resion高度的时候是否自动产生滚动条",
|
|
67700
|
+
"enum": [
|
|
67701
|
+
"hidden",
|
|
67702
|
+
"scroll",
|
|
67703
|
+
"scroll-x",
|
|
67704
|
+
"scroll-y"
|
|
67705
|
+
],
|
|
67706
|
+
"since": "1.13.0",
|
|
67707
|
+
"type": "string"
|
|
67708
|
+
},
|
|
67683
67709
|
"percent": {
|
|
67684
67710
|
"description": "是否对数据进行百分比处理",
|
|
67685
67711
|
"type": "boolean"
|
|
@@ -68187,6 +68213,17 @@
|
|
|
68187
68213
|
],
|
|
68188
68214
|
"description": "每个节点的宽度,支持三种取值\n1. 百分比字符串,例如:{ nodeWidth: '12%' }\n2. 以'px'为单位的简单数字,eg: { nodeWidth: 20 }\n3. function,通过自定义计算指定nodeWidth"
|
|
68189
68215
|
},
|
|
68216
|
+
"overflow": {
|
|
68217
|
+
"description": "当制定了节点、边的宽度的时候,可以配置这个属性\n当宽度大于图表region的宽度、高度大于图表resion高度的时候是否自动产生滚动条",
|
|
68218
|
+
"enum": [
|
|
68219
|
+
"hidden",
|
|
68220
|
+
"scroll",
|
|
68221
|
+
"scroll-x",
|
|
68222
|
+
"scroll-y"
|
|
68223
|
+
],
|
|
68224
|
+
"since": "1.13.0",
|
|
68225
|
+
"type": "string"
|
|
68226
|
+
},
|
|
68190
68227
|
"percent": {
|
|
68191
68228
|
"description": "是否对数据进行百分比处理",
|
|
68192
68229
|
"type": "boolean"
|
|
@@ -74094,6 +74131,9 @@
|
|
|
74094
74131
|
},
|
|
74095
74132
|
"tickAt": {
|
|
74096
74133
|
"typeof": "function"
|
|
74134
|
+
},
|
|
74135
|
+
"trySyncTickStatus": {
|
|
74136
|
+
"typeof": "function"
|
|
74097
74137
|
}
|
|
74098
74138
|
},
|
|
74099
74139
|
"required": [
|
|
@@ -74103,7 +74143,8 @@
|
|
|
74103
74143
|
"resume",
|
|
74104
74144
|
"start",
|
|
74105
74145
|
"stop",
|
|
74106
|
-
"tick"
|
|
74146
|
+
"tick",
|
|
74147
|
+
"trySyncTickStatus"
|
|
74107
74148
|
],
|
|
74108
74149
|
"type": "object"
|
|
74109
74150
|
},
|
|
@@ -75338,9 +75379,9 @@
|
|
|
75338
75379
|
"description": "tooltip内容,key字段"
|
|
75339
75380
|
},
|
|
75340
75381
|
"maxContentHeight": {
|
|
75382
|
+
"$ref": "#/definitions/ILayoutNumber",
|
|
75341
75383
|
"description": "最大内容区高度,内容区若超过该高度将显示局部滚动条(适用于 dom tooltip)",
|
|
75342
|
-
"since": "1.
|
|
75343
|
-
"type": "number"
|
|
75384
|
+
"since": "1.13.0 支持百分比的高度,当配置为百分比的时候,会根据图表的高度,body的最大高度,计算出来一个相对高度"
|
|
75344
75385
|
},
|
|
75345
75386
|
"offset": {
|
|
75346
75387
|
"typeof": "function"
|
|
@@ -82475,7 +82516,7 @@
|
|
|
82475
82516
|
},
|
|
82476
82517
|
"Map<Function,(...args:any[])=>void>": {
|
|
82477
82518
|
"properties": {
|
|
82478
|
-
"__@toStringTag@
|
|
82519
|
+
"__@toStringTag@15543": {
|
|
82479
82520
|
"type": "string"
|
|
82480
82521
|
},
|
|
82481
82522
|
"size": {
|
|
@@ -82483,14 +82524,14 @@
|
|
|
82483
82524
|
}
|
|
82484
82525
|
},
|
|
82485
82526
|
"required": [
|
|
82486
|
-
"__@toStringTag@
|
|
82527
|
+
"__@toStringTag@15543",
|
|
82487
82528
|
"size"
|
|
82488
82529
|
],
|
|
82489
82530
|
"type": "object"
|
|
82490
82531
|
},
|
|
82491
82532
|
"Map<number,{layer:ILayer;group?:IGroup;zIndex:number;drawContribution?:IDrawContribution;}>": {
|
|
82492
82533
|
"properties": {
|
|
82493
|
-
"__@toStringTag@
|
|
82534
|
+
"__@toStringTag@15543": {
|
|
82494
82535
|
"type": "string"
|
|
82495
82536
|
},
|
|
82496
82537
|
"size": {
|
|
@@ -82498,14 +82539,14 @@
|
|
|
82498
82539
|
}
|
|
82499
82540
|
},
|
|
82500
82541
|
"required": [
|
|
82501
|
-
"__@toStringTag@
|
|
82542
|
+
"__@toStringTag@15543",
|
|
82502
82543
|
"size"
|
|
82503
82544
|
],
|
|
82504
82545
|
"type": "object"
|
|
82505
82546
|
},
|
|
82506
82547
|
"Map<string,any>": {
|
|
82507
82548
|
"properties": {
|
|
82508
|
-
"__@toStringTag@
|
|
82549
|
+
"__@toStringTag@15543": {
|
|
82509
82550
|
"type": "string"
|
|
82510
82551
|
},
|
|
82511
82552
|
"size": {
|
|
@@ -82513,14 +82554,14 @@
|
|
|
82513
82554
|
}
|
|
82514
82555
|
},
|
|
82515
82556
|
"required": [
|
|
82516
|
-
"__@toStringTag@
|
|
82557
|
+
"__@toStringTag@15543",
|
|
82517
82558
|
"size"
|
|
82518
82559
|
],
|
|
82519
82560
|
"type": "object"
|
|
82520
82561
|
},
|
|
82521
82562
|
"Map<string|HTMLCanvasElement|HTMLImageElement|IBackgroundConfig,{state:\"loading\"|\"fail\"|\"success\"|\"init\";data?:HTMLCanvasElement|HTMLImageElement;}>": {
|
|
82522
82563
|
"properties": {
|
|
82523
|
-
"__@toStringTag@
|
|
82564
|
+
"__@toStringTag@15543": {
|
|
82524
82565
|
"type": "string"
|
|
82525
82566
|
},
|
|
82526
82567
|
"size": {
|
|
@@ -82528,14 +82569,14 @@
|
|
|
82528
82569
|
}
|
|
82529
82570
|
},
|
|
82530
82571
|
"required": [
|
|
82531
|
-
"__@toStringTag@
|
|
82572
|
+
"__@toStringTag@15543",
|
|
82532
82573
|
"size"
|
|
82533
82574
|
],
|
|
82534
82575
|
"type": "object"
|
|
82535
82576
|
},
|
|
82536
82577
|
"Map<string|HTMLElement,{container:string|HTMLElement;dom:any;wrapGroup:any;root?:any;}>": {
|
|
82537
82578
|
"properties": {
|
|
82538
|
-
"__@toStringTag@
|
|
82579
|
+
"__@toStringTag@15543": {
|
|
82539
82580
|
"type": "string"
|
|
82540
82581
|
},
|
|
82541
82582
|
"size": {
|
|
@@ -82543,14 +82584,14 @@
|
|
|
82543
82584
|
}
|
|
82544
82585
|
},
|
|
82545
82586
|
"required": [
|
|
82546
|
-
"__@toStringTag@
|
|
82587
|
+
"__@toStringTag@15543",
|
|
82547
82588
|
"size"
|
|
82548
82589
|
],
|
|
82549
82590
|
"type": "object"
|
|
82550
82591
|
},
|
|
82551
82592
|
"Map<string|number,IAnimate>": {
|
|
82552
82593
|
"properties": {
|
|
82553
|
-
"__@toStringTag@
|
|
82594
|
+
"__@toStringTag@15543": {
|
|
82554
82595
|
"type": "string"
|
|
82555
82596
|
},
|
|
82556
82597
|
"size": {
|
|
@@ -82558,7 +82599,7 @@
|
|
|
82558
82599
|
}
|
|
82559
82600
|
},
|
|
82560
82601
|
"required": [
|
|
82561
|
-
"__@toStringTag@
|
|
82602
|
+
"__@toStringTag@15543",
|
|
82562
82603
|
"size"
|
|
82563
82604
|
],
|
|
82564
82605
|
"type": "object"
|
|
@@ -82627,6 +82668,14 @@
|
|
|
82627
82668
|
}
|
|
82628
82669
|
]
|
|
82629
82670
|
},
|
|
82671
|
+
"MeasureModeEnum": {
|
|
82672
|
+
"enum": [
|
|
82673
|
+
0,
|
|
82674
|
+
1,
|
|
82675
|
+
2
|
|
82676
|
+
],
|
|
82677
|
+
"type": "number"
|
|
82678
|
+
},
|
|
82630
82679
|
"MediaCapabilities": {
|
|
82631
82680
|
"type": "object"
|
|
82632
82681
|
},
|
|
@@ -82753,6 +82802,7 @@
|
|
|
82753
82802
|
"media",
|
|
82754
82803
|
"mosaic",
|
|
82755
82804
|
"padding",
|
|
82805
|
+
"pictogram",
|
|
82756
82806
|
"pie",
|
|
82757
82807
|
"pie3d",
|
|
82758
82808
|
"player",
|
|
@@ -88259,9 +88309,9 @@
|
|
|
88259
88309
|
"description": "tooltip内容,key字段"
|
|
88260
88310
|
},
|
|
88261
88311
|
"maxContentHeight": {
|
|
88312
|
+
"$ref": "#/definitions/ILayoutNumber",
|
|
88262
88313
|
"description": "最大内容区高度,内容区若超过该高度将显示局部滚动条(适用于 dom tooltip)",
|
|
88263
|
-
"since": "1.
|
|
88264
|
-
"type": "number"
|
|
88314
|
+
"since": "1.13.0 支持百分比的高度,当配置为百分比的时候,会根据图表的高度,body的最大高度,计算出来一个相对高度"
|
|
88265
88315
|
},
|
|
88266
88316
|
"panel": {
|
|
88267
88317
|
"typeof": "function"
|
|
@@ -91867,6 +91917,9 @@
|
|
|
91867
91917
|
"innerBorder": {
|
|
91868
91918
|
"$ref": "#/definitions/Partial<IBorderStyle>"
|
|
91869
91919
|
},
|
|
91920
|
+
"keepCenterInLine": {
|
|
91921
|
+
"type": "boolean"
|
|
91922
|
+
},
|
|
91870
91923
|
"keepDirIn3d": {
|
|
91871
91924
|
"type": "boolean"
|
|
91872
91925
|
},
|
|
@@ -91907,6 +91960,12 @@
|
|
|
91907
91960
|
"maxLineWidth": {
|
|
91908
91961
|
"type": "number"
|
|
91909
91962
|
},
|
|
91963
|
+
"maxWidth": {
|
|
91964
|
+
"type": "number"
|
|
91965
|
+
},
|
|
91966
|
+
"measureMode": {
|
|
91967
|
+
"$ref": "#/definitions/MeasureModeEnum"
|
|
91968
|
+
},
|
|
91910
91969
|
"miterLimit": {
|
|
91911
91970
|
"type": "number"
|
|
91912
91971
|
},
|
|
@@ -99120,6 +99179,9 @@
|
|
|
99120
99179
|
"innerBorder": {
|
|
99121
99180
|
"$ref": "#/definitions/Partial<IBorderStyle>"
|
|
99122
99181
|
},
|
|
99182
|
+
"keepCenterInLine": {
|
|
99183
|
+
"type": "boolean"
|
|
99184
|
+
},
|
|
99123
99185
|
"keepDirIn3d": {
|
|
99124
99186
|
"type": "boolean"
|
|
99125
99187
|
},
|
|
@@ -99160,6 +99222,12 @@
|
|
|
99160
99222
|
"maxLineWidth": {
|
|
99161
99223
|
"type": "number"
|
|
99162
99224
|
},
|
|
99225
|
+
"maxWidth": {
|
|
99226
|
+
"type": "number"
|
|
99227
|
+
},
|
|
99228
|
+
"measureMode": {
|
|
99229
|
+
"$ref": "#/definitions/MeasureModeEnum"
|
|
99230
|
+
},
|
|
99163
99231
|
"miterLimit": {
|
|
99164
99232
|
"type": "number"
|
|
99165
99233
|
},
|
|
@@ -100356,6 +100424,9 @@
|
|
|
100356
100424
|
"innerBorder": {
|
|
100357
100425
|
"$ref": "#/definitions/Partial<IBorderStyle>"
|
|
100358
100426
|
},
|
|
100427
|
+
"keepCenterInLine": {
|
|
100428
|
+
"type": "boolean"
|
|
100429
|
+
},
|
|
100359
100430
|
"keepDirIn3d": {
|
|
100360
100431
|
"type": "boolean"
|
|
100361
100432
|
},
|
|
@@ -100396,6 +100467,12 @@
|
|
|
100396
100467
|
"maxLineWidth": {
|
|
100397
100468
|
"type": "number"
|
|
100398
100469
|
},
|
|
100470
|
+
"maxWidth": {
|
|
100471
|
+
"type": "number"
|
|
100472
|
+
},
|
|
100473
|
+
"measureMode": {
|
|
100474
|
+
"$ref": "#/definitions/MeasureModeEnum"
|
|
100475
|
+
},
|
|
100399
100476
|
"miterLimit": {
|
|
100400
100477
|
"type": "number"
|
|
100401
100478
|
},
|
|
@@ -102452,6 +102529,9 @@
|
|
|
102452
102529
|
"mosaic": {
|
|
102453
102530
|
"$ref": "#/definitions/ColorScheme"
|
|
102454
102531
|
},
|
|
102532
|
+
"pictogram": {
|
|
102533
|
+
"$ref": "#/definitions/ColorScheme"
|
|
102534
|
+
},
|
|
102455
102535
|
"pie": {
|
|
102456
102536
|
"$ref": "#/definitions/ColorScheme"
|
|
102457
102537
|
},
|
|
@@ -103827,34 +103907,34 @@
|
|
|
103827
103907
|
},
|
|
103828
103908
|
"Promise<FontFaceSet>": {
|
|
103829
103909
|
"properties": {
|
|
103830
|
-
"__@toStringTag@
|
|
103910
|
+
"__@toStringTag@15543": {
|
|
103831
103911
|
"type": "string"
|
|
103832
103912
|
}
|
|
103833
103913
|
},
|
|
103834
103914
|
"required": [
|
|
103835
|
-
"__@toStringTag@
|
|
103915
|
+
"__@toStringTag@15543"
|
|
103836
103916
|
],
|
|
103837
103917
|
"type": "object"
|
|
103838
103918
|
},
|
|
103839
103919
|
"Promise<ServiceWorkerRegistration>": {
|
|
103840
103920
|
"properties": {
|
|
103841
|
-
"__@toStringTag@
|
|
103921
|
+
"__@toStringTag@15543": {
|
|
103842
103922
|
"type": "string"
|
|
103843
103923
|
}
|
|
103844
103924
|
},
|
|
103845
103925
|
"required": [
|
|
103846
|
-
"__@toStringTag@
|
|
103926
|
+
"__@toStringTag@15543"
|
|
103847
103927
|
],
|
|
103848
103928
|
"type": "object"
|
|
103849
103929
|
},
|
|
103850
103930
|
"Promise<any>": {
|
|
103851
103931
|
"properties": {
|
|
103852
|
-
"__@toStringTag@
|
|
103932
|
+
"__@toStringTag@15543": {
|
|
103853
103933
|
"type": "string"
|
|
103854
103934
|
}
|
|
103855
103935
|
},
|
|
103856
103936
|
"required": [
|
|
103857
|
-
"__@toStringTag@
|
|
103937
|
+
"__@toStringTag@15543"
|
|
103858
103938
|
],
|
|
103859
103939
|
"type": "object"
|
|
103860
103940
|
},
|
|
@@ -110641,6 +110721,9 @@
|
|
|
110641
110721
|
"innerBorder": {
|
|
110642
110722
|
"$ref": "#/definitions/Partial<IBorderStyle>"
|
|
110643
110723
|
},
|
|
110724
|
+
"keepCenterInLine": {
|
|
110725
|
+
"type": "boolean"
|
|
110726
|
+
},
|
|
110644
110727
|
"keepDirIn3d": {
|
|
110645
110728
|
"type": "boolean"
|
|
110646
110729
|
},
|
|
@@ -110690,6 +110773,9 @@
|
|
|
110690
110773
|
"maxWidth": {
|
|
110691
110774
|
"type": "number"
|
|
110692
110775
|
},
|
|
110776
|
+
"measureMode": {
|
|
110777
|
+
"$ref": "#/definitions/MeasureModeEnum"
|
|
110778
|
+
},
|
|
110693
110779
|
"miterLimit": {
|
|
110694
110780
|
"type": "number"
|
|
110695
110781
|
},
|
|
@@ -110997,6 +111083,7 @@
|
|
|
110997
111083
|
"html",
|
|
110998
111084
|
"ignoreBuf",
|
|
110999
111085
|
"innerBorder",
|
|
111086
|
+
"keepCenterInLine",
|
|
111000
111087
|
"keepDirIn3d",
|
|
111001
111088
|
"keepStrokeScale",
|
|
111002
111089
|
"layout",
|
|
@@ -111012,6 +111099,7 @@
|
|
|
111012
111099
|
"maxHeight",
|
|
111013
111100
|
"maxLineWidth",
|
|
111014
111101
|
"maxWidth",
|
|
111102
|
+
"measureMode",
|
|
111015
111103
|
"miterLimit",
|
|
111016
111104
|
"opacity",
|
|
111017
111105
|
"outerBorder",
|
|
@@ -112636,6 +112724,9 @@
|
|
|
112636
112724
|
"innerBorder": {
|
|
112637
112725
|
"$ref": "#/definitions/Partial<IBorderStyle>"
|
|
112638
112726
|
},
|
|
112727
|
+
"keepCenterInLine": {
|
|
112728
|
+
"type": "boolean"
|
|
112729
|
+
},
|
|
112639
112730
|
"keepDirIn3d": {
|
|
112640
112731
|
"type": "boolean"
|
|
112641
112732
|
},
|
|
@@ -112676,6 +112767,12 @@
|
|
|
112676
112767
|
"maxLineWidth": {
|
|
112677
112768
|
"type": "number"
|
|
112678
112769
|
},
|
|
112770
|
+
"maxWidth": {
|
|
112771
|
+
"type": "number"
|
|
112772
|
+
},
|
|
112773
|
+
"measureMode": {
|
|
112774
|
+
"$ref": "#/definitions/MeasureModeEnum"
|
|
112775
|
+
},
|
|
112679
112776
|
"miterLimit": {
|
|
112680
112777
|
"type": "number"
|
|
112681
112778
|
},
|
|
@@ -112966,6 +113063,7 @@
|
|
|
112966
113063
|
"html",
|
|
112967
113064
|
"ignoreBuf",
|
|
112968
113065
|
"innerBorder",
|
|
113066
|
+
"keepCenterInLine",
|
|
112969
113067
|
"keepDirIn3d",
|
|
112970
113068
|
"keepStrokeScale",
|
|
112971
113069
|
"layout",
|
|
@@ -112978,6 +113076,8 @@
|
|
|
112978
113076
|
"lineThrough",
|
|
112979
113077
|
"lineWidth",
|
|
112980
113078
|
"maxLineWidth",
|
|
113079
|
+
"maxWidth",
|
|
113080
|
+
"measureMode",
|
|
112981
113081
|
"miterLimit",
|
|
112982
113082
|
"opacity",
|
|
112983
113083
|
"outerBorder",
|
|
@@ -116685,6 +116785,9 @@
|
|
|
116685
116785
|
},
|
|
116686
116786
|
"TooltipContentProperty<ITooltipTextTheme<string>>": {
|
|
116687
116787
|
"anyOf": [
|
|
116788
|
+
{
|
|
116789
|
+
"typeof": "function"
|
|
116790
|
+
},
|
|
116688
116791
|
{
|
|
116689
116792
|
"$ref": "#/definitions/ITooltipTextTheme<string>"
|
|
116690
116793
|
},
|
|
@@ -116695,6 +116798,9 @@
|
|
|
116695
116798
|
},
|
|
116696
116799
|
"TooltipContentProperty<boolean>": {
|
|
116697
116800
|
"anyOf": [
|
|
116801
|
+
{
|
|
116802
|
+
"typeof": "function"
|
|
116803
|
+
},
|
|
116698
116804
|
{
|
|
116699
116805
|
"typeof": "function"
|
|
116700
116806
|
},
|
|
@@ -116705,6 +116811,9 @@
|
|
|
116705
116811
|
},
|
|
116706
116812
|
"TooltipContentProperty<number>": {
|
|
116707
116813
|
"anyOf": [
|
|
116814
|
+
{
|
|
116815
|
+
"typeof": "function"
|
|
116816
|
+
},
|
|
116708
116817
|
{
|
|
116709
116818
|
"typeof": "function"
|
|
116710
116819
|
},
|
|
@@ -116715,6 +116824,9 @@
|
|
|
116715
116824
|
},
|
|
116716
116825
|
"TooltipContentProperty<string>": {
|
|
116717
116826
|
"anyOf": [
|
|
116827
|
+
{
|
|
116828
|
+
"typeof": "function"
|
|
116829
|
+
},
|
|
116718
116830
|
{
|
|
116719
116831
|
"typeof": "function"
|
|
116720
116832
|
},
|
|
@@ -116731,6 +116843,9 @@
|
|
|
116731
116843
|
{
|
|
116732
116844
|
"typeof": "function"
|
|
116733
116845
|
},
|
|
116846
|
+
{
|
|
116847
|
+
"typeof": "function"
|
|
116848
|
+
},
|
|
116734
116849
|
{
|
|
116735
116850
|
"type": "string"
|
|
116736
116851
|
}
|