losant_rest 1.10.3 → 1.13.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (212) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +1 -1
  3. data/README.md +2 -2
  4. data/docs/_schemas.md +27526 -11724
  5. data/docs/application.md +83 -0
  6. data/docs/applicationApiTokens.md +2 -2
  7. data/docs/applicationCertificateAuthorities.md +1 -1
  8. data/docs/applicationCertificates.md +1 -1
  9. data/docs/applicationDashboard.md +133 -0
  10. data/docs/applicationDashboards.md +93 -0
  11. data/docs/applicationKeys.md +4 -3
  12. data/docs/applicationTemplate.md +46 -0
  13. data/docs/applicationTemplates.md +77 -2
  14. data/docs/applications.md +1 -1
  15. data/docs/auditLogs.md +1 -1
  16. data/docs/dashboards.md +1 -1
  17. data/docs/dataTables.md +1 -1
  18. data/docs/device.md +6 -3
  19. data/docs/deviceRecipes.md +1 -1
  20. data/docs/devices.md +125 -1
  21. data/docs/edgeDeployments.md +1 -1
  22. data/docs/events.md +4 -4
  23. data/docs/experienceEndpoint.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/files.md +1 -1
  29. data/docs/flow.md +41 -0
  30. data/docs/flowVersions.md +2 -1
  31. data/docs/flows.md +5 -2
  32. data/docs/instance.md +128 -0
  33. data/docs/instanceMember.md +133 -0
  34. data/docs/instanceMembers.md +91 -0
  35. data/docs/instanceOrg.md +133 -0
  36. data/docs/instanceOrgMember.md +139 -0
  37. data/docs/instanceOrgMembers.md +96 -0
  38. data/docs/instanceOrgs.md +91 -0
  39. data/docs/instances.md +50 -0
  40. data/docs/integration.md +1 -0
  41. data/docs/integrations.md +1 -1
  42. data/docs/me.md +0 -36
  43. data/docs/notebooks.md +1 -1
  44. data/docs/orgs.md +1 -1
  45. data/docs/webhook.md +1 -0
  46. data/docs/webhooks.md +1 -1
  47. data/lib/losant_rest.rb +12 -1
  48. data/lib/losant_rest/application.rb +97 -2
  49. data/lib/losant_rest/application_api_token.rb +1 -1
  50. data/lib/losant_rest/application_api_tokens.rb +2 -2
  51. data/lib/losant_rest/application_certificate.rb +1 -1
  52. data/lib/losant_rest/application_certificate_authorities.rb +1 -1
  53. data/lib/losant_rest/application_certificate_authority.rb +1 -1
  54. data/lib/losant_rest/application_certificates.rb +1 -1
  55. data/lib/losant_rest/application_dashboard.rb +176 -0
  56. data/lib/losant_rest/application_dashboards.rb +138 -0
  57. data/lib/losant_rest/application_key.rb +1 -1
  58. data/lib/losant_rest/application_keys.rb +4 -1
  59. data/lib/losant_rest/application_template.rb +79 -0
  60. data/lib/losant_rest/application_templates.rb +90 -2
  61. data/lib/losant_rest/applications.rb +1 -1
  62. data/lib/losant_rest/audit_log.rb +1 -1
  63. data/lib/losant_rest/audit_logs.rb +1 -1
  64. data/lib/losant_rest/auth.rb +1 -1
  65. data/lib/losant_rest/client.rb +47 -3
  66. data/lib/losant_rest/dashboard.rb +1 -1
  67. data/lib/losant_rest/dashboards.rb +1 -1
  68. data/lib/losant_rest/data.rb +1 -1
  69. data/lib/losant_rest/data_table.rb +1 -1
  70. data/lib/losant_rest/data_table_row.rb +1 -1
  71. data/lib/losant_rest/data_table_rows.rb +1 -1
  72. data/lib/losant_rest/data_tables.rb +1 -1
  73. data/lib/losant_rest/device.rb +10 -4
  74. data/lib/losant_rest/device_recipe.rb +1 -1
  75. data/lib/losant_rest/device_recipes.rb +1 -1
  76. data/lib/losant_rest/devices.rb +153 -1
  77. data/lib/losant_rest/edge_deployments.rb +1 -1
  78. data/lib/losant_rest/error.rb +1 -1
  79. data/lib/losant_rest/event.rb +1 -1
  80. data/lib/losant_rest/events.rb +4 -4
  81. data/lib/losant_rest/experience.rb +1 -1
  82. data/lib/losant_rest/experience_domain.rb +1 -1
  83. data/lib/losant_rest/experience_domains.rb +1 -1
  84. data/lib/losant_rest/experience_endpoint.rb +3 -1
  85. data/lib/losant_rest/experience_endpoints.rb +1 -1
  86. data/lib/losant_rest/experience_group.rb +1 -1
  87. data/lib/losant_rest/experience_groups.rb +1 -1
  88. data/lib/losant_rest/experience_slug.rb +1 -1
  89. data/lib/losant_rest/experience_slugs.rb +1 -1
  90. data/lib/losant_rest/experience_user.rb +1 -1
  91. data/lib/losant_rest/experience_users.rb +1 -1
  92. data/lib/losant_rest/experience_version.rb +1 -1
  93. data/lib/losant_rest/experience_versions.rb +1 -1
  94. data/lib/losant_rest/experience_view.rb +1 -1
  95. data/lib/losant_rest/experience_views.rb +1 -1
  96. data/lib/losant_rest/file.rb +1 -1
  97. data/lib/losant_rest/files.rb +1 -1
  98. data/lib/losant_rest/flow.rb +47 -1
  99. data/lib/losant_rest/flow_version.rb +1 -1
  100. data/lib/losant_rest/flow_versions.rb +4 -1
  101. data/lib/losant_rest/flows.rb +9 -1
  102. data/lib/losant_rest/instance.rb +181 -0
  103. data/lib/losant_rest/instance_member.rb +176 -0
  104. data/lib/losant_rest/instance_members.rb +134 -0
  105. data/lib/losant_rest/instance_org.rb +176 -0
  106. data/lib/losant_rest/instance_org_member.rb +182 -0
  107. data/lib/losant_rest/instance_org_members.rb +138 -0
  108. data/lib/losant_rest/instance_orgs.rb +139 -0
  109. data/lib/losant_rest/instances.rb +88 -0
  110. data/lib/losant_rest/integration.rb +3 -1
  111. data/lib/losant_rest/integrations.rb +1 -1
  112. data/lib/losant_rest/me.rb +2 -43
  113. data/lib/losant_rest/notebook.rb +1 -1
  114. data/lib/losant_rest/notebooks.rb +1 -1
  115. data/lib/losant_rest/org.rb +2 -2
  116. data/lib/losant_rest/org_invites.rb +1 -1
  117. data/lib/losant_rest/orgs.rb +1 -1
  118. data/lib/losant_rest/utils.rb +1 -1
  119. data/lib/losant_rest/version.rb +2 -2
  120. data/lib/losant_rest/webhook.rb +3 -1
  121. data/lib/losant_rest/webhooks.rb +1 -1
  122. data/schemas/advancedApplicationKeyQuery.json +1082 -0
  123. data/schemas/advancedDeviceQuery.json +309 -0
  124. data/schemas/advancedFlowByVersionQuery.json +665 -0
  125. data/schemas/advancedFlowQuery.json +883 -0
  126. data/schemas/advancedFlowVersionQuery.json +925 -0
  127. data/schemas/application.json +8 -0
  128. data/schemas/applicationApiTokenPost.json +12 -0
  129. data/schemas/applicationApplyTemplatePatch.json +19 -0
  130. data/schemas/applicationCreationByTemplateResult.json +8 -0
  131. data/schemas/applicationDashboardPost.json +5683 -0
  132. data/schemas/applicationGlobalPatch.json +33 -0
  133. data/schemas/applicationPost.json +8 -0
  134. data/schemas/applicationTemplate.json +20 -0
  135. data/schemas/applicationTemplateCategories.json +43 -0
  136. data/schemas/applicationTemplateCategory.json +23 -0
  137. data/schemas/applicationTemplates.json +32 -0
  138. data/schemas/applications.json +8 -0
  139. data/schemas/attributeNamesResponse.json +14 -0
  140. data/schemas/authedUser.json +3 -0
  141. data/schemas/changePassword.json +2 -2
  142. data/schemas/dashboard.json +197 -26
  143. data/schemas/dashboardPatch.json +197 -26
  144. data/schemas/dashboardPost.json +197 -26
  145. data/schemas/dashboards.json +197 -26
  146. data/schemas/dataExport.json +132 -1
  147. data/schemas/deviceAttributeDataTypeFilter.json +29 -0
  148. data/schemas/deviceClassFilter.json +1 -2
  149. data/schemas/devicesDeletePost.json +309 -0
  150. data/schemas/devicesExportPost.json +309 -0
  151. data/schemas/devicesPatch.json +309 -0
  152. data/schemas/devicesRemoveDataPost.json +309 -0
  153. data/schemas/experienceLinkedResources.json +96 -0
  154. data/schemas/experienceVersion.json +9 -0
  155. data/schemas/experienceVersionPatch.json +9 -0
  156. data/schemas/experienceVersions.json +9 -0
  157. data/schemas/filePost.json +8 -2
  158. data/schemas/files.json +3 -0
  159. data/schemas/flow.json +32 -0
  160. data/schemas/flowPatch.json +32 -0
  161. data/schemas/flowPost.json +32 -0
  162. data/schemas/flowStorageMetadata.json +13 -0
  163. data/schemas/flowVersion.json +64 -0
  164. data/schemas/flowVersionPost.json +32 -0
  165. data/schemas/flowVersions.json +64 -0
  166. data/schemas/flows.json +32 -0
  167. data/schemas/flowsImportPost.json +64 -0
  168. data/schemas/flowsImportResult.json +96 -0
  169. data/schemas/githubLogin.json +53 -4
  170. data/schemas/historicalSummaries.json +43 -0
  171. data/schemas/historicalSummary.json +455 -0
  172. data/schemas/instance.json +132 -0
  173. data/schemas/instanceMember.json +37 -0
  174. data/schemas/instanceMemberPatch.json +17 -0
  175. data/schemas/instanceMemberPost.json +22 -0
  176. data/schemas/instanceMembers.json +69 -0
  177. data/schemas/instanceOrg.json +133 -0
  178. data/schemas/instanceOrgMember.json +37 -0
  179. data/schemas/instanceOrgMemberPatch.json +69 -0
  180. data/schemas/instanceOrgMemberPost.json +161 -0
  181. data/schemas/instanceOrgMembers.json +34 -0
  182. data/schemas/instanceOrgPatch.json +122 -0
  183. data/schemas/instanceOrgPost.json +125 -0
  184. data/schemas/instanceOrgs.json +174 -0
  185. data/schemas/instanceReportOptionsPost.json +40 -0
  186. data/schemas/instances.json +43 -0
  187. data/schemas/integration.json +3 -0
  188. data/schemas/integrationPatch.json +3 -0
  189. data/schemas/integrationPost.json +3 -0
  190. data/schemas/integrations.json +3 -0
  191. data/schemas/me.json +3 -3
  192. data/schemas/mePatch.json +2 -2
  193. data/schemas/multiDeviceCommand.json +309 -0
  194. data/schemas/notebook.json +7 -0
  195. data/schemas/notebookExecutionLogs.json +7 -0
  196. data/schemas/notebookPatch.json +7 -0
  197. data/schemas/notebookPost.json +7 -0
  198. data/schemas/notebooks.json +7 -0
  199. data/schemas/orgInviteInfo.json +3 -0
  200. data/schemas/orgInvitePost.json +3 -0
  201. data/schemas/orgInvites.json +3 -0
  202. data/schemas/orgPatch.json +0 -9
  203. data/schemas/passwordResetFinish.json +2 -2
  204. data/schemas/payloadStats.json +110 -0
  205. data/schemas/tagKeysResponse.json +14 -0
  206. data/schemas/tagValuesResponse.json +19 -0
  207. data/schemas/templateKeywords.json +14 -0
  208. data/schemas/timeSeriesData.json +12 -2
  209. data/schemas/timeSeriesQuery.json +94 -14
  210. data/schemas/userCredentials.json +51 -3
  211. data/schemas/userPost.json +59 -7
  212. metadata +61 -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,
@@ -603,8 +613,18 @@
603
613
  "type": "object",
604
614
  "properties": {
605
615
  "value": {
606
- "type": "string",
607
- "maxLength": 255
616
+ "oneOf": [
617
+ {
618
+ "type": "string",
619
+ "maxLength": 255
620
+ },
621
+ {
622
+ "type": "number"
623
+ },
624
+ {
625
+ "type": "boolean"
626
+ }
627
+ ]
608
628
  }
609
629
  },
610
630
  "additionalProperties": false,
@@ -766,8 +786,18 @@
766
786
  "type": "object",
767
787
  "properties": {
768
788
  "value": {
769
- "type": "string",
770
- "maxLength": 255
789
+ "oneOf": [
790
+ {
791
+ "type": "string",
792
+ "maxLength": 255
793
+ },
794
+ {
795
+ "type": "number"
796
+ },
797
+ {
798
+ "type": "boolean"
799
+ }
800
+ ]
771
801
  }
772
802
  },
773
803
  "additionalProperties": false,
@@ -1004,6 +1034,42 @@
1004
1034
  "$and",
1005
1035
  "advanced"
1006
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
+ "oneOf": [
1050
+ {
1051
+ "type": "string",
1052
+ "pattern": "^[0-9a-zA-Z_-]{1,255}$"
1053
+ },
1054
+ {
1055
+ "type": "string",
1056
+ "enum": [
1057
+ "$custom"
1058
+ ]
1059
+ }
1060
+ ]
1061
+ },
1062
+ "headerTemplate": {
1063
+ "type": "string",
1064
+ "maxLength": 1024
1065
+ },
1066
+ "rowTemplate": {
1067
+ "type": "string",
1068
+ "maxLength": 32767
1069
+ }
1070
+ },
1071
+ "additionalProperties": false
1072
+ }
1007
1073
  }
1008
1074
  },
1009
1075
  "additionalProperties": false
@@ -1271,6 +1337,9 @@
1271
1337
  "type": "string",
1272
1338
  "maxLength": 255
1273
1339
  }
1340
+ },
1341
+ "includeDeviceInfo": {
1342
+ "type": "boolean"
1274
1343
  }
1275
1344
  },
1276
1345
  "additionalProperties": false
@@ -1545,8 +1614,17 @@
1545
1614
  "state",
1546
1615
  "tag",
1547
1616
  "deviceName",
1548
- "sourceId"
1617
+ "sourceId",
1618
+ "custom"
1549
1619
  ]
1620
+ },
1621
+ "headerTemplate": {
1622
+ "type": "string",
1623
+ "maxLength": 1024
1624
+ },
1625
+ "rowTemplate": {
1626
+ "type": "string",
1627
+ "maxLength": 32767
1550
1628
  }
1551
1629
  },
1552
1630
  "additionalProperties": false
@@ -1748,8 +1826,18 @@
1748
1826
  "type": "object",
1749
1827
  "properties": {
1750
1828
  "value": {
1751
- "type": "string",
1752
- "maxLength": 255
1829
+ "oneOf": [
1830
+ {
1831
+ "type": "string",
1832
+ "maxLength": 255
1833
+ },
1834
+ {
1835
+ "type": "number"
1836
+ },
1837
+ {
1838
+ "type": "boolean"
1839
+ }
1840
+ ]
1753
1841
  }
1754
1842
  },
1755
1843
  "additionalProperties": false,
@@ -2038,8 +2126,18 @@
2038
2126
  "type": "object",
2039
2127
  "properties": {
2040
2128
  "value": {
2041
- "type": "string",
2042
- "maxLength": 255
2129
+ "oneOf": [
2130
+ {
2131
+ "type": "string",
2132
+ "maxLength": 255
2133
+ },
2134
+ {
2135
+ "type": "number"
2136
+ },
2137
+ {
2138
+ "type": "boolean"
2139
+ }
2140
+ ]
2043
2141
  }
2044
2142
  },
2045
2143
  "additionalProperties": false,
@@ -2524,7 +2622,7 @@
2524
2622
  },
2525
2623
  "segments": {
2526
2624
  "type": "array",
2527
- "maxItems": 100,
2625
+ "maxItems": 300,
2528
2626
  "items": {
2529
2627
  "oneOf": [
2530
2628
  {
@@ -2620,8 +2718,18 @@
2620
2718
  "type": "object",
2621
2719
  "properties": {
2622
2720
  "value": {
2623
- "type": "string",
2624
- "maxLength": 255
2721
+ "oneOf": [
2722
+ {
2723
+ "type": "string",
2724
+ "maxLength": 255
2725
+ },
2726
+ {
2727
+ "type": "number"
2728
+ },
2729
+ {
2730
+ "type": "boolean"
2731
+ }
2732
+ ]
2625
2733
  }
2626
2734
  },
2627
2735
  "additionalProperties": false,
@@ -3214,8 +3322,18 @@
3214
3322
  "type": "object",
3215
3323
  "properties": {
3216
3324
  "value": {
3217
- "type": "string",
3218
- "maxLength": 255
3325
+ "oneOf": [
3326
+ {
3327
+ "type": "string",
3328
+ "maxLength": 255
3329
+ },
3330
+ {
3331
+ "type": "number"
3332
+ },
3333
+ {
3334
+ "type": "boolean"
3335
+ }
3336
+ ]
3219
3337
  }
3220
3338
  },
3221
3339
  "additionalProperties": false,
@@ -3561,8 +3679,18 @@
3561
3679
  "type": "object",
3562
3680
  "properties": {
3563
3681
  "value": {
3564
- "type": "string",
3565
- "maxLength": 255
3682
+ "oneOf": [
3683
+ {
3684
+ "type": "string",
3685
+ "maxLength": 255
3686
+ },
3687
+ {
3688
+ "type": "number"
3689
+ },
3690
+ {
3691
+ "type": "boolean"
3692
+ }
3693
+ ]
3566
3694
  }
3567
3695
  },
3568
3696
  "additionalProperties": false,
@@ -3785,8 +3913,18 @@
3785
3913
  "type": "object",
3786
3914
  "properties": {
3787
3915
  "value": {
3788
- "type": "string",
3789
- "maxLength": 255
3916
+ "oneOf": [
3917
+ {
3918
+ "type": "string",
3919
+ "maxLength": 255
3920
+ },
3921
+ {
3922
+ "type": "number"
3923
+ },
3924
+ {
3925
+ "type": "boolean"
3926
+ }
3927
+ ]
3790
3928
  }
3791
3929
  },
3792
3930
  "additionalProperties": false,
@@ -3838,6 +3976,9 @@
3838
3976
  },
3839
3977
  "defaultValue": {
3840
3978
  "type": "boolean"
3979
+ },
3980
+ "includeLabel": {
3981
+ "type": "boolean"
3841
3982
  }
3842
3983
  },
3843
3984
  "additionalProperties": false
@@ -3964,8 +4105,18 @@
3964
4105
  "type": "object",
3965
4106
  "properties": {
3966
4107
  "value": {
3967
- "type": "string",
3968
- "maxLength": 255
4108
+ "oneOf": [
4109
+ {
4110
+ "type": "string",
4111
+ "maxLength": 255
4112
+ },
4113
+ {
4114
+ "type": "number"
4115
+ },
4116
+ {
4117
+ "type": "boolean"
4118
+ }
4119
+ ]
3969
4120
  }
3970
4121
  },
3971
4122
  "additionalProperties": false,
@@ -4144,8 +4295,18 @@
4144
4295
  "type": "object",
4145
4296
  "properties": {
4146
4297
  "value": {
4147
- "type": "string",
4148
- "maxLength": 255
4298
+ "oneOf": [
4299
+ {
4300
+ "type": "string",
4301
+ "maxLength": 255
4302
+ },
4303
+ {
4304
+ "type": "number"
4305
+ },
4306
+ {
4307
+ "type": "boolean"
4308
+ }
4309
+ ]
4149
4310
  }
4150
4311
  },
4151
4312
  "additionalProperties": false,
@@ -4794,8 +4955,18 @@
4794
4955
  "type": "object",
4795
4956
  "properties": {
4796
4957
  "value": {
4797
- "type": "string",
4798
- "maxLength": 255
4958
+ "oneOf": [
4959
+ {
4960
+ "type": "string",
4961
+ "maxLength": 255
4962
+ },
4963
+ {
4964
+ "type": "number"
4965
+ },
4966
+ {
4967
+ "type": "boolean"
4968
+ }
4969
+ ]
4799
4970
  }
4800
4971
  },
4801
4972
  "additionalProperties": false,