losant_rest 1.10.1 → 1.11.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/docs/_schemas.md +26941 -15658
- data/docs/application.md +42 -0
- data/docs/applicationApiTokens.md +2 -2
- data/docs/applicationCertificateAuthorities.md +1 -1
- data/docs/applicationCertificates.md +1 -1
- data/docs/applicationKeys.md +1 -1
- data/docs/applicationTemplate.md +46 -0
- data/docs/applicationTemplates.md +77 -2
- data/docs/applications.md +1 -1
- data/docs/auditLogs.md +1 -1
- data/docs/dashboards.md +1 -1
- data/docs/dataTables.md +1 -1
- data/docs/device.md +6 -3
- data/docs/deviceRecipes.md +1 -1
- data/docs/devices.md +217 -5
- data/docs/edgeDeployments.md +1 -1
- data/docs/events.md +1 -1
- data/docs/experienceEndpoints.md +1 -0
- data/docs/experienceGroups.md +1 -1
- data/docs/experienceUsers.md +1 -1
- data/docs/experienceVersions.md +1 -1
- data/docs/experienceViews.md +1 -1
- data/docs/file.md +4 -4
- data/docs/files.md +1 -1
- data/docs/flow.md +94 -1
- data/docs/flowVersion.md +96 -1
- data/docs/flowVersions.md +2 -1
- data/docs/flows.md +4 -2
- data/docs/integrations.md +1 -1
- data/docs/me.md +0 -36
- data/docs/notebooks.md +1 -1
- data/docs/orgs.md +1 -1
- data/docs/webhooks.md +1 -1
- data/lib/losant_rest.rb +1 -0
- data/lib/losant_rest/application.rb +48 -0
- data/lib/losant_rest/application_api_tokens.rb +1 -1
- data/lib/losant_rest/application_template.rb +79 -0
- data/lib/losant_rest/application_templates.rb +89 -1
- data/lib/losant_rest/client.rb +6 -2
- data/lib/losant_rest/device.rb +9 -3
- data/lib/losant_rest/devices.rb +255 -3
- data/lib/losant_rest/experience_endpoints.rb +2 -0
- data/lib/losant_rest/file.rb +3 -3
- data/lib/losant_rest/flow.rb +115 -1
- data/lib/losant_rest/flow_version.rb +115 -1
- data/lib/losant_rest/flow_versions.rb +3 -0
- data/lib/losant_rest/flows.rb +6 -0
- data/lib/losant_rest/me.rb +0 -41
- data/lib/losant_rest/version.rb +1 -1
- data/schemas/advancedDeviceQuery.json +110 -0
- data/schemas/advancedEventQuery.json +198 -0
- data/schemas/advancedFlowByVersionQuery.json +665 -0
- data/schemas/advancedFlowQuery.json +665 -0
- data/schemas/advancedFlowVersionQuery.json +707 -0
- data/schemas/advancedQuery.json +22 -0
- data/schemas/application.json +8 -0
- data/schemas/applicationApiTokenPost.json +11 -1
- data/schemas/applicationApplyTemplatePatch.json +19 -0
- data/schemas/applicationCreationByTemplateResult.json +8 -0
- data/schemas/applicationPost.json +8 -0
- data/schemas/applicationTemplate.json +20 -0
- data/schemas/applicationTemplateCategories.json +43 -0
- data/schemas/applicationTemplateCategory.json +23 -0
- data/schemas/applicationTemplates.json +32 -0
- data/schemas/applications.json +8 -0
- data/schemas/attributeNamesResponse.json +14 -0
- data/schemas/authedUser.json +3 -0
- data/schemas/changePassword.json +2 -2
- data/schemas/dashboard.json +175 -25
- data/schemas/dashboardPatch.json +175 -25
- data/schemas/dashboardPost.json +175 -25
- data/schemas/dashboards.json +175 -25
- data/schemas/dataExport.json +142 -0
- data/schemas/dataTableRowsExport.json +22 -0
- data/schemas/deviceAttributeDataTypeFilter.json +29 -0
- data/schemas/deviceClassFilter.json +1 -2
- data/schemas/devicesDataRemoved.json +12 -0
- data/schemas/devicesDeletePost.json +1034 -0
- data/schemas/devicesDeleted.json +12 -0
- data/schemas/devicesExportPost.json +1035 -0
- data/schemas/devicesPatch.json +1757 -4
- data/schemas/devicesRemoveDataPost.json +1056 -0
- data/schemas/devicesUpdated.json +18 -0
- data/schemas/eventPost.json +22 -0
- data/schemas/eventsExport.json +198 -0
- data/schemas/experienceDomain.json +1 -1
- data/schemas/experienceDomainPatch.json +1 -1
- data/schemas/experienceDomainPost.json +1 -1
- data/schemas/experienceDomains.json +1 -1
- data/schemas/experienceLinkedResources.json +96 -0
- data/schemas/experienceVersion.json +10 -1
- data/schemas/experienceVersionPatch.json +9 -0
- data/schemas/experienceVersions.json +10 -1
- data/schemas/flow.json +32 -0
- data/schemas/flowErrors.json +87 -0
- data/schemas/flowPatch.json +32 -0
- data/schemas/flowPost.json +32 -0
- data/schemas/flowStats.json +54 -0
- data/schemas/flowVersion.json +64 -0
- data/schemas/flowVersionPost.json +32 -0
- data/schemas/flowVersions.json +64 -0
- data/schemas/flows.json +32 -0
- data/schemas/flowsImportPost.json +64 -0
- data/schemas/flowsImportResult.json +96 -0
- data/schemas/githubLogin.json +17 -4
- data/schemas/integration.json +3 -0
- data/schemas/integrationPatch.json +3 -0
- data/schemas/integrationPost.json +3 -0
- data/schemas/integrations.json +3 -0
- data/schemas/me.json +3 -3
- data/schemas/mePatch.json +2 -2
- data/schemas/multiDeviceCommand.json +1019 -0
- data/schemas/notebook.json +96 -0
- data/schemas/notebookExecutionLogs.json +7 -0
- data/schemas/notebookPatch.json +96 -0
- data/schemas/notebookPost.json +96 -0
- data/schemas/notebooks.json +96 -0
- data/schemas/org.json +1 -1
- data/schemas/orgInviteInfo.json +3 -0
- data/schemas/orgInvitePost.json +3 -0
- data/schemas/orgInvites.json +3 -0
- data/schemas/orgPatch.json +1 -1
- data/schemas/orgs.json +1 -1
- data/schemas/passwordResetFinish.json +2 -2
- data/schemas/samlResponse.json +1 -1
- data/schemas/tagKeysResponse.json +14 -0
- data/schemas/tagValuesResponse.json +19 -0
- data/schemas/templateKeywords.json +14 -0
- data/schemas/timeSeriesData.json +12 -2
- data/schemas/timeSeriesQuery.json +94 -14
- data/schemas/userCredentials.json +15 -3
- data/schemas/userPost.json +23 -7
- metadata +27 -6
data/schemas/advancedQuery.json
CHANGED
@@ -100,6 +100,28 @@
|
|
100
100
|
},
|
101
101
|
"$ci": {
|
102
102
|
"type": "boolean"
|
103
|
+
},
|
104
|
+
"$in": {
|
105
|
+
"type": "array",
|
106
|
+
"maxItems": 100,
|
107
|
+
"items": {
|
108
|
+
"type": [
|
109
|
+
"string",
|
110
|
+
"number",
|
111
|
+
"boolean"
|
112
|
+
]
|
113
|
+
}
|
114
|
+
},
|
115
|
+
"$nin": {
|
116
|
+
"type": "array",
|
117
|
+
"maxItems": 100,
|
118
|
+
"items": {
|
119
|
+
"type": [
|
120
|
+
"string",
|
121
|
+
"number",
|
122
|
+
"boolean"
|
123
|
+
]
|
124
|
+
}
|
103
125
|
}
|
104
126
|
},
|
105
127
|
"additionalProperties": false
|
data/schemas/application.json
CHANGED
@@ -18,6 +18,14 @@
|
|
18
18
|
"type": "string",
|
19
19
|
"format": "date-time"
|
20
20
|
},
|
21
|
+
"appliedTemplateIds": {
|
22
|
+
"type": "array",
|
23
|
+
"items": {
|
24
|
+
"type": "string",
|
25
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
26
|
+
},
|
27
|
+
"maxItems": 1000
|
28
|
+
},
|
21
29
|
"ownerId": {
|
22
30
|
"type": "string",
|
23
31
|
"pattern": "^[A-Fa-f\\d]{24}$"
|
@@ -73,6 +73,7 @@
|
|
73
73
|
"notebooks.*",
|
74
74
|
"webhook.*",
|
75
75
|
"webhooks.*",
|
76
|
+
"application.applyTemplate",
|
76
77
|
"application.archiveData",
|
77
78
|
"application.backfillArchiveData",
|
78
79
|
"application.clone",
|
@@ -148,12 +149,17 @@
|
|
148
149
|
"deviceRecipe.patch",
|
149
150
|
"deviceRecipes.get",
|
150
151
|
"deviceRecipes.post",
|
152
|
+
"devices.attributeNames",
|
151
153
|
"devices.patch",
|
154
|
+
"devices.delete",
|
155
|
+
"devices.removeData",
|
152
156
|
"devices.detailedSummary",
|
153
157
|
"devices.export",
|
154
158
|
"devices.get",
|
155
159
|
"devices.post",
|
156
160
|
"devices.sendCommand",
|
161
|
+
"devices.tagKeys",
|
162
|
+
"devices.tagValues",
|
157
163
|
"edgeDeployments.get",
|
158
164
|
"edgeDeployments.release",
|
159
165
|
"edgeDeployments.remove",
|
@@ -219,23 +225,27 @@
|
|
219
225
|
"file.upload",
|
220
226
|
"files.get",
|
221
227
|
"files.post",
|
228
|
+
"flow.clearStorageEntries",
|
222
229
|
"flow.debug",
|
223
230
|
"flow.delete",
|
224
|
-
"flow.
|
231
|
+
"flow.errors",
|
225
232
|
"flow.get",
|
226
233
|
"flow.getStorageEntries",
|
227
234
|
"flow.log",
|
228
235
|
"flow.patch",
|
229
236
|
"flow.pressVirtualButton",
|
230
237
|
"flow.setStorageEntry",
|
238
|
+
"flow.stats",
|
231
239
|
"flows.get",
|
232
240
|
"flows.getByVersion",
|
233
241
|
"flows.import",
|
234
242
|
"flows.post",
|
235
243
|
"flowVersion.delete",
|
244
|
+
"flowVersion.errors",
|
236
245
|
"flowVersion.get",
|
237
246
|
"flowVersion.log",
|
238
247
|
"flowVersion.patch",
|
248
|
+
"flowVersion.stats",
|
239
249
|
"flowVersions.get",
|
240
250
|
"flowVersions.post",
|
241
251
|
"integration.delete",
|
@@ -0,0 +1,19 @@
|
|
1
|
+
{
|
2
|
+
"$schema": "http://json-schema.org/draft-04/schema#",
|
3
|
+
"type": "object",
|
4
|
+
"properties": {
|
5
|
+
"templateId": {
|
6
|
+
"type": "string",
|
7
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
8
|
+
},
|
9
|
+
"email": {
|
10
|
+
"type": "string",
|
11
|
+
"format": "email",
|
12
|
+
"maxLength": 1024
|
13
|
+
}
|
14
|
+
},
|
15
|
+
"required": [
|
16
|
+
"templateId"
|
17
|
+
],
|
18
|
+
"additionalProperties": false
|
19
|
+
}
|
@@ -23,6 +23,14 @@
|
|
23
23
|
"type": "string",
|
24
24
|
"format": "date-time"
|
25
25
|
},
|
26
|
+
"appliedTemplateIds": {
|
27
|
+
"type": "array",
|
28
|
+
"items": {
|
29
|
+
"type": "string",
|
30
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
31
|
+
},
|
32
|
+
"maxItems": 1000
|
33
|
+
},
|
26
34
|
"ownerId": {
|
27
35
|
"type": "string",
|
28
36
|
"pattern": "^[A-Fa-f\\d]{24}$"
|
@@ -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
|
},
|
data/schemas/applications.json
CHANGED
@@ -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}$"
|
data/schemas/authedUser.json
CHANGED
data/schemas/changePassword.json
CHANGED
@@ -13,9 +13,9 @@
|
|
13
13
|
},
|
14
14
|
"newPassword": {
|
15
15
|
"type": "string",
|
16
|
-
"minLength":
|
16
|
+
"minLength": 12,
|
17
17
|
"maxLength": 2048,
|
18
|
-
"pattern": "^(?=.*[A-Z])(?=.*[^A-z0-9])(?=.*[0-9])(?=.*[a-z]).{
|
18
|
+
"pattern": "^(?=.*[A-Z])(?=.*[^A-Za-z0-9])(?=.*[0-9])(?=.*[a-z]).{12,}$"
|
19
19
|
},
|
20
20
|
"invalidateExistingTokens": {
|
21
21
|
"type": "boolean"
|
data/schemas/dashboard.json
CHANGED
@@ -349,8 +349,18 @@
|
|
349
349
|
"type": "object",
|
350
350
|
"properties": {
|
351
351
|
"value": {
|
352
|
-
"
|
353
|
-
|
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
|
-
"
|
603
|
-
|
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
|
-
"
|
766
|
-
|
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,
|
@@ -1267,6 +1301,9 @@
|
|
1267
1301
|
"type": "string",
|
1268
1302
|
"maxLength": 255
|
1269
1303
|
}
|
1304
|
+
},
|
1305
|
+
"includeDeviceInfo": {
|
1306
|
+
"type": "boolean"
|
1270
1307
|
}
|
1271
1308
|
},
|
1272
1309
|
"additionalProperties": false
|
@@ -1744,8 +1781,18 @@
|
|
1744
1781
|
"type": "object",
|
1745
1782
|
"properties": {
|
1746
1783
|
"value": {
|
1747
|
-
"
|
1748
|
-
|
1784
|
+
"oneOf": [
|
1785
|
+
{
|
1786
|
+
"type": "string",
|
1787
|
+
"maxLength": 255
|
1788
|
+
},
|
1789
|
+
{
|
1790
|
+
"type": "number"
|
1791
|
+
},
|
1792
|
+
{
|
1793
|
+
"type": "boolean"
|
1794
|
+
}
|
1795
|
+
]
|
1749
1796
|
}
|
1750
1797
|
},
|
1751
1798
|
"additionalProperties": false,
|
@@ -1800,6 +1847,10 @@
|
|
1800
1847
|
"type": "string",
|
1801
1848
|
"maxLength": 255
|
1802
1849
|
},
|
1850
|
+
"expression": {
|
1851
|
+
"type": "string",
|
1852
|
+
"maxLength": 255
|
1853
|
+
},
|
1803
1854
|
"yAxisLabel": {
|
1804
1855
|
"type": "string",
|
1805
1856
|
"maxLength": 255
|
@@ -2030,8 +2081,18 @@
|
|
2030
2081
|
"type": "object",
|
2031
2082
|
"properties": {
|
2032
2083
|
"value": {
|
2033
|
-
"
|
2034
|
-
|
2084
|
+
"oneOf": [
|
2085
|
+
{
|
2086
|
+
"type": "string",
|
2087
|
+
"maxLength": 255
|
2088
|
+
},
|
2089
|
+
{
|
2090
|
+
"type": "number"
|
2091
|
+
},
|
2092
|
+
{
|
2093
|
+
"type": "boolean"
|
2094
|
+
}
|
2095
|
+
]
|
2035
2096
|
}
|
2036
2097
|
},
|
2037
2098
|
"additionalProperties": false,
|
@@ -2305,6 +2366,10 @@
|
|
2305
2366
|
"normal",
|
2306
2367
|
"satellite"
|
2307
2368
|
]
|
2369
|
+
},
|
2370
|
+
"query": {
|
2371
|
+
"type": "string",
|
2372
|
+
"maxLength": 32767
|
2308
2373
|
}
|
2309
2374
|
},
|
2310
2375
|
"additionalProperties": false
|
@@ -2512,7 +2577,7 @@
|
|
2512
2577
|
},
|
2513
2578
|
"segments": {
|
2514
2579
|
"type": "array",
|
2515
|
-
"maxItems":
|
2580
|
+
"maxItems": 300,
|
2516
2581
|
"items": {
|
2517
2582
|
"oneOf": [
|
2518
2583
|
{
|
@@ -2608,8 +2673,18 @@
|
|
2608
2673
|
"type": "object",
|
2609
2674
|
"properties": {
|
2610
2675
|
"value": {
|
2611
|
-
"
|
2612
|
-
|
2676
|
+
"oneOf": [
|
2677
|
+
{
|
2678
|
+
"type": "string",
|
2679
|
+
"maxLength": 255
|
2680
|
+
},
|
2681
|
+
{
|
2682
|
+
"type": "number"
|
2683
|
+
},
|
2684
|
+
{
|
2685
|
+
"type": "boolean"
|
2686
|
+
}
|
2687
|
+
]
|
2613
2688
|
}
|
2614
2689
|
},
|
2615
2690
|
"additionalProperties": false,
|
@@ -3202,8 +3277,18 @@
|
|
3202
3277
|
"type": "object",
|
3203
3278
|
"properties": {
|
3204
3279
|
"value": {
|
3205
|
-
"
|
3206
|
-
|
3280
|
+
"oneOf": [
|
3281
|
+
{
|
3282
|
+
"type": "string",
|
3283
|
+
"maxLength": 255
|
3284
|
+
},
|
3285
|
+
{
|
3286
|
+
"type": "number"
|
3287
|
+
},
|
3288
|
+
{
|
3289
|
+
"type": "boolean"
|
3290
|
+
}
|
3291
|
+
]
|
3207
3292
|
}
|
3208
3293
|
},
|
3209
3294
|
"additionalProperties": false,
|
@@ -3258,6 +3343,10 @@
|
|
3258
3343
|
"type": "string",
|
3259
3344
|
"maxLength": 255
|
3260
3345
|
},
|
3346
|
+
"expression": {
|
3347
|
+
"type": "string",
|
3348
|
+
"maxLength": 255
|
3349
|
+
},
|
3261
3350
|
"yAxisLabel": {
|
3262
3351
|
"type": "string",
|
3263
3352
|
"maxLength": 255
|
@@ -3545,8 +3634,18 @@
|
|
3545
3634
|
"type": "object",
|
3546
3635
|
"properties": {
|
3547
3636
|
"value": {
|
3548
|
-
"
|
3549
|
-
|
3637
|
+
"oneOf": [
|
3638
|
+
{
|
3639
|
+
"type": "string",
|
3640
|
+
"maxLength": 255
|
3641
|
+
},
|
3642
|
+
{
|
3643
|
+
"type": "number"
|
3644
|
+
},
|
3645
|
+
{
|
3646
|
+
"type": "boolean"
|
3647
|
+
}
|
3648
|
+
]
|
3550
3649
|
}
|
3551
3650
|
},
|
3552
3651
|
"additionalProperties": false,
|
@@ -3769,8 +3868,18 @@
|
|
3769
3868
|
"type": "object",
|
3770
3869
|
"properties": {
|
3771
3870
|
"value": {
|
3772
|
-
"
|
3773
|
-
|
3871
|
+
"oneOf": [
|
3872
|
+
{
|
3873
|
+
"type": "string",
|
3874
|
+
"maxLength": 255
|
3875
|
+
},
|
3876
|
+
{
|
3877
|
+
"type": "number"
|
3878
|
+
},
|
3879
|
+
{
|
3880
|
+
"type": "boolean"
|
3881
|
+
}
|
3882
|
+
]
|
3774
3883
|
}
|
3775
3884
|
},
|
3776
3885
|
"additionalProperties": false,
|
@@ -3822,6 +3931,9 @@
|
|
3822
3931
|
},
|
3823
3932
|
"defaultValue": {
|
3824
3933
|
"type": "boolean"
|
3934
|
+
},
|
3935
|
+
"includeLabel": {
|
3936
|
+
"type": "boolean"
|
3825
3937
|
}
|
3826
3938
|
},
|
3827
3939
|
"additionalProperties": false
|
@@ -3948,8 +4060,18 @@
|
|
3948
4060
|
"type": "object",
|
3949
4061
|
"properties": {
|
3950
4062
|
"value": {
|
3951
|
-
"
|
3952
|
-
|
4063
|
+
"oneOf": [
|
4064
|
+
{
|
4065
|
+
"type": "string",
|
4066
|
+
"maxLength": 255
|
4067
|
+
},
|
4068
|
+
{
|
4069
|
+
"type": "number"
|
4070
|
+
},
|
4071
|
+
{
|
4072
|
+
"type": "boolean"
|
4073
|
+
}
|
4074
|
+
]
|
3953
4075
|
}
|
3954
4076
|
},
|
3955
4077
|
"additionalProperties": false,
|
@@ -4128,8 +4250,18 @@
|
|
4128
4250
|
"type": "object",
|
4129
4251
|
"properties": {
|
4130
4252
|
"value": {
|
4131
|
-
"
|
4132
|
-
|
4253
|
+
"oneOf": [
|
4254
|
+
{
|
4255
|
+
"type": "string",
|
4256
|
+
"maxLength": 255
|
4257
|
+
},
|
4258
|
+
{
|
4259
|
+
"type": "number"
|
4260
|
+
},
|
4261
|
+
{
|
4262
|
+
"type": "boolean"
|
4263
|
+
}
|
4264
|
+
]
|
4133
4265
|
}
|
4134
4266
|
},
|
4135
4267
|
"additionalProperties": false,
|
@@ -4534,6 +4666,10 @@
|
|
4534
4666
|
"type": "string",
|
4535
4667
|
"maxLength": 32767
|
4536
4668
|
},
|
4669
|
+
"query": {
|
4670
|
+
"type": "string",
|
4671
|
+
"maxLength": 32767
|
4672
|
+
},
|
4537
4673
|
"resizedPins": {
|
4538
4674
|
"type": "boolean"
|
4539
4675
|
},
|
@@ -4774,8 +4910,18 @@
|
|
4774
4910
|
"type": "object",
|
4775
4911
|
"properties": {
|
4776
4912
|
"value": {
|
4777
|
-
"
|
4778
|
-
|
4913
|
+
"oneOf": [
|
4914
|
+
{
|
4915
|
+
"type": "string",
|
4916
|
+
"maxLength": 255
|
4917
|
+
},
|
4918
|
+
{
|
4919
|
+
"type": "number"
|
4920
|
+
},
|
4921
|
+
{
|
4922
|
+
"type": "boolean"
|
4923
|
+
}
|
4924
|
+
]
|
4779
4925
|
}
|
4780
4926
|
},
|
4781
4927
|
"additionalProperties": false,
|
@@ -4830,6 +4976,10 @@
|
|
4830
4976
|
"type": "string",
|
4831
4977
|
"maxLength": 255
|
4832
4978
|
},
|
4979
|
+
"expression": {
|
4980
|
+
"type": "string",
|
4981
|
+
"maxLength": 255
|
4982
|
+
},
|
4833
4983
|
"yAxisLabel": {
|
4834
4984
|
"type": "string",
|
4835
4985
|
"maxLength": 255
|