losant_rest 1.10.2 → 1.12.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (143) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/docs/_schemas.md +21561 -8561
  4. data/docs/application.md +83 -0
  5. data/docs/applicationApiTokens.md +2 -2
  6. data/docs/applicationCertificateAuthorities.md +1 -1
  7. data/docs/applicationCertificates.md +1 -1
  8. data/docs/applicationDashboard.md +133 -0
  9. data/docs/applicationDashboards.md +93 -0
  10. data/docs/applicationKeys.md +4 -3
  11. data/docs/applicationTemplate.md +46 -0
  12. data/docs/applicationTemplates.md +77 -2
  13. data/docs/applications.md +1 -1
  14. data/docs/auditLogs.md +1 -1
  15. data/docs/dashboards.md +1 -1
  16. data/docs/dataTables.md +1 -1
  17. data/docs/device.md +6 -3
  18. data/docs/deviceRecipes.md +1 -1
  19. data/docs/devices.md +130 -4
  20. data/docs/edgeDeployments.md +1 -1
  21. data/docs/events.md +1 -1
  22. data/docs/experienceEndpoint.md +1 -0
  23. data/docs/experienceEndpoints.md +1 -0
  24. data/docs/experienceGroups.md +1 -1
  25. data/docs/experienceUsers.md +1 -1
  26. data/docs/experienceVersions.md +1 -1
  27. data/docs/experienceViews.md +1 -1
  28. data/docs/file.md +4 -4
  29. data/docs/files.md +1 -1
  30. data/docs/flow.md +94 -1
  31. data/docs/flowVersion.md +96 -1
  32. data/docs/flowVersions.md +2 -1
  33. data/docs/flows.md +5 -2
  34. data/docs/integration.md +1 -0
  35. data/docs/integrations.md +1 -1
  36. data/docs/me.md +0 -36
  37. data/docs/notebooks.md +1 -1
  38. data/docs/orgs.md +1 -1
  39. data/docs/webhook.md +1 -0
  40. data/docs/webhooks.md +1 -1
  41. data/lib/losant_rest.rb +3 -0
  42. data/lib/losant_rest/application.rb +95 -0
  43. data/lib/losant_rest/application_api_tokens.rb +1 -1
  44. data/lib/losant_rest/application_dashboard.rb +176 -0
  45. data/lib/losant_rest/application_dashboards.rb +138 -0
  46. data/lib/losant_rest/application_keys.rb +3 -0
  47. data/lib/losant_rest/application_template.rb +79 -0
  48. data/lib/losant_rest/application_templates.rb +89 -1
  49. data/lib/losant_rest/client.rb +14 -2
  50. data/lib/losant_rest/device.rb +9 -3
  51. data/lib/losant_rest/devices.rb +154 -1
  52. data/lib/losant_rest/experience_endpoint.rb +2 -0
  53. data/lib/losant_rest/experience_endpoints.rb +2 -0
  54. data/lib/losant_rest/file.rb +3 -3
  55. data/lib/losant_rest/flow.rb +115 -1
  56. data/lib/losant_rest/flow_version.rb +115 -1
  57. data/lib/losant_rest/flow_versions.rb +3 -0
  58. data/lib/losant_rest/flows.rb +8 -0
  59. data/lib/losant_rest/integration.rb +2 -0
  60. data/lib/losant_rest/me.rb +0 -41
  61. data/lib/losant_rest/version.rb +1 -1
  62. data/lib/losant_rest/webhook.rb +2 -0
  63. data/schemas/advancedApplicationKeyQuery.json +1082 -0
  64. data/schemas/advancedFlowByVersionQuery.json +665 -0
  65. data/schemas/advancedFlowQuery.json +883 -0
  66. data/schemas/advancedFlowVersionQuery.json +925 -0
  67. data/schemas/application.json +8 -0
  68. data/schemas/applicationApiTokenPost.json +16 -1
  69. data/schemas/applicationApplyTemplatePatch.json +19 -0
  70. data/schemas/applicationCreationByTemplateResult.json +8 -0
  71. data/schemas/applicationDashboardPost.json +5665 -0
  72. data/schemas/applicationGlobalPatch.json +33 -0
  73. data/schemas/applicationPost.json +8 -0
  74. data/schemas/applicationTemplate.json +20 -0
  75. data/schemas/applicationTemplateCategories.json +43 -0
  76. data/schemas/applicationTemplateCategory.json +23 -0
  77. data/schemas/applicationTemplates.json +32 -0
  78. data/schemas/applications.json +8 -0
  79. data/schemas/attributeNamesResponse.json +14 -0
  80. data/schemas/authedUser.json +3 -0
  81. data/schemas/changePassword.json +2 -2
  82. data/schemas/dashboard.json +195 -26
  83. data/schemas/dashboardPatch.json +195 -26
  84. data/schemas/dashboardPost.json +195 -26
  85. data/schemas/dashboards.json +195 -26
  86. data/schemas/dataExport.json +132 -1
  87. data/schemas/deviceAttributeDataTypeFilter.json +29 -0
  88. data/schemas/deviceClassFilter.json +1 -2
  89. data/schemas/eventPost.json +22 -0
  90. data/schemas/experienceDomain.json +1 -1
  91. data/schemas/experienceDomainPatch.json +1 -1
  92. data/schemas/experienceDomainPost.json +1 -1
  93. data/schemas/experienceDomains.json +1 -1
  94. data/schemas/experienceLinkedResources.json +96 -0
  95. data/schemas/experienceVersion.json +10 -1
  96. data/schemas/experienceVersionPatch.json +9 -0
  97. data/schemas/experienceVersions.json +10 -1
  98. data/schemas/files.json +3 -0
  99. data/schemas/flow.json +32 -0
  100. data/schemas/flowErrors.json +87 -0
  101. data/schemas/flowPatch.json +32 -0
  102. data/schemas/flowPost.json +32 -0
  103. data/schemas/flowStats.json +54 -0
  104. data/schemas/flowVersion.json +64 -0
  105. data/schemas/flowVersionPost.json +32 -0
  106. data/schemas/flowVersions.json +64 -0
  107. data/schemas/flows.json +32 -0
  108. data/schemas/flowsImportPost.json +64 -0
  109. data/schemas/flowsImportResult.json +96 -0
  110. data/schemas/githubLogin.json +33 -4
  111. data/schemas/instance.json +132 -0
  112. data/schemas/instanceOrg.json +119 -0
  113. data/schemas/instanceOrgPatch.json +103 -0
  114. data/schemas/instanceOrgPost.json +114 -0
  115. data/schemas/instanceOrgs.json +160 -0
  116. data/schemas/instances.json +43 -0
  117. data/schemas/integration.json +3 -0
  118. data/schemas/integrationPatch.json +3 -0
  119. data/schemas/integrationPost.json +3 -0
  120. data/schemas/integrations.json +3 -0
  121. data/schemas/me.json +3 -3
  122. data/schemas/mePatch.json +2 -2
  123. data/schemas/notebook.json +96 -0
  124. data/schemas/notebookExecutionLogs.json +7 -0
  125. data/schemas/notebookPatch.json +96 -0
  126. data/schemas/notebookPost.json +96 -0
  127. data/schemas/notebooks.json +96 -0
  128. data/schemas/org.json +1 -1
  129. data/schemas/orgInviteInfo.json +3 -0
  130. data/schemas/orgInvitePost.json +3 -0
  131. data/schemas/orgInvites.json +3 -0
  132. data/schemas/orgPatch.json +1 -1
  133. data/schemas/orgs.json +1 -1
  134. data/schemas/passwordResetFinish.json +2 -2
  135. data/schemas/samlResponse.json +1 -1
  136. data/schemas/tagKeysResponse.json +14 -0
  137. data/schemas/tagValuesResponse.json +19 -0
  138. data/schemas/templateKeywords.json +14 -0
  139. data/schemas/timeSeriesData.json +12 -2
  140. data/schemas/timeSeriesQuery.json +94 -14
  141. data/schemas/userCredentials.json +31 -3
  142. data/schemas/userPost.json +39 -7
  143. metadata +34 -6
@@ -231,8 +231,18 @@
231
231
  "type": "object",
232
232
  "properties": {
233
233
  "value": {
234
- "type": "string",
235
- "maxLength": 255
234
+ "oneOf": [
235
+ {
236
+ "type": "string",
237
+ "maxLength": 255
238
+ },
239
+ {
240
+ "type": "number"
241
+ },
242
+ {
243
+ "type": "boolean"
244
+ }
245
+ ]
236
246
  }
237
247
  },
238
248
  "additionalProperties": false,
@@ -287,6 +297,10 @@
287
297
  "type": "string",
288
298
  "maxLength": 255
289
299
  },
300
+ "expression": {
301
+ "type": "string",
302
+ "maxLength": 255
303
+ },
290
304
  "yAxisLabel": {
291
305
  "type": "string",
292
306
  "maxLength": 255
@@ -481,8 +495,18 @@
481
495
  "type": "object",
482
496
  "properties": {
483
497
  "value": {
484
- "type": "string",
485
- "maxLength": 255
498
+ "oneOf": [
499
+ {
500
+ "type": "string",
501
+ "maxLength": 255
502
+ },
503
+ {
504
+ "type": "number"
505
+ },
506
+ {
507
+ "type": "boolean"
508
+ }
509
+ ]
486
510
  }
487
511
  },
488
512
  "additionalProperties": false,
@@ -644,8 +668,18 @@
644
668
  "type": "object",
645
669
  "properties": {
646
670
  "value": {
647
- "type": "string",
648
- "maxLength": 255
671
+ "oneOf": [
672
+ {
673
+ "type": "string",
674
+ "maxLength": 255
675
+ },
676
+ {
677
+ "type": "number"
678
+ },
679
+ {
680
+ "type": "boolean"
681
+ }
682
+ ]
649
683
  }
650
684
  },
651
685
  "additionalProperties": false,
@@ -882,6 +916,24 @@
882
916
  "$and",
883
917
  "advanced"
884
918
  ]
919
+ },
920
+ "columns": {
921
+ "type": "array",
922
+ "maxItems": 100,
923
+ "items": {
924
+ "type": "object",
925
+ "properties": {
926
+ "id": {
927
+ "type": "string",
928
+ "maxLength": 48
929
+ },
930
+ "type": {
931
+ "type": "string",
932
+ "pattern": "^[0-9a-zA-Z_-]{1,255}$"
933
+ }
934
+ },
935
+ "additionalProperties": false
936
+ }
885
937
  }
886
938
  },
887
939
  "additionalProperties": false
@@ -1149,6 +1201,9 @@
1149
1201
  "type": "string",
1150
1202
  "maxLength": 255
1151
1203
  }
1204
+ },
1205
+ "includeDeviceInfo": {
1206
+ "type": "boolean"
1152
1207
  }
1153
1208
  },
1154
1209
  "additionalProperties": false
@@ -1423,8 +1478,17 @@
1423
1478
  "state",
1424
1479
  "tag",
1425
1480
  "deviceName",
1426
- "sourceId"
1481
+ "sourceId",
1482
+ "custom"
1427
1483
  ]
1484
+ },
1485
+ "headerTemplate": {
1486
+ "type": "string",
1487
+ "maxLength": 1024
1488
+ },
1489
+ "rowTemplate": {
1490
+ "type": "string",
1491
+ "maxLength": 32767
1428
1492
  }
1429
1493
  },
1430
1494
  "additionalProperties": false
@@ -1626,8 +1690,18 @@
1626
1690
  "type": "object",
1627
1691
  "properties": {
1628
1692
  "value": {
1629
- "type": "string",
1630
- "maxLength": 255
1693
+ "oneOf": [
1694
+ {
1695
+ "type": "string",
1696
+ "maxLength": 255
1697
+ },
1698
+ {
1699
+ "type": "number"
1700
+ },
1701
+ {
1702
+ "type": "boolean"
1703
+ }
1704
+ ]
1631
1705
  }
1632
1706
  },
1633
1707
  "additionalProperties": false,
@@ -1682,6 +1756,10 @@
1682
1756
  "type": "string",
1683
1757
  "maxLength": 255
1684
1758
  },
1759
+ "expression": {
1760
+ "type": "string",
1761
+ "maxLength": 255
1762
+ },
1685
1763
  "yAxisLabel": {
1686
1764
  "type": "string",
1687
1765
  "maxLength": 255
@@ -1912,8 +1990,18 @@
1912
1990
  "type": "object",
1913
1991
  "properties": {
1914
1992
  "value": {
1915
- "type": "string",
1916
- "maxLength": 255
1993
+ "oneOf": [
1994
+ {
1995
+ "type": "string",
1996
+ "maxLength": 255
1997
+ },
1998
+ {
1999
+ "type": "number"
2000
+ },
2001
+ {
2002
+ "type": "boolean"
2003
+ }
2004
+ ]
1917
2005
  }
1918
2006
  },
1919
2007
  "additionalProperties": false,
@@ -2398,7 +2486,7 @@
2398
2486
  },
2399
2487
  "segments": {
2400
2488
  "type": "array",
2401
- "maxItems": 100,
2489
+ "maxItems": 300,
2402
2490
  "items": {
2403
2491
  "oneOf": [
2404
2492
  {
@@ -2494,8 +2582,18 @@
2494
2582
  "type": "object",
2495
2583
  "properties": {
2496
2584
  "value": {
2497
- "type": "string",
2498
- "maxLength": 255
2585
+ "oneOf": [
2586
+ {
2587
+ "type": "string",
2588
+ "maxLength": 255
2589
+ },
2590
+ {
2591
+ "type": "number"
2592
+ },
2593
+ {
2594
+ "type": "boolean"
2595
+ }
2596
+ ]
2499
2597
  }
2500
2598
  },
2501
2599
  "additionalProperties": false,
@@ -3088,8 +3186,18 @@
3088
3186
  "type": "object",
3089
3187
  "properties": {
3090
3188
  "value": {
3091
- "type": "string",
3092
- "maxLength": 255
3189
+ "oneOf": [
3190
+ {
3191
+ "type": "string",
3192
+ "maxLength": 255
3193
+ },
3194
+ {
3195
+ "type": "number"
3196
+ },
3197
+ {
3198
+ "type": "boolean"
3199
+ }
3200
+ ]
3093
3201
  }
3094
3202
  },
3095
3203
  "additionalProperties": false,
@@ -3144,6 +3252,10 @@
3144
3252
  "type": "string",
3145
3253
  "maxLength": 255
3146
3254
  },
3255
+ "expression": {
3256
+ "type": "string",
3257
+ "maxLength": 255
3258
+ },
3147
3259
  "yAxisLabel": {
3148
3260
  "type": "string",
3149
3261
  "maxLength": 255
@@ -3431,8 +3543,18 @@
3431
3543
  "type": "object",
3432
3544
  "properties": {
3433
3545
  "value": {
3434
- "type": "string",
3435
- "maxLength": 255
3546
+ "oneOf": [
3547
+ {
3548
+ "type": "string",
3549
+ "maxLength": 255
3550
+ },
3551
+ {
3552
+ "type": "number"
3553
+ },
3554
+ {
3555
+ "type": "boolean"
3556
+ }
3557
+ ]
3436
3558
  }
3437
3559
  },
3438
3560
  "additionalProperties": false,
@@ -3655,8 +3777,18 @@
3655
3777
  "type": "object",
3656
3778
  "properties": {
3657
3779
  "value": {
3658
- "type": "string",
3659
- "maxLength": 255
3780
+ "oneOf": [
3781
+ {
3782
+ "type": "string",
3783
+ "maxLength": 255
3784
+ },
3785
+ {
3786
+ "type": "number"
3787
+ },
3788
+ {
3789
+ "type": "boolean"
3790
+ }
3791
+ ]
3660
3792
  }
3661
3793
  },
3662
3794
  "additionalProperties": false,
@@ -3708,6 +3840,9 @@
3708
3840
  },
3709
3841
  "defaultValue": {
3710
3842
  "type": "boolean"
3843
+ },
3844
+ "includeLabel": {
3845
+ "type": "boolean"
3711
3846
  }
3712
3847
  },
3713
3848
  "additionalProperties": false
@@ -3834,8 +3969,18 @@
3834
3969
  "type": "object",
3835
3970
  "properties": {
3836
3971
  "value": {
3837
- "type": "string",
3838
- "maxLength": 255
3972
+ "oneOf": [
3973
+ {
3974
+ "type": "string",
3975
+ "maxLength": 255
3976
+ },
3977
+ {
3978
+ "type": "number"
3979
+ },
3980
+ {
3981
+ "type": "boolean"
3982
+ }
3983
+ ]
3839
3984
  }
3840
3985
  },
3841
3986
  "additionalProperties": false,
@@ -4014,8 +4159,18 @@
4014
4159
  "type": "object",
4015
4160
  "properties": {
4016
4161
  "value": {
4017
- "type": "string",
4018
- "maxLength": 255
4162
+ "oneOf": [
4163
+ {
4164
+ "type": "string",
4165
+ "maxLength": 255
4166
+ },
4167
+ {
4168
+ "type": "number"
4169
+ },
4170
+ {
4171
+ "type": "boolean"
4172
+ }
4173
+ ]
4019
4174
  }
4020
4175
  },
4021
4176
  "additionalProperties": false,
@@ -4664,8 +4819,18 @@
4664
4819
  "type": "object",
4665
4820
  "properties": {
4666
4821
  "value": {
4667
- "type": "string",
4668
- "maxLength": 255
4822
+ "oneOf": [
4823
+ {
4824
+ "type": "string",
4825
+ "maxLength": 255
4826
+ },
4827
+ {
4828
+ "type": "number"
4829
+ },
4830
+ {
4831
+ "type": "boolean"
4832
+ }
4833
+ ]
4669
4834
  }
4670
4835
  },
4671
4836
  "additionalProperties": false,
@@ -4720,6 +4885,10 @@
4720
4885
  "type": "string",
4721
4886
  "maxLength": 255
4722
4887
  },
4888
+ "expression": {
4889
+ "type": "string",
4890
+ "maxLength": 255
4891
+ },
4723
4892
  "yAxisLabel": {
4724
4893
  "type": "string",
4725
4894
  "maxLength": 255
@@ -239,8 +239,18 @@
239
239
  "type": "object",
240
240
  "properties": {
241
241
  "value": {
242
- "type": "string",
243
- "maxLength": 255
242
+ "oneOf": [
243
+ {
244
+ "type": "string",
245
+ "maxLength": 255
246
+ },
247
+ {
248
+ "type": "number"
249
+ },
250
+ {
251
+ "type": "boolean"
252
+ }
253
+ ]
244
254
  }
245
255
  },
246
256
  "additionalProperties": false,
@@ -295,6 +305,10 @@
295
305
  "type": "string",
296
306
  "maxLength": 255
297
307
  },
308
+ "expression": {
309
+ "type": "string",
310
+ "maxLength": 255
311
+ },
298
312
  "yAxisLabel": {
299
313
  "type": "string",
300
314
  "maxLength": 255
@@ -489,8 +503,18 @@
489
503
  "type": "object",
490
504
  "properties": {
491
505
  "value": {
492
- "type": "string",
493
- "maxLength": 255
506
+ "oneOf": [
507
+ {
508
+ "type": "string",
509
+ "maxLength": 255
510
+ },
511
+ {
512
+ "type": "number"
513
+ },
514
+ {
515
+ "type": "boolean"
516
+ }
517
+ ]
494
518
  }
495
519
  },
496
520
  "additionalProperties": false,
@@ -652,8 +676,18 @@
652
676
  "type": "object",
653
677
  "properties": {
654
678
  "value": {
655
- "type": "string",
656
- "maxLength": 255
679
+ "oneOf": [
680
+ {
681
+ "type": "string",
682
+ "maxLength": 255
683
+ },
684
+ {
685
+ "type": "number"
686
+ },
687
+ {
688
+ "type": "boolean"
689
+ }
690
+ ]
657
691
  }
658
692
  },
659
693
  "additionalProperties": false,
@@ -890,6 +924,24 @@
890
924
  "$and",
891
925
  "advanced"
892
926
  ]
927
+ },
928
+ "columns": {
929
+ "type": "array",
930
+ "maxItems": 100,
931
+ "items": {
932
+ "type": "object",
933
+ "properties": {
934
+ "id": {
935
+ "type": "string",
936
+ "maxLength": 48
937
+ },
938
+ "type": {
939
+ "type": "string",
940
+ "pattern": "^[0-9a-zA-Z_-]{1,255}$"
941
+ }
942
+ },
943
+ "additionalProperties": false
944
+ }
893
945
  }
894
946
  },
895
947
  "additionalProperties": false
@@ -1157,6 +1209,9 @@
1157
1209
  "type": "string",
1158
1210
  "maxLength": 255
1159
1211
  }
1212
+ },
1213
+ "includeDeviceInfo": {
1214
+ "type": "boolean"
1160
1215
  }
1161
1216
  },
1162
1217
  "additionalProperties": false
@@ -1431,8 +1486,17 @@
1431
1486
  "state",
1432
1487
  "tag",
1433
1488
  "deviceName",
1434
- "sourceId"
1489
+ "sourceId",
1490
+ "custom"
1435
1491
  ]
1492
+ },
1493
+ "headerTemplate": {
1494
+ "type": "string",
1495
+ "maxLength": 1024
1496
+ },
1497
+ "rowTemplate": {
1498
+ "type": "string",
1499
+ "maxLength": 32767
1436
1500
  }
1437
1501
  },
1438
1502
  "additionalProperties": false
@@ -1634,8 +1698,18 @@
1634
1698
  "type": "object",
1635
1699
  "properties": {
1636
1700
  "value": {
1637
- "type": "string",
1638
- "maxLength": 255
1701
+ "oneOf": [
1702
+ {
1703
+ "type": "string",
1704
+ "maxLength": 255
1705
+ },
1706
+ {
1707
+ "type": "number"
1708
+ },
1709
+ {
1710
+ "type": "boolean"
1711
+ }
1712
+ ]
1639
1713
  }
1640
1714
  },
1641
1715
  "additionalProperties": false,
@@ -1690,6 +1764,10 @@
1690
1764
  "type": "string",
1691
1765
  "maxLength": 255
1692
1766
  },
1767
+ "expression": {
1768
+ "type": "string",
1769
+ "maxLength": 255
1770
+ },
1693
1771
  "yAxisLabel": {
1694
1772
  "type": "string",
1695
1773
  "maxLength": 255
@@ -1920,8 +1998,18 @@
1920
1998
  "type": "object",
1921
1999
  "properties": {
1922
2000
  "value": {
1923
- "type": "string",
1924
- "maxLength": 255
2001
+ "oneOf": [
2002
+ {
2003
+ "type": "string",
2004
+ "maxLength": 255
2005
+ },
2006
+ {
2007
+ "type": "number"
2008
+ },
2009
+ {
2010
+ "type": "boolean"
2011
+ }
2012
+ ]
1925
2013
  }
1926
2014
  },
1927
2015
  "additionalProperties": false,
@@ -2406,7 +2494,7 @@
2406
2494
  },
2407
2495
  "segments": {
2408
2496
  "type": "array",
2409
- "maxItems": 100,
2497
+ "maxItems": 300,
2410
2498
  "items": {
2411
2499
  "oneOf": [
2412
2500
  {
@@ -2502,8 +2590,18 @@
2502
2590
  "type": "object",
2503
2591
  "properties": {
2504
2592
  "value": {
2505
- "type": "string",
2506
- "maxLength": 255
2593
+ "oneOf": [
2594
+ {
2595
+ "type": "string",
2596
+ "maxLength": 255
2597
+ },
2598
+ {
2599
+ "type": "number"
2600
+ },
2601
+ {
2602
+ "type": "boolean"
2603
+ }
2604
+ ]
2507
2605
  }
2508
2606
  },
2509
2607
  "additionalProperties": false,
@@ -3096,8 +3194,18 @@
3096
3194
  "type": "object",
3097
3195
  "properties": {
3098
3196
  "value": {
3099
- "type": "string",
3100
- "maxLength": 255
3197
+ "oneOf": [
3198
+ {
3199
+ "type": "string",
3200
+ "maxLength": 255
3201
+ },
3202
+ {
3203
+ "type": "number"
3204
+ },
3205
+ {
3206
+ "type": "boolean"
3207
+ }
3208
+ ]
3101
3209
  }
3102
3210
  },
3103
3211
  "additionalProperties": false,
@@ -3152,6 +3260,10 @@
3152
3260
  "type": "string",
3153
3261
  "maxLength": 255
3154
3262
  },
3263
+ "expression": {
3264
+ "type": "string",
3265
+ "maxLength": 255
3266
+ },
3155
3267
  "yAxisLabel": {
3156
3268
  "type": "string",
3157
3269
  "maxLength": 255
@@ -3439,8 +3551,18 @@
3439
3551
  "type": "object",
3440
3552
  "properties": {
3441
3553
  "value": {
3442
- "type": "string",
3443
- "maxLength": 255
3554
+ "oneOf": [
3555
+ {
3556
+ "type": "string",
3557
+ "maxLength": 255
3558
+ },
3559
+ {
3560
+ "type": "number"
3561
+ },
3562
+ {
3563
+ "type": "boolean"
3564
+ }
3565
+ ]
3444
3566
  }
3445
3567
  },
3446
3568
  "additionalProperties": false,
@@ -3663,8 +3785,18 @@
3663
3785
  "type": "object",
3664
3786
  "properties": {
3665
3787
  "value": {
3666
- "type": "string",
3667
- "maxLength": 255
3788
+ "oneOf": [
3789
+ {
3790
+ "type": "string",
3791
+ "maxLength": 255
3792
+ },
3793
+ {
3794
+ "type": "number"
3795
+ },
3796
+ {
3797
+ "type": "boolean"
3798
+ }
3799
+ ]
3668
3800
  }
3669
3801
  },
3670
3802
  "additionalProperties": false,
@@ -3716,6 +3848,9 @@
3716
3848
  },
3717
3849
  "defaultValue": {
3718
3850
  "type": "boolean"
3851
+ },
3852
+ "includeLabel": {
3853
+ "type": "boolean"
3719
3854
  }
3720
3855
  },
3721
3856
  "additionalProperties": false
@@ -3842,8 +3977,18 @@
3842
3977
  "type": "object",
3843
3978
  "properties": {
3844
3979
  "value": {
3845
- "type": "string",
3846
- "maxLength": 255
3980
+ "oneOf": [
3981
+ {
3982
+ "type": "string",
3983
+ "maxLength": 255
3984
+ },
3985
+ {
3986
+ "type": "number"
3987
+ },
3988
+ {
3989
+ "type": "boolean"
3990
+ }
3991
+ ]
3847
3992
  }
3848
3993
  },
3849
3994
  "additionalProperties": false,
@@ -4022,8 +4167,18 @@
4022
4167
  "type": "object",
4023
4168
  "properties": {
4024
4169
  "value": {
4025
- "type": "string",
4026
- "maxLength": 255
4170
+ "oneOf": [
4171
+ {
4172
+ "type": "string",
4173
+ "maxLength": 255
4174
+ },
4175
+ {
4176
+ "type": "number"
4177
+ },
4178
+ {
4179
+ "type": "boolean"
4180
+ }
4181
+ ]
4027
4182
  }
4028
4183
  },
4029
4184
  "additionalProperties": false,
@@ -4672,8 +4827,18 @@
4672
4827
  "type": "object",
4673
4828
  "properties": {
4674
4829
  "value": {
4675
- "type": "string",
4676
- "maxLength": 255
4830
+ "oneOf": [
4831
+ {
4832
+ "type": "string",
4833
+ "maxLength": 255
4834
+ },
4835
+ {
4836
+ "type": "number"
4837
+ },
4838
+ {
4839
+ "type": "boolean"
4840
+ }
4841
+ ]
4677
4842
  }
4678
4843
  },
4679
4844
  "additionalProperties": false,
@@ -4728,6 +4893,10 @@
4728
4893
  "type": "string",
4729
4894
  "maxLength": 255
4730
4895
  },
4896
+ "expression": {
4897
+ "type": "string",
4898
+ "maxLength": 255
4899
+ },
4731
4900
  "yAxisLabel": {
4732
4901
  "type": "string",
4733
4902
  "maxLength": 255