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
@@ -356,8 +356,18 @@
356
356
  "type": "object",
357
357
  "properties": {
358
358
  "value": {
359
- "type": "string",
360
- "maxLength": 255
359
+ "oneOf": [
360
+ {
361
+ "type": "string",
362
+ "maxLength": 255
363
+ },
364
+ {
365
+ "type": "number"
366
+ },
367
+ {
368
+ "type": "boolean"
369
+ }
370
+ ]
361
371
  }
362
372
  },
363
373
  "additionalProperties": false,
@@ -610,8 +620,18 @@
610
620
  "type": "object",
611
621
  "properties": {
612
622
  "value": {
613
- "type": "string",
614
- "maxLength": 255
623
+ "oneOf": [
624
+ {
625
+ "type": "string",
626
+ "maxLength": 255
627
+ },
628
+ {
629
+ "type": "number"
630
+ },
631
+ {
632
+ "type": "boolean"
633
+ }
634
+ ]
615
635
  }
616
636
  },
617
637
  "additionalProperties": false,
@@ -773,8 +793,18 @@
773
793
  "type": "object",
774
794
  "properties": {
775
795
  "value": {
776
- "type": "string",
777
- "maxLength": 255
796
+ "oneOf": [
797
+ {
798
+ "type": "string",
799
+ "maxLength": 255
800
+ },
801
+ {
802
+ "type": "number"
803
+ },
804
+ {
805
+ "type": "boolean"
806
+ }
807
+ ]
778
808
  }
779
809
  },
780
810
  "additionalProperties": false,
@@ -1011,6 +1041,42 @@
1011
1041
  "$and",
1012
1042
  "advanced"
1013
1043
  ]
1044
+ },
1045
+ "columns": {
1046
+ "type": "array",
1047
+ "maxItems": 100,
1048
+ "items": {
1049
+ "type": "object",
1050
+ "properties": {
1051
+ "id": {
1052
+ "type": "string",
1053
+ "maxLength": 48
1054
+ },
1055
+ "type": {
1056
+ "oneOf": [
1057
+ {
1058
+ "type": "string",
1059
+ "pattern": "^[0-9a-zA-Z_-]{1,255}$"
1060
+ },
1061
+ {
1062
+ "type": "string",
1063
+ "enum": [
1064
+ "$custom"
1065
+ ]
1066
+ }
1067
+ ]
1068
+ },
1069
+ "headerTemplate": {
1070
+ "type": "string",
1071
+ "maxLength": 1024
1072
+ },
1073
+ "rowTemplate": {
1074
+ "type": "string",
1075
+ "maxLength": 32767
1076
+ }
1077
+ },
1078
+ "additionalProperties": false
1079
+ }
1014
1080
  }
1015
1081
  },
1016
1082
  "additionalProperties": false
@@ -1278,6 +1344,9 @@
1278
1344
  "type": "string",
1279
1345
  "maxLength": 255
1280
1346
  }
1347
+ },
1348
+ "includeDeviceInfo": {
1349
+ "type": "boolean"
1281
1350
  }
1282
1351
  },
1283
1352
  "additionalProperties": false
@@ -1552,8 +1621,17 @@
1552
1621
  "state",
1553
1622
  "tag",
1554
1623
  "deviceName",
1555
- "sourceId"
1624
+ "sourceId",
1625
+ "custom"
1556
1626
  ]
1627
+ },
1628
+ "headerTemplate": {
1629
+ "type": "string",
1630
+ "maxLength": 1024
1631
+ },
1632
+ "rowTemplate": {
1633
+ "type": "string",
1634
+ "maxLength": 32767
1557
1635
  }
1558
1636
  },
1559
1637
  "additionalProperties": false
@@ -1755,8 +1833,18 @@
1755
1833
  "type": "object",
1756
1834
  "properties": {
1757
1835
  "value": {
1758
- "type": "string",
1759
- "maxLength": 255
1836
+ "oneOf": [
1837
+ {
1838
+ "type": "string",
1839
+ "maxLength": 255
1840
+ },
1841
+ {
1842
+ "type": "number"
1843
+ },
1844
+ {
1845
+ "type": "boolean"
1846
+ }
1847
+ ]
1760
1848
  }
1761
1849
  },
1762
1850
  "additionalProperties": false,
@@ -2045,8 +2133,18 @@
2045
2133
  "type": "object",
2046
2134
  "properties": {
2047
2135
  "value": {
2048
- "type": "string",
2049
- "maxLength": 255
2136
+ "oneOf": [
2137
+ {
2138
+ "type": "string",
2139
+ "maxLength": 255
2140
+ },
2141
+ {
2142
+ "type": "number"
2143
+ },
2144
+ {
2145
+ "type": "boolean"
2146
+ }
2147
+ ]
2050
2148
  }
2051
2149
  },
2052
2150
  "additionalProperties": false,
@@ -2531,7 +2629,7 @@
2531
2629
  },
2532
2630
  "segments": {
2533
2631
  "type": "array",
2534
- "maxItems": 100,
2632
+ "maxItems": 300,
2535
2633
  "items": {
2536
2634
  "oneOf": [
2537
2635
  {
@@ -2627,8 +2725,18 @@
2627
2725
  "type": "object",
2628
2726
  "properties": {
2629
2727
  "value": {
2630
- "type": "string",
2631
- "maxLength": 255
2728
+ "oneOf": [
2729
+ {
2730
+ "type": "string",
2731
+ "maxLength": 255
2732
+ },
2733
+ {
2734
+ "type": "number"
2735
+ },
2736
+ {
2737
+ "type": "boolean"
2738
+ }
2739
+ ]
2632
2740
  }
2633
2741
  },
2634
2742
  "additionalProperties": false,
@@ -3221,8 +3329,18 @@
3221
3329
  "type": "object",
3222
3330
  "properties": {
3223
3331
  "value": {
3224
- "type": "string",
3225
- "maxLength": 255
3332
+ "oneOf": [
3333
+ {
3334
+ "type": "string",
3335
+ "maxLength": 255
3336
+ },
3337
+ {
3338
+ "type": "number"
3339
+ },
3340
+ {
3341
+ "type": "boolean"
3342
+ }
3343
+ ]
3226
3344
  }
3227
3345
  },
3228
3346
  "additionalProperties": false,
@@ -3568,8 +3686,18 @@
3568
3686
  "type": "object",
3569
3687
  "properties": {
3570
3688
  "value": {
3571
- "type": "string",
3572
- "maxLength": 255
3689
+ "oneOf": [
3690
+ {
3691
+ "type": "string",
3692
+ "maxLength": 255
3693
+ },
3694
+ {
3695
+ "type": "number"
3696
+ },
3697
+ {
3698
+ "type": "boolean"
3699
+ }
3700
+ ]
3573
3701
  }
3574
3702
  },
3575
3703
  "additionalProperties": false,
@@ -3792,8 +3920,18 @@
3792
3920
  "type": "object",
3793
3921
  "properties": {
3794
3922
  "value": {
3795
- "type": "string",
3796
- "maxLength": 255
3923
+ "oneOf": [
3924
+ {
3925
+ "type": "string",
3926
+ "maxLength": 255
3927
+ },
3928
+ {
3929
+ "type": "number"
3930
+ },
3931
+ {
3932
+ "type": "boolean"
3933
+ }
3934
+ ]
3797
3935
  }
3798
3936
  },
3799
3937
  "additionalProperties": false,
@@ -3845,6 +3983,9 @@
3845
3983
  },
3846
3984
  "defaultValue": {
3847
3985
  "type": "boolean"
3986
+ },
3987
+ "includeLabel": {
3988
+ "type": "boolean"
3848
3989
  }
3849
3990
  },
3850
3991
  "additionalProperties": false
@@ -3971,8 +4112,18 @@
3971
4112
  "type": "object",
3972
4113
  "properties": {
3973
4114
  "value": {
3974
- "type": "string",
3975
- "maxLength": 255
4115
+ "oneOf": [
4116
+ {
4117
+ "type": "string",
4118
+ "maxLength": 255
4119
+ },
4120
+ {
4121
+ "type": "number"
4122
+ },
4123
+ {
4124
+ "type": "boolean"
4125
+ }
4126
+ ]
3976
4127
  }
3977
4128
  },
3978
4129
  "additionalProperties": false,
@@ -4151,8 +4302,18 @@
4151
4302
  "type": "object",
4152
4303
  "properties": {
4153
4304
  "value": {
4154
- "type": "string",
4155
- "maxLength": 255
4305
+ "oneOf": [
4306
+ {
4307
+ "type": "string",
4308
+ "maxLength": 255
4309
+ },
4310
+ {
4311
+ "type": "number"
4312
+ },
4313
+ {
4314
+ "type": "boolean"
4315
+ }
4316
+ ]
4156
4317
  }
4157
4318
  },
4158
4319
  "additionalProperties": false,
@@ -4801,8 +4962,18 @@
4801
4962
  "type": "object",
4802
4963
  "properties": {
4803
4964
  "value": {
4804
- "type": "string",
4805
- "maxLength": 255
4965
+ "oneOf": [
4966
+ {
4967
+ "type": "string",
4968
+ "maxLength": 255
4969
+ },
4970
+ {
4971
+ "type": "number"
4972
+ },
4973
+ {
4974
+ "type": "boolean"
4975
+ }
4976
+ ]
4806
4977
  }
4807
4978
  },
4808
4979
  "additionalProperties": false,
@@ -39,7 +39,138 @@
39
39
  "maxItems": 100
40
40
  },
41
41
  "deviceQuery": {
42
- "ref": "#/definitions/advancedQuery"
42
+ "title": "Advanced Query",
43
+ "description": "Schema for advanced filters and queries",
44
+ "type": "object",
45
+ "properties": {
46
+ "$and": {
47
+ "type": "array",
48
+ "items": {
49
+ "$ref": "#/definitions/advancedQuery"
50
+ },
51
+ "maxItems": 100
52
+ },
53
+ "$or": {
54
+ "type": "array",
55
+ "items": {
56
+ "$ref": "#/definitions/advancedQuery"
57
+ },
58
+ "maxItems": 100
59
+ },
60
+ "$nor": {
61
+ "type": "array",
62
+ "items": {
63
+ "$ref": "#/definitions/advancedQuery"
64
+ },
65
+ "maxItems": 100
66
+ }
67
+ },
68
+ "patternProperties": {
69
+ "^[0-9a-zA-Z_-]{1,255}$": {
70
+ "oneOf": [
71
+ {
72
+ "type": [
73
+ "string",
74
+ "number",
75
+ "boolean",
76
+ "null"
77
+ ]
78
+ },
79
+ {
80
+ "type": "object",
81
+ "properties": {
82
+ "$eq": {
83
+ "type": [
84
+ "string",
85
+ "number",
86
+ "boolean",
87
+ "null"
88
+ ]
89
+ },
90
+ "$ne": {
91
+ "type": [
92
+ "string",
93
+ "number",
94
+ "boolean",
95
+ "null"
96
+ ]
97
+ },
98
+ "$gt": {
99
+ "type": [
100
+ "string",
101
+ "number",
102
+ "boolean",
103
+ "null"
104
+ ]
105
+ },
106
+ "$lt": {
107
+ "type": [
108
+ "string",
109
+ "number",
110
+ "boolean",
111
+ "null"
112
+ ]
113
+ },
114
+ "$gte": {
115
+ "type": [
116
+ "string",
117
+ "number",
118
+ "boolean",
119
+ "null"
120
+ ]
121
+ },
122
+ "$lte": {
123
+ "type": [
124
+ "string",
125
+ "number",
126
+ "boolean",
127
+ "null"
128
+ ]
129
+ },
130
+ "$startsWith": {
131
+ "type": "string",
132
+ "minLength": 1
133
+ },
134
+ "$endsWith": {
135
+ "type": "string",
136
+ "minLength": 1
137
+ },
138
+ "$contains": {
139
+ "type": "string",
140
+ "minLength": 1
141
+ },
142
+ "$ci": {
143
+ "type": "boolean"
144
+ },
145
+ "$in": {
146
+ "type": "array",
147
+ "maxItems": 100,
148
+ "items": {
149
+ "type": [
150
+ "string",
151
+ "number",
152
+ "boolean"
153
+ ]
154
+ }
155
+ },
156
+ "$nin": {
157
+ "type": "array",
158
+ "maxItems": 100,
159
+ "items": {
160
+ "type": [
161
+ "string",
162
+ "number",
163
+ "boolean"
164
+ ]
165
+ }
166
+ }
167
+ },
168
+ "additionalProperties": false
169
+ }
170
+ ]
171
+ }
172
+ },
173
+ "additionalProperties": false
43
174
  },
44
175
  "attributes": {
45
176
  "type": "array",