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
@@ -0,0 +1,33 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-04/schema#",
3
+ "type": "array",
4
+ "maxItems": 100,
5
+ "items": {
6
+ "type": "object",
7
+ "properties": {
8
+ "key": {
9
+ "type": "string",
10
+ "pattern": "^[0-9a-zA-Z_-]{1,255}$"
11
+ },
12
+ "json": {
13
+ "type": [
14
+ "string",
15
+ "null"
16
+ ],
17
+ "minLength": 1,
18
+ "maxLength": 32767
19
+ },
20
+ "cloudOnly": {
21
+ "type": "boolean"
22
+ },
23
+ "description": {
24
+ "type": "string",
25
+ "maxLength": 1024
26
+ }
27
+ },
28
+ "additionalProperties": false,
29
+ "required": [
30
+ "key"
31
+ ]
32
+ }
33
+ }
@@ -19,6 +19,14 @@
19
19
  "type": "string",
20
20
  "maxLength": 1024
21
21
  },
22
+ "appliedTemplateIds": {
23
+ "type": "array",
24
+ "items": {
25
+ "type": "string",
26
+ "pattern": "^[A-Fa-f\\d]{24}$"
27
+ },
28
+ "maxItems": 1000
29
+ },
22
30
  "endpointSlug": {
23
31
  "type": "string",
24
32
  "minLength": 4,
@@ -19,6 +19,26 @@
19
19
  "minLength": 1,
20
20
  "maxLength": 255
21
21
  },
22
+ "readme": {
23
+ "type": "string",
24
+ "maxLength": 131072
25
+ },
26
+ "categoryIds": {
27
+ "type": "array",
28
+ "items": {
29
+ "type": "string",
30
+ "pattern": "^[A-Fa-f\\d]{24}$"
31
+ },
32
+ "maxItems": 1000
33
+ },
34
+ "keywords": {
35
+ "type": "array",
36
+ "items": {
37
+ "type": "string",
38
+ "pattern": "^[0-9a-zA-Z_-]{1,255}$"
39
+ },
40
+ "maxItems": 100
41
+ },
22
42
  "description": {
23
43
  "type": "string",
24
44
  "maxLength": 1024
@@ -0,0 +1,43 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-04/schema#",
3
+ "type": "object",
4
+ "properties": {
5
+ "items": {
6
+ "type": "array",
7
+ "items": {
8
+ "title": "Application Template Category",
9
+ "description": "Schema for a single Application Template Category",
10
+ "type": "object",
11
+ "properties": {
12
+ "id": {
13
+ "type": "string",
14
+ "pattern": "^[A-Fa-f\\d]{24}$"
15
+ },
16
+ "parentId": {
17
+ "type": "string",
18
+ "pattern": "^[A-Fa-f\\d]{24}$"
19
+ },
20
+ "name": {
21
+ "type": "string",
22
+ "minLength": 1,
23
+ "maxLength": 255
24
+ },
25
+ "description": {
26
+ "type": "string",
27
+ "maxLength": 32767
28
+ }
29
+ }
30
+ }
31
+ },
32
+ "baseId": {
33
+ "type": "string",
34
+ "pattern": "^[A-Fa-f\\d]{24}$"
35
+ },
36
+ "count": {
37
+ "type": "integer"
38
+ },
39
+ "totalCount": {
40
+ "type": "integer"
41
+ }
42
+ }
43
+ }
@@ -0,0 +1,23 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-04/schema#",
3
+ "type": "object",
4
+ "properties": {
5
+ "id": {
6
+ "type": "string",
7
+ "pattern": "^[A-Fa-f\\d]{24}$"
8
+ },
9
+ "parentId": {
10
+ "type": "string",
11
+ "pattern": "^[A-Fa-f\\d]{24}$"
12
+ },
13
+ "name": {
14
+ "type": "string",
15
+ "minLength": 1,
16
+ "maxLength": 255
17
+ },
18
+ "description": {
19
+ "type": "string",
20
+ "maxLength": 32767
21
+ }
22
+ }
23
+ }
@@ -26,6 +26,26 @@
26
26
  "minLength": 1,
27
27
  "maxLength": 255
28
28
  },
29
+ "readme": {
30
+ "type": "string",
31
+ "maxLength": 131072
32
+ },
33
+ "categoryIds": {
34
+ "type": "array",
35
+ "items": {
36
+ "type": "string",
37
+ "pattern": "^[A-Fa-f\\d]{24}$"
38
+ },
39
+ "maxItems": 1000
40
+ },
41
+ "keywords": {
42
+ "type": "array",
43
+ "items": {
44
+ "type": "string",
45
+ "pattern": "^[0-9a-zA-Z_-]{1,255}$"
46
+ },
47
+ "maxItems": 100
48
+ },
29
49
  "description": {
30
50
  "type": "string",
31
51
  "maxLength": 1024
@@ -123,6 +143,18 @@
123
143
  "filterField": {
124
144
  "type": "string"
125
145
  },
146
+ "categoryId": {
147
+ "type": "string",
148
+ "pattern": "^[A-Fa-f\\d]{24}$"
149
+ },
150
+ "keywords": {
151
+ "type": "array",
152
+ "items": {
153
+ "type": "string",
154
+ "pattern": "^[0-9a-zA-Z_-]{1,255}$"
155
+ },
156
+ "maxItems": 100
157
+ },
126
158
  "sortField": {
127
159
  "type": "string"
128
160
  },
@@ -25,6 +25,14 @@
25
25
  "type": "string",
26
26
  "format": "date-time"
27
27
  },
28
+ "appliedTemplateIds": {
29
+ "type": "array",
30
+ "items": {
31
+ "type": "string",
32
+ "pattern": "^[A-Fa-f\\d]{24}$"
33
+ },
34
+ "maxItems": 1000
35
+ },
28
36
  "ownerId": {
29
37
  "type": "string",
30
38
  "pattern": "^[A-Fa-f\\d]{24}$"
@@ -0,0 +1,14 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-04/schema#",
3
+ "type": "object",
4
+ "properties": {
5
+ "attributeNames": {
6
+ "type": "array",
7
+ "items": {
8
+ "type": "string",
9
+ "pattern": "^[0-9a-zA-Z_-]{1,255}$"
10
+ },
11
+ "maxItems": 1000
12
+ }
13
+ }
14
+ }
@@ -9,6 +9,9 @@
9
9
  "token": {
10
10
  "type": "string",
11
11
  "minLength": 1
12
+ },
13
+ "needsToVerifyEmail": {
14
+ "type": "boolean"
12
15
  }
13
16
  },
14
17
  "required": [
@@ -13,9 +13,9 @@
13
13
  },
14
14
  "newPassword": {
15
15
  "type": "string",
16
- "minLength": 8,
16
+ "minLength": 12,
17
17
  "maxLength": 2048,
18
- "pattern": "^(?=.*[A-Z])(?=.*[^A-z0-9])(?=.*[0-9])(?=.*[a-z]).{8,}$"
18
+ "pattern": "^(?=.*[A-Z])(?=.*[^A-Za-z0-9])(?=.*[0-9])(?=.*[a-z]).{12,}$"
19
19
  },
20
20
  "invalidateExistingTokens": {
21
21
  "type": "boolean"
@@ -349,8 +349,18 @@
349
349
  "type": "object",
350
350
  "properties": {
351
351
  "value": {
352
- "type": "string",
353
- "maxLength": 255
352
+ "oneOf": [
353
+ {
354
+ "type": "string",
355
+ "maxLength": 255
356
+ },
357
+ {
358
+ "type": "number"
359
+ },
360
+ {
361
+ "type": "boolean"
362
+ }
363
+ ]
354
364
  }
355
365
  },
356
366
  "additionalProperties": false,
@@ -405,6 +415,10 @@
405
415
  "type": "string",
406
416
  "maxLength": 255
407
417
  },
418
+ "expression": {
419
+ "type": "string",
420
+ "maxLength": 255
421
+ },
408
422
  "yAxisLabel": {
409
423
  "type": "string",
410
424
  "maxLength": 255
@@ -599,8 +613,18 @@
599
613
  "type": "object",
600
614
  "properties": {
601
615
  "value": {
602
- "type": "string",
603
- "maxLength": 255
616
+ "oneOf": [
617
+ {
618
+ "type": "string",
619
+ "maxLength": 255
620
+ },
621
+ {
622
+ "type": "number"
623
+ },
624
+ {
625
+ "type": "boolean"
626
+ }
627
+ ]
604
628
  }
605
629
  },
606
630
  "additionalProperties": false,
@@ -762,8 +786,18 @@
762
786
  "type": "object",
763
787
  "properties": {
764
788
  "value": {
765
- "type": "string",
766
- "maxLength": 255
789
+ "oneOf": [
790
+ {
791
+ "type": "string",
792
+ "maxLength": 255
793
+ },
794
+ {
795
+ "type": "number"
796
+ },
797
+ {
798
+ "type": "boolean"
799
+ }
800
+ ]
767
801
  }
768
802
  },
769
803
  "additionalProperties": false,
@@ -1000,6 +1034,24 @@
1000
1034
  "$and",
1001
1035
  "advanced"
1002
1036
  ]
1037
+ },
1038
+ "columns": {
1039
+ "type": "array",
1040
+ "maxItems": 100,
1041
+ "items": {
1042
+ "type": "object",
1043
+ "properties": {
1044
+ "id": {
1045
+ "type": "string",
1046
+ "maxLength": 48
1047
+ },
1048
+ "type": {
1049
+ "type": "string",
1050
+ "pattern": "^[0-9a-zA-Z_-]{1,255}$"
1051
+ }
1052
+ },
1053
+ "additionalProperties": false
1054
+ }
1003
1055
  }
1004
1056
  },
1005
1057
  "additionalProperties": false
@@ -1267,6 +1319,9 @@
1267
1319
  "type": "string",
1268
1320
  "maxLength": 255
1269
1321
  }
1322
+ },
1323
+ "includeDeviceInfo": {
1324
+ "type": "boolean"
1270
1325
  }
1271
1326
  },
1272
1327
  "additionalProperties": false
@@ -1541,8 +1596,17 @@
1541
1596
  "state",
1542
1597
  "tag",
1543
1598
  "deviceName",
1544
- "sourceId"
1599
+ "sourceId",
1600
+ "custom"
1545
1601
  ]
1602
+ },
1603
+ "headerTemplate": {
1604
+ "type": "string",
1605
+ "maxLength": 1024
1606
+ },
1607
+ "rowTemplate": {
1608
+ "type": "string",
1609
+ "maxLength": 32767
1546
1610
  }
1547
1611
  },
1548
1612
  "additionalProperties": false
@@ -1744,8 +1808,18 @@
1744
1808
  "type": "object",
1745
1809
  "properties": {
1746
1810
  "value": {
1747
- "type": "string",
1748
- "maxLength": 255
1811
+ "oneOf": [
1812
+ {
1813
+ "type": "string",
1814
+ "maxLength": 255
1815
+ },
1816
+ {
1817
+ "type": "number"
1818
+ },
1819
+ {
1820
+ "type": "boolean"
1821
+ }
1822
+ ]
1749
1823
  }
1750
1824
  },
1751
1825
  "additionalProperties": false,
@@ -1800,6 +1874,10 @@
1800
1874
  "type": "string",
1801
1875
  "maxLength": 255
1802
1876
  },
1877
+ "expression": {
1878
+ "type": "string",
1879
+ "maxLength": 255
1880
+ },
1803
1881
  "yAxisLabel": {
1804
1882
  "type": "string",
1805
1883
  "maxLength": 255
@@ -2030,8 +2108,18 @@
2030
2108
  "type": "object",
2031
2109
  "properties": {
2032
2110
  "value": {
2033
- "type": "string",
2034
- "maxLength": 255
2111
+ "oneOf": [
2112
+ {
2113
+ "type": "string",
2114
+ "maxLength": 255
2115
+ },
2116
+ {
2117
+ "type": "number"
2118
+ },
2119
+ {
2120
+ "type": "boolean"
2121
+ }
2122
+ ]
2035
2123
  }
2036
2124
  },
2037
2125
  "additionalProperties": false,
@@ -2516,7 +2604,7 @@
2516
2604
  },
2517
2605
  "segments": {
2518
2606
  "type": "array",
2519
- "maxItems": 100,
2607
+ "maxItems": 300,
2520
2608
  "items": {
2521
2609
  "oneOf": [
2522
2610
  {
@@ -2612,8 +2700,18 @@
2612
2700
  "type": "object",
2613
2701
  "properties": {
2614
2702
  "value": {
2615
- "type": "string",
2616
- "maxLength": 255
2703
+ "oneOf": [
2704
+ {
2705
+ "type": "string",
2706
+ "maxLength": 255
2707
+ },
2708
+ {
2709
+ "type": "number"
2710
+ },
2711
+ {
2712
+ "type": "boolean"
2713
+ }
2714
+ ]
2617
2715
  }
2618
2716
  },
2619
2717
  "additionalProperties": false,
@@ -3206,8 +3304,18 @@
3206
3304
  "type": "object",
3207
3305
  "properties": {
3208
3306
  "value": {
3209
- "type": "string",
3210
- "maxLength": 255
3307
+ "oneOf": [
3308
+ {
3309
+ "type": "string",
3310
+ "maxLength": 255
3311
+ },
3312
+ {
3313
+ "type": "number"
3314
+ },
3315
+ {
3316
+ "type": "boolean"
3317
+ }
3318
+ ]
3211
3319
  }
3212
3320
  },
3213
3321
  "additionalProperties": false,
@@ -3262,6 +3370,10 @@
3262
3370
  "type": "string",
3263
3371
  "maxLength": 255
3264
3372
  },
3373
+ "expression": {
3374
+ "type": "string",
3375
+ "maxLength": 255
3376
+ },
3265
3377
  "yAxisLabel": {
3266
3378
  "type": "string",
3267
3379
  "maxLength": 255
@@ -3549,8 +3661,18 @@
3549
3661
  "type": "object",
3550
3662
  "properties": {
3551
3663
  "value": {
3552
- "type": "string",
3553
- "maxLength": 255
3664
+ "oneOf": [
3665
+ {
3666
+ "type": "string",
3667
+ "maxLength": 255
3668
+ },
3669
+ {
3670
+ "type": "number"
3671
+ },
3672
+ {
3673
+ "type": "boolean"
3674
+ }
3675
+ ]
3554
3676
  }
3555
3677
  },
3556
3678
  "additionalProperties": false,
@@ -3773,8 +3895,18 @@
3773
3895
  "type": "object",
3774
3896
  "properties": {
3775
3897
  "value": {
3776
- "type": "string",
3777
- "maxLength": 255
3898
+ "oneOf": [
3899
+ {
3900
+ "type": "string",
3901
+ "maxLength": 255
3902
+ },
3903
+ {
3904
+ "type": "number"
3905
+ },
3906
+ {
3907
+ "type": "boolean"
3908
+ }
3909
+ ]
3778
3910
  }
3779
3911
  },
3780
3912
  "additionalProperties": false,
@@ -3826,6 +3958,9 @@
3826
3958
  },
3827
3959
  "defaultValue": {
3828
3960
  "type": "boolean"
3961
+ },
3962
+ "includeLabel": {
3963
+ "type": "boolean"
3829
3964
  }
3830
3965
  },
3831
3966
  "additionalProperties": false
@@ -3952,8 +4087,18 @@
3952
4087
  "type": "object",
3953
4088
  "properties": {
3954
4089
  "value": {
3955
- "type": "string",
3956
- "maxLength": 255
4090
+ "oneOf": [
4091
+ {
4092
+ "type": "string",
4093
+ "maxLength": 255
4094
+ },
4095
+ {
4096
+ "type": "number"
4097
+ },
4098
+ {
4099
+ "type": "boolean"
4100
+ }
4101
+ ]
3957
4102
  }
3958
4103
  },
3959
4104
  "additionalProperties": false,
@@ -4132,8 +4277,18 @@
4132
4277
  "type": "object",
4133
4278
  "properties": {
4134
4279
  "value": {
4135
- "type": "string",
4136
- "maxLength": 255
4280
+ "oneOf": [
4281
+ {
4282
+ "type": "string",
4283
+ "maxLength": 255
4284
+ },
4285
+ {
4286
+ "type": "number"
4287
+ },
4288
+ {
4289
+ "type": "boolean"
4290
+ }
4291
+ ]
4137
4292
  }
4138
4293
  },
4139
4294
  "additionalProperties": false,
@@ -4782,8 +4937,18 @@
4782
4937
  "type": "object",
4783
4938
  "properties": {
4784
4939
  "value": {
4785
- "type": "string",
4786
- "maxLength": 255
4940
+ "oneOf": [
4941
+ {
4942
+ "type": "string",
4943
+ "maxLength": 255
4944
+ },
4945
+ {
4946
+ "type": "number"
4947
+ },
4948
+ {
4949
+ "type": "boolean"
4950
+ }
4951
+ ]
4787
4952
  }
4788
4953
  },
4789
4954
  "additionalProperties": false,
@@ -4838,6 +5003,10 @@
4838
5003
  "type": "string",
4839
5004
  "maxLength": 255
4840
5005
  },
5006
+ "expression": {
5007
+ "type": "string",
5008
+ "maxLength": 255
5009
+ },
4841
5010
  "yAxisLabel": {
4842
5011
  "type": "string",
4843
5012
  "maxLength": 255