losant_rest 1.10.3 → 1.10.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/docs/_schemas.md +1375 -139
- data/docs/application.md +42 -0
- data/docs/applicationApiTokens.md +1 -1
- data/docs/applicationTemplate.md +46 -0
- data/docs/applicationTemplates.md +76 -1
- data/docs/device.md +6 -3
- data/docs/me.md +0 -36
- 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/me.rb +0 -41
- data/lib/losant_rest/version.rb +1 -1
- data/schemas/application.json +8 -0
- data/schemas/applicationApiTokenPost.json +1 -0
- 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/changePassword.json +2 -2
- data/schemas/dashboard.json +145 -25
- data/schemas/dashboardPatch.json +145 -25
- data/schemas/dashboardPost.json +145 -25
- data/schemas/dashboards.json +145 -25
- data/schemas/dataExport.json +132 -1
- data/schemas/experienceLinkedResources.json +39 -0
- data/schemas/flow.json +13 -0
- data/schemas/flowPatch.json +13 -0
- data/schemas/flowPost.json +13 -0
- data/schemas/flowVersion.json +26 -0
- data/schemas/flowVersionPost.json +13 -0
- data/schemas/flowVersions.json +26 -0
- data/schemas/flows.json +13 -0
- data/schemas/flowsImportPost.json +26 -0
- data/schemas/flowsImportResult.json +39 -0
- data/schemas/githubLogin.json +7 -3
- data/schemas/me.json +0 -3
- data/schemas/mePatch.json +2 -2
- data/schemas/orgInviteInfo.json +3 -0
- data/schemas/orgInvitePost.json +3 -0
- data/schemas/orgInvites.json +3 -0
- data/schemas/passwordResetFinish.json +2 -2
- data/schemas/templateKeywords.json +14 -0
- data/schemas/timeSeriesData.json +12 -2
- data/schemas/timeSeriesQuery.json +94 -14
- data/schemas/userCredentials.json +5 -2
- data/schemas/userPost.json +13 -6
- metadata +11 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5dabfee400e588e73f5324821ebacf2675eb93eb747cab9eb66d93df74e81a6f
|
4
|
+
data.tar.gz: 86f91788b41077ee4fdb3a7a7780b9a02afffa36b9e59cc8ad1af144d2cf6919
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eab2498ec252f6f57ab69bf38451d11045b3d8c03873897bfee5704616cb0caff90b06431133c9b293ece02699a2583a2eeba81c42d6acb33936c6e69813452d
|
7
|
+
data.tar.gz: 29c4a5fd16296f60dd59e2f5e4140033421924fbb64ec21c6fcce575334cbfb6925aacfb3a1d244d423418b1d3b2bb7a5d48b9d91e635f0248ef50b7672b6595
|
data/docs/_schemas.md
CHANGED
@@ -8,6 +8,7 @@
|
|
8
8
|
* [API Tokens](#api-tokens)
|
9
9
|
* [Application](#application)
|
10
10
|
* [Application API Token Post](#application-api-token-post)
|
11
|
+
* [Application Apply Template Patch Schema](#application-apply-template-patch-schema)
|
11
12
|
* [Application Certificate](#application-certificate)
|
12
13
|
* [Application Certificate Authorities](#application-certificate-authorities)
|
13
14
|
* [Application Certificate Authority](#application-certificate-authority)
|
@@ -32,6 +33,8 @@
|
|
32
33
|
* [Application Readme Patch](#application-readme-patch)
|
33
34
|
* [Application Search Result](#application-search-result)
|
34
35
|
* [Application Template](#application-template)
|
36
|
+
* [Application Template Categories](#application-template-categories)
|
37
|
+
* [Application Template Category](#application-template-category)
|
35
38
|
* [Application Templates](#application-templates)
|
36
39
|
* [Applications](#applications)
|
37
40
|
* [Audit Log](#audit-log)
|
@@ -198,6 +201,7 @@
|
|
198
201
|
* [SAML Response](#saml-response)
|
199
202
|
* [SSO Request](#sso-request)
|
200
203
|
* [Success](#success)
|
204
|
+
* [Template Keywords](#template-keywords)
|
201
205
|
* [Time Series Data](#time-series-data)
|
202
206
|
* [Time Series Query](#time-series-query)
|
203
207
|
* [User Credentials](#user-credentials)
|
@@ -2985,6 +2989,14 @@ Schema for a single Application
|
|
2985
2989
|
"type": "string",
|
2986
2990
|
"format": "date-time"
|
2987
2991
|
},
|
2992
|
+
"appliedTemplateIds": {
|
2993
|
+
"type": "array",
|
2994
|
+
"items": {
|
2995
|
+
"type": "string",
|
2996
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
2997
|
+
},
|
2998
|
+
"maxItems": 1000
|
2999
|
+
},
|
2988
3000
|
"ownerId": {
|
2989
3001
|
"type": "string",
|
2990
3002
|
"pattern": "^[A-Fa-f\\d]{24}$"
|
@@ -3435,6 +3447,7 @@ Schema for the body of an Application API Token creation request
|
|
3435
3447
|
"notebooks.*",
|
3436
3448
|
"webhook.*",
|
3437
3449
|
"webhooks.*",
|
3450
|
+
"application.applyTemplate",
|
3438
3451
|
"application.archiveData",
|
3439
3452
|
"application.backfillArchiveData",
|
3440
3453
|
"application.clone",
|
@@ -3657,6 +3670,44 @@ Schema for the body of an Application API Token creation request
|
|
3657
3670
|
|
3658
3671
|
<br/>
|
3659
3672
|
|
3673
|
+
## Application Apply Template Patch Schema
|
3674
|
+
|
3675
|
+
Schema for the body of an application template import request
|
3676
|
+
|
3677
|
+
### <a name="application-apply-template-patch-schema-schema"></a> Schema
|
3678
|
+
|
3679
|
+
```json
|
3680
|
+
{
|
3681
|
+
"$schema": "http://json-schema.org/draft-04/schema#",
|
3682
|
+
"type": "object",
|
3683
|
+
"properties": {
|
3684
|
+
"templateId": {
|
3685
|
+
"type": "string",
|
3686
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
3687
|
+
},
|
3688
|
+
"email": {
|
3689
|
+
"type": "string",
|
3690
|
+
"format": "email",
|
3691
|
+
"maxLength": 1024
|
3692
|
+
}
|
3693
|
+
},
|
3694
|
+
"required": [
|
3695
|
+
"templateId"
|
3696
|
+
],
|
3697
|
+
"additionalProperties": false
|
3698
|
+
}
|
3699
|
+
```
|
3700
|
+
### <a name="application-apply-template-patch-schema-example"></a> Example
|
3701
|
+
|
3702
|
+
```json
|
3703
|
+
{
|
3704
|
+
"templateId": "575ec8687ae143cd83dc4a97",
|
3705
|
+
"email": "email.example.com"
|
3706
|
+
}
|
3707
|
+
```
|
3708
|
+
|
3709
|
+
<br/>
|
3710
|
+
|
3660
3711
|
## Application Certificate
|
3661
3712
|
|
3662
3713
|
Schema for a single Application Certificate
|
@@ -4750,6 +4801,14 @@ Schema for creating an application by template result
|
|
4750
4801
|
"type": "string",
|
4751
4802
|
"format": "date-time"
|
4752
4803
|
},
|
4804
|
+
"appliedTemplateIds": {
|
4805
|
+
"type": "array",
|
4806
|
+
"items": {
|
4807
|
+
"type": "string",
|
4808
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
4809
|
+
},
|
4810
|
+
"maxItems": 1000
|
4811
|
+
},
|
4753
4812
|
"ownerId": {
|
4754
4813
|
"type": "string",
|
4755
4814
|
"pattern": "^[A-Fa-f\\d]{24}$"
|
@@ -6128,6 +6187,14 @@ Schema for the body of an Application creation request
|
|
6128
6187
|
"type": "string",
|
6129
6188
|
"maxLength": 1024
|
6130
6189
|
},
|
6190
|
+
"appliedTemplateIds": {
|
6191
|
+
"type": "array",
|
6192
|
+
"items": {
|
6193
|
+
"type": "string",
|
6194
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
6195
|
+
},
|
6196
|
+
"maxItems": 1000
|
6197
|
+
},
|
6131
6198
|
"endpointSlug": {
|
6132
6199
|
"type": "string",
|
6133
6200
|
"minLength": 4,
|
@@ -6534,6 +6601,26 @@ Schema for a single Application Template
|
|
6534
6601
|
"minLength": 1,
|
6535
6602
|
"maxLength": 255
|
6536
6603
|
},
|
6604
|
+
"readme": {
|
6605
|
+
"type": "string",
|
6606
|
+
"maxLength": 131072
|
6607
|
+
},
|
6608
|
+
"categoryIds": {
|
6609
|
+
"type": "array",
|
6610
|
+
"items": {
|
6611
|
+
"type": "string",
|
6612
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
6613
|
+
},
|
6614
|
+
"maxItems": 1000
|
6615
|
+
},
|
6616
|
+
"keywords": {
|
6617
|
+
"type": "array",
|
6618
|
+
"items": {
|
6619
|
+
"type": "string",
|
6620
|
+
"pattern": "^[0-9a-zA-Z_-]{1,255}$"
|
6621
|
+
},
|
6622
|
+
"maxItems": 100
|
6623
|
+
},
|
6537
6624
|
"description": {
|
6538
6625
|
"type": "string",
|
6539
6626
|
"maxLength": 1024
|
@@ -6649,6 +6736,124 @@ Schema for a single Application Template
|
|
6649
6736
|
|
6650
6737
|
<br/>
|
6651
6738
|
|
6739
|
+
## Application Template Categories
|
6740
|
+
|
6741
|
+
Schema for a collection of Application Template Categories
|
6742
|
+
|
6743
|
+
### <a name="application-template-categories-schema"></a> Schema
|
6744
|
+
|
6745
|
+
```json
|
6746
|
+
{
|
6747
|
+
"$schema": "http://json-schema.org/draft-04/schema#",
|
6748
|
+
"type": "object",
|
6749
|
+
"properties": {
|
6750
|
+
"items": {
|
6751
|
+
"type": "array",
|
6752
|
+
"items": {
|
6753
|
+
"title": "Application Template Category",
|
6754
|
+
"description": "Schema for a single Application Template Category",
|
6755
|
+
"type": "object",
|
6756
|
+
"properties": {
|
6757
|
+
"id": {
|
6758
|
+
"type": "string",
|
6759
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
6760
|
+
},
|
6761
|
+
"parentId": {
|
6762
|
+
"type": "string",
|
6763
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
6764
|
+
},
|
6765
|
+
"name": {
|
6766
|
+
"type": "string",
|
6767
|
+
"minLength": 1,
|
6768
|
+
"maxLength": 255
|
6769
|
+
},
|
6770
|
+
"description": {
|
6771
|
+
"type": "string",
|
6772
|
+
"maxLength": 32767
|
6773
|
+
}
|
6774
|
+
}
|
6775
|
+
}
|
6776
|
+
},
|
6777
|
+
"baseId": {
|
6778
|
+
"type": "string",
|
6779
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
6780
|
+
},
|
6781
|
+
"count": {
|
6782
|
+
"type": "integer"
|
6783
|
+
},
|
6784
|
+
"totalCount": {
|
6785
|
+
"type": "integer"
|
6786
|
+
}
|
6787
|
+
}
|
6788
|
+
}
|
6789
|
+
```
|
6790
|
+
### <a name="application-template-categories-example"></a> Example
|
6791
|
+
|
6792
|
+
```json
|
6793
|
+
{
|
6794
|
+
"items": [
|
6795
|
+
{
|
6796
|
+
"id": "586e9d5151265cb9d72f6ec6",
|
6797
|
+
"name": "Workflows",
|
6798
|
+
"description": "Pre-built workflows for quick solution development"
|
6799
|
+
},
|
6800
|
+
{
|
6801
|
+
"id": "586e9d5151265cb9d72f6ec7",
|
6802
|
+
"name": "Device Recipes",
|
6803
|
+
"description": "Pre-configured device recipes"
|
6804
|
+
}
|
6805
|
+
],
|
6806
|
+
"baseId": "586e9d5151265cb9d72f6ec6",
|
6807
|
+
"count": 2,
|
6808
|
+
"totalCount": 2
|
6809
|
+
}
|
6810
|
+
```
|
6811
|
+
|
6812
|
+
<br/>
|
6813
|
+
|
6814
|
+
## Application Template Category
|
6815
|
+
|
6816
|
+
Schema for a single Application Template Category
|
6817
|
+
|
6818
|
+
### <a name="application-template-category-schema"></a> Schema
|
6819
|
+
|
6820
|
+
```json
|
6821
|
+
{
|
6822
|
+
"$schema": "http://json-schema.org/draft-04/schema#",
|
6823
|
+
"type": "object",
|
6824
|
+
"properties": {
|
6825
|
+
"id": {
|
6826
|
+
"type": "string",
|
6827
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
6828
|
+
},
|
6829
|
+
"parentId": {
|
6830
|
+
"type": "string",
|
6831
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
6832
|
+
},
|
6833
|
+
"name": {
|
6834
|
+
"type": "string",
|
6835
|
+
"minLength": 1,
|
6836
|
+
"maxLength": 255
|
6837
|
+
},
|
6838
|
+
"description": {
|
6839
|
+
"type": "string",
|
6840
|
+
"maxLength": 32767
|
6841
|
+
}
|
6842
|
+
}
|
6843
|
+
}
|
6844
|
+
```
|
6845
|
+
### <a name="application-template-category-example"></a> Example
|
6846
|
+
|
6847
|
+
```json
|
6848
|
+
{
|
6849
|
+
"id": "586e9d5151265cb9d72f6ec6",
|
6850
|
+
"name": "Workflows",
|
6851
|
+
"description": "Pre-built workflows for quick solution development"
|
6852
|
+
}
|
6853
|
+
```
|
6854
|
+
|
6855
|
+
<br/>
|
6856
|
+
|
6652
6857
|
## Application Templates
|
6653
6858
|
|
6654
6859
|
Schema for a collection of Application Templates
|
@@ -6684,6 +6889,26 @@ Schema for a collection of Application Templates
|
|
6684
6889
|
"minLength": 1,
|
6685
6890
|
"maxLength": 255
|
6686
6891
|
},
|
6892
|
+
"readme": {
|
6893
|
+
"type": "string",
|
6894
|
+
"maxLength": 131072
|
6895
|
+
},
|
6896
|
+
"categoryIds": {
|
6897
|
+
"type": "array",
|
6898
|
+
"items": {
|
6899
|
+
"type": "string",
|
6900
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
6901
|
+
},
|
6902
|
+
"maxItems": 1000
|
6903
|
+
},
|
6904
|
+
"keywords": {
|
6905
|
+
"type": "array",
|
6906
|
+
"items": {
|
6907
|
+
"type": "string",
|
6908
|
+
"pattern": "^[0-9a-zA-Z_-]{1,255}$"
|
6909
|
+
},
|
6910
|
+
"maxItems": 100
|
6911
|
+
},
|
6687
6912
|
"description": {
|
6688
6913
|
"type": "string",
|
6689
6914
|
"maxLength": 1024
|
@@ -6781,6 +7006,18 @@ Schema for a collection of Application Templates
|
|
6781
7006
|
"filterField": {
|
6782
7007
|
"type": "string"
|
6783
7008
|
},
|
7009
|
+
"categoryId": {
|
7010
|
+
"type": "string",
|
7011
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
7012
|
+
},
|
7013
|
+
"keywords": {
|
7014
|
+
"type": "array",
|
7015
|
+
"items": {
|
7016
|
+
"type": "string",
|
7017
|
+
"pattern": "^[0-9a-zA-Z_-]{1,255}$"
|
7018
|
+
},
|
7019
|
+
"maxItems": 100
|
7020
|
+
},
|
6784
7021
|
"sortField": {
|
6785
7022
|
"type": "string"
|
6786
7023
|
},
|
@@ -6877,6 +7114,14 @@ Schema for a collection of Applications
|
|
6877
7114
|
"type": "string",
|
6878
7115
|
"format": "date-time"
|
6879
7116
|
},
|
7117
|
+
"appliedTemplateIds": {
|
7118
|
+
"type": "array",
|
7119
|
+
"items": {
|
7120
|
+
"type": "string",
|
7121
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
7122
|
+
},
|
7123
|
+
"maxItems": 1000
|
7124
|
+
},
|
6880
7125
|
"ownerId": {
|
6881
7126
|
"type": "string",
|
6882
7127
|
"pattern": "^[A-Fa-f\\d]{24}$"
|
@@ -7956,9 +8201,9 @@ Schema for the body of a request to change the current user's password
|
|
7956
8201
|
},
|
7957
8202
|
"newPassword": {
|
7958
8203
|
"type": "string",
|
7959
|
-
"minLength":
|
8204
|
+
"minLength": 12,
|
7960
8205
|
"maxLength": 2048,
|
7961
|
-
"pattern": "^(?=.*[A-Z])(?=.*[^A-z0-9])(?=.*[0-9])(?=.*[a-z]).{
|
8206
|
+
"pattern": "^(?=.*[A-Z])(?=.*[^A-z0-9])(?=.*[0-9])(?=.*[a-z]).{12,}$"
|
7962
8207
|
},
|
7963
8208
|
"invalidateExistingTokens": {
|
7964
8209
|
"type": "boolean"
|
@@ -8411,8 +8656,18 @@ Schema for a single Dashboard
|
|
8411
8656
|
"type": "object",
|
8412
8657
|
"properties": {
|
8413
8658
|
"value": {
|
8414
|
-
"
|
8415
|
-
|
8659
|
+
"oneOf": [
|
8660
|
+
{
|
8661
|
+
"type": "string",
|
8662
|
+
"maxLength": 255
|
8663
|
+
},
|
8664
|
+
{
|
8665
|
+
"type": "number"
|
8666
|
+
},
|
8667
|
+
{
|
8668
|
+
"type": "boolean"
|
8669
|
+
}
|
8670
|
+
]
|
8416
8671
|
}
|
8417
8672
|
},
|
8418
8673
|
"additionalProperties": false,
|
@@ -8665,8 +8920,18 @@ Schema for a single Dashboard
|
|
8665
8920
|
"type": "object",
|
8666
8921
|
"properties": {
|
8667
8922
|
"value": {
|
8668
|
-
"
|
8669
|
-
|
8923
|
+
"oneOf": [
|
8924
|
+
{
|
8925
|
+
"type": "string",
|
8926
|
+
"maxLength": 255
|
8927
|
+
},
|
8928
|
+
{
|
8929
|
+
"type": "number"
|
8930
|
+
},
|
8931
|
+
{
|
8932
|
+
"type": "boolean"
|
8933
|
+
}
|
8934
|
+
]
|
8670
8935
|
}
|
8671
8936
|
},
|
8672
8937
|
"additionalProperties": false,
|
@@ -8828,8 +9093,18 @@ Schema for a single Dashboard
|
|
8828
9093
|
"type": "object",
|
8829
9094
|
"properties": {
|
8830
9095
|
"value": {
|
8831
|
-
"
|
8832
|
-
|
9096
|
+
"oneOf": [
|
9097
|
+
{
|
9098
|
+
"type": "string",
|
9099
|
+
"maxLength": 255
|
9100
|
+
},
|
9101
|
+
{
|
9102
|
+
"type": "number"
|
9103
|
+
},
|
9104
|
+
{
|
9105
|
+
"type": "boolean"
|
9106
|
+
}
|
9107
|
+
]
|
8833
9108
|
}
|
8834
9109
|
},
|
8835
9110
|
"additionalProperties": false,
|
@@ -9810,8 +10085,18 @@ Schema for a single Dashboard
|
|
9810
10085
|
"type": "object",
|
9811
10086
|
"properties": {
|
9812
10087
|
"value": {
|
9813
|
-
"
|
9814
|
-
|
10088
|
+
"oneOf": [
|
10089
|
+
{
|
10090
|
+
"type": "string",
|
10091
|
+
"maxLength": 255
|
10092
|
+
},
|
10093
|
+
{
|
10094
|
+
"type": "number"
|
10095
|
+
},
|
10096
|
+
{
|
10097
|
+
"type": "boolean"
|
10098
|
+
}
|
10099
|
+
]
|
9815
10100
|
}
|
9816
10101
|
},
|
9817
10102
|
"additionalProperties": false,
|
@@ -10100,8 +10385,18 @@ Schema for a single Dashboard
|
|
10100
10385
|
"type": "object",
|
10101
10386
|
"properties": {
|
10102
10387
|
"value": {
|
10103
|
-
"
|
10104
|
-
|
10388
|
+
"oneOf": [
|
10389
|
+
{
|
10390
|
+
"type": "string",
|
10391
|
+
"maxLength": 255
|
10392
|
+
},
|
10393
|
+
{
|
10394
|
+
"type": "number"
|
10395
|
+
},
|
10396
|
+
{
|
10397
|
+
"type": "boolean"
|
10398
|
+
}
|
10399
|
+
]
|
10105
10400
|
}
|
10106
10401
|
},
|
10107
10402
|
"additionalProperties": false,
|
@@ -10586,7 +10881,7 @@ Schema for a single Dashboard
|
|
10586
10881
|
},
|
10587
10882
|
"segments": {
|
10588
10883
|
"type": "array",
|
10589
|
-
"maxItems":
|
10884
|
+
"maxItems": 300,
|
10590
10885
|
"items": {
|
10591
10886
|
"oneOf": [
|
10592
10887
|
{
|
@@ -10682,8 +10977,18 @@ Schema for a single Dashboard
|
|
10682
10977
|
"type": "object",
|
10683
10978
|
"properties": {
|
10684
10979
|
"value": {
|
10685
|
-
"
|
10686
|
-
|
10980
|
+
"oneOf": [
|
10981
|
+
{
|
10982
|
+
"type": "string",
|
10983
|
+
"maxLength": 255
|
10984
|
+
},
|
10985
|
+
{
|
10986
|
+
"type": "number"
|
10987
|
+
},
|
10988
|
+
{
|
10989
|
+
"type": "boolean"
|
10990
|
+
}
|
10991
|
+
]
|
10687
10992
|
}
|
10688
10993
|
},
|
10689
10994
|
"additionalProperties": false,
|
@@ -11276,8 +11581,18 @@ Schema for a single Dashboard
|
|
11276
11581
|
"type": "object",
|
11277
11582
|
"properties": {
|
11278
11583
|
"value": {
|
11279
|
-
"
|
11280
|
-
|
11584
|
+
"oneOf": [
|
11585
|
+
{
|
11586
|
+
"type": "string",
|
11587
|
+
"maxLength": 255
|
11588
|
+
},
|
11589
|
+
{
|
11590
|
+
"type": "number"
|
11591
|
+
},
|
11592
|
+
{
|
11593
|
+
"type": "boolean"
|
11594
|
+
}
|
11595
|
+
]
|
11281
11596
|
}
|
11282
11597
|
},
|
11283
11598
|
"additionalProperties": false,
|
@@ -11623,8 +11938,18 @@ Schema for a single Dashboard
|
|
11623
11938
|
"type": "object",
|
11624
11939
|
"properties": {
|
11625
11940
|
"value": {
|
11626
|
-
"
|
11627
|
-
|
11941
|
+
"oneOf": [
|
11942
|
+
{
|
11943
|
+
"type": "string",
|
11944
|
+
"maxLength": 255
|
11945
|
+
},
|
11946
|
+
{
|
11947
|
+
"type": "number"
|
11948
|
+
},
|
11949
|
+
{
|
11950
|
+
"type": "boolean"
|
11951
|
+
}
|
11952
|
+
]
|
11628
11953
|
}
|
11629
11954
|
},
|
11630
11955
|
"additionalProperties": false,
|
@@ -11847,8 +12172,18 @@ Schema for a single Dashboard
|
|
11847
12172
|
"type": "object",
|
11848
12173
|
"properties": {
|
11849
12174
|
"value": {
|
11850
|
-
"
|
11851
|
-
|
12175
|
+
"oneOf": [
|
12176
|
+
{
|
12177
|
+
"type": "string",
|
12178
|
+
"maxLength": 255
|
12179
|
+
},
|
12180
|
+
{
|
12181
|
+
"type": "number"
|
12182
|
+
},
|
12183
|
+
{
|
12184
|
+
"type": "boolean"
|
12185
|
+
}
|
12186
|
+
]
|
11852
12187
|
}
|
11853
12188
|
},
|
11854
12189
|
"additionalProperties": false,
|
@@ -12026,8 +12361,18 @@ Schema for a single Dashboard
|
|
12026
12361
|
"type": "object",
|
12027
12362
|
"properties": {
|
12028
12363
|
"value": {
|
12029
|
-
"
|
12030
|
-
|
12364
|
+
"oneOf": [
|
12365
|
+
{
|
12366
|
+
"type": "string",
|
12367
|
+
"maxLength": 255
|
12368
|
+
},
|
12369
|
+
{
|
12370
|
+
"type": "number"
|
12371
|
+
},
|
12372
|
+
{
|
12373
|
+
"type": "boolean"
|
12374
|
+
}
|
12375
|
+
]
|
12031
12376
|
}
|
12032
12377
|
},
|
12033
12378
|
"additionalProperties": false,
|
@@ -12206,8 +12551,18 @@ Schema for a single Dashboard
|
|
12206
12551
|
"type": "object",
|
12207
12552
|
"properties": {
|
12208
12553
|
"value": {
|
12209
|
-
"
|
12210
|
-
|
12554
|
+
"oneOf": [
|
12555
|
+
{
|
12556
|
+
"type": "string",
|
12557
|
+
"maxLength": 255
|
12558
|
+
},
|
12559
|
+
{
|
12560
|
+
"type": "number"
|
12561
|
+
},
|
12562
|
+
{
|
12563
|
+
"type": "boolean"
|
12564
|
+
}
|
12565
|
+
]
|
12211
12566
|
}
|
12212
12567
|
},
|
12213
12568
|
"additionalProperties": false,
|
@@ -12856,8 +13211,18 @@ Schema for a single Dashboard
|
|
12856
13211
|
"type": "object",
|
12857
13212
|
"properties": {
|
12858
13213
|
"value": {
|
12859
|
-
"
|
12860
|
-
|
13214
|
+
"oneOf": [
|
13215
|
+
{
|
13216
|
+
"type": "string",
|
13217
|
+
"maxLength": 255
|
13218
|
+
},
|
13219
|
+
{
|
13220
|
+
"type": "number"
|
13221
|
+
},
|
13222
|
+
{
|
13223
|
+
"type": "boolean"
|
13224
|
+
}
|
13225
|
+
]
|
12861
13226
|
}
|
12862
13227
|
},
|
12863
13228
|
"additionalProperties": false,
|
@@ -14020,8 +14385,18 @@ Schema for the body of a Dashboard modification request
|
|
14020
14385
|
"type": "object",
|
14021
14386
|
"properties": {
|
14022
14387
|
"value": {
|
14023
|
-
"
|
14024
|
-
|
14388
|
+
"oneOf": [
|
14389
|
+
{
|
14390
|
+
"type": "string",
|
14391
|
+
"maxLength": 255
|
14392
|
+
},
|
14393
|
+
{
|
14394
|
+
"type": "number"
|
14395
|
+
},
|
14396
|
+
{
|
14397
|
+
"type": "boolean"
|
14398
|
+
}
|
14399
|
+
]
|
14025
14400
|
}
|
14026
14401
|
},
|
14027
14402
|
"additionalProperties": false,
|
@@ -14274,8 +14649,18 @@ Schema for the body of a Dashboard modification request
|
|
14274
14649
|
"type": "object",
|
14275
14650
|
"properties": {
|
14276
14651
|
"value": {
|
14277
|
-
"
|
14278
|
-
|
14652
|
+
"oneOf": [
|
14653
|
+
{
|
14654
|
+
"type": "string",
|
14655
|
+
"maxLength": 255
|
14656
|
+
},
|
14657
|
+
{
|
14658
|
+
"type": "number"
|
14659
|
+
},
|
14660
|
+
{
|
14661
|
+
"type": "boolean"
|
14662
|
+
}
|
14663
|
+
]
|
14279
14664
|
}
|
14280
14665
|
},
|
14281
14666
|
"additionalProperties": false,
|
@@ -14437,8 +14822,18 @@ Schema for the body of a Dashboard modification request
|
|
14437
14822
|
"type": "object",
|
14438
14823
|
"properties": {
|
14439
14824
|
"value": {
|
14440
|
-
"
|
14441
|
-
|
14825
|
+
"oneOf": [
|
14826
|
+
{
|
14827
|
+
"type": "string",
|
14828
|
+
"maxLength": 255
|
14829
|
+
},
|
14830
|
+
{
|
14831
|
+
"type": "number"
|
14832
|
+
},
|
14833
|
+
{
|
14834
|
+
"type": "boolean"
|
14835
|
+
}
|
14836
|
+
]
|
14442
14837
|
}
|
14443
14838
|
},
|
14444
14839
|
"additionalProperties": false,
|
@@ -15419,8 +15814,18 @@ Schema for the body of a Dashboard modification request
|
|
15419
15814
|
"type": "object",
|
15420
15815
|
"properties": {
|
15421
15816
|
"value": {
|
15422
|
-
"
|
15423
|
-
|
15817
|
+
"oneOf": [
|
15818
|
+
{
|
15819
|
+
"type": "string",
|
15820
|
+
"maxLength": 255
|
15821
|
+
},
|
15822
|
+
{
|
15823
|
+
"type": "number"
|
15824
|
+
},
|
15825
|
+
{
|
15826
|
+
"type": "boolean"
|
15827
|
+
}
|
15828
|
+
]
|
15424
15829
|
}
|
15425
15830
|
},
|
15426
15831
|
"additionalProperties": false,
|
@@ -15709,8 +16114,18 @@ Schema for the body of a Dashboard modification request
|
|
15709
16114
|
"type": "object",
|
15710
16115
|
"properties": {
|
15711
16116
|
"value": {
|
15712
|
-
"
|
15713
|
-
|
16117
|
+
"oneOf": [
|
16118
|
+
{
|
16119
|
+
"type": "string",
|
16120
|
+
"maxLength": 255
|
16121
|
+
},
|
16122
|
+
{
|
16123
|
+
"type": "number"
|
16124
|
+
},
|
16125
|
+
{
|
16126
|
+
"type": "boolean"
|
16127
|
+
}
|
16128
|
+
]
|
15714
16129
|
}
|
15715
16130
|
},
|
15716
16131
|
"additionalProperties": false,
|
@@ -16195,7 +16610,7 @@ Schema for the body of a Dashboard modification request
|
|
16195
16610
|
},
|
16196
16611
|
"segments": {
|
16197
16612
|
"type": "array",
|
16198
|
-
"maxItems":
|
16613
|
+
"maxItems": 300,
|
16199
16614
|
"items": {
|
16200
16615
|
"oneOf": [
|
16201
16616
|
{
|
@@ -16291,8 +16706,18 @@ Schema for the body of a Dashboard modification request
|
|
16291
16706
|
"type": "object",
|
16292
16707
|
"properties": {
|
16293
16708
|
"value": {
|
16294
|
-
"
|
16295
|
-
|
16709
|
+
"oneOf": [
|
16710
|
+
{
|
16711
|
+
"type": "string",
|
16712
|
+
"maxLength": 255
|
16713
|
+
},
|
16714
|
+
{
|
16715
|
+
"type": "number"
|
16716
|
+
},
|
16717
|
+
{
|
16718
|
+
"type": "boolean"
|
16719
|
+
}
|
16720
|
+
]
|
16296
16721
|
}
|
16297
16722
|
},
|
16298
16723
|
"additionalProperties": false,
|
@@ -16885,8 +17310,18 @@ Schema for the body of a Dashboard modification request
|
|
16885
17310
|
"type": "object",
|
16886
17311
|
"properties": {
|
16887
17312
|
"value": {
|
16888
|
-
"
|
16889
|
-
|
17313
|
+
"oneOf": [
|
17314
|
+
{
|
17315
|
+
"type": "string",
|
17316
|
+
"maxLength": 255
|
17317
|
+
},
|
17318
|
+
{
|
17319
|
+
"type": "number"
|
17320
|
+
},
|
17321
|
+
{
|
17322
|
+
"type": "boolean"
|
17323
|
+
}
|
17324
|
+
]
|
16890
17325
|
}
|
16891
17326
|
},
|
16892
17327
|
"additionalProperties": false,
|
@@ -17232,8 +17667,18 @@ Schema for the body of a Dashboard modification request
|
|
17232
17667
|
"type": "object",
|
17233
17668
|
"properties": {
|
17234
17669
|
"value": {
|
17235
|
-
"
|
17236
|
-
|
17670
|
+
"oneOf": [
|
17671
|
+
{
|
17672
|
+
"type": "string",
|
17673
|
+
"maxLength": 255
|
17674
|
+
},
|
17675
|
+
{
|
17676
|
+
"type": "number"
|
17677
|
+
},
|
17678
|
+
{
|
17679
|
+
"type": "boolean"
|
17680
|
+
}
|
17681
|
+
]
|
17237
17682
|
}
|
17238
17683
|
},
|
17239
17684
|
"additionalProperties": false,
|
@@ -17456,8 +17901,18 @@ Schema for the body of a Dashboard modification request
|
|
17456
17901
|
"type": "object",
|
17457
17902
|
"properties": {
|
17458
17903
|
"value": {
|
17459
|
-
"
|
17460
|
-
|
17904
|
+
"oneOf": [
|
17905
|
+
{
|
17906
|
+
"type": "string",
|
17907
|
+
"maxLength": 255
|
17908
|
+
},
|
17909
|
+
{
|
17910
|
+
"type": "number"
|
17911
|
+
},
|
17912
|
+
{
|
17913
|
+
"type": "boolean"
|
17914
|
+
}
|
17915
|
+
]
|
17461
17916
|
}
|
17462
17917
|
},
|
17463
17918
|
"additionalProperties": false,
|
@@ -17635,8 +18090,18 @@ Schema for the body of a Dashboard modification request
|
|
17635
18090
|
"type": "object",
|
17636
18091
|
"properties": {
|
17637
18092
|
"value": {
|
17638
|
-
"
|
17639
|
-
|
18093
|
+
"oneOf": [
|
18094
|
+
{
|
18095
|
+
"type": "string",
|
18096
|
+
"maxLength": 255
|
18097
|
+
},
|
18098
|
+
{
|
18099
|
+
"type": "number"
|
18100
|
+
},
|
18101
|
+
{
|
18102
|
+
"type": "boolean"
|
18103
|
+
}
|
18104
|
+
]
|
17640
18105
|
}
|
17641
18106
|
},
|
17642
18107
|
"additionalProperties": false,
|
@@ -17815,8 +18280,18 @@ Schema for the body of a Dashboard modification request
|
|
17815
18280
|
"type": "object",
|
17816
18281
|
"properties": {
|
17817
18282
|
"value": {
|
17818
|
-
"
|
17819
|
-
|
18283
|
+
"oneOf": [
|
18284
|
+
{
|
18285
|
+
"type": "string",
|
18286
|
+
"maxLength": 255
|
18287
|
+
},
|
18288
|
+
{
|
18289
|
+
"type": "number"
|
18290
|
+
},
|
18291
|
+
{
|
18292
|
+
"type": "boolean"
|
18293
|
+
}
|
18294
|
+
]
|
17820
18295
|
}
|
17821
18296
|
},
|
17822
18297
|
"additionalProperties": false,
|
@@ -18465,8 +18940,18 @@ Schema for the body of a Dashboard modification request
|
|
18465
18940
|
"type": "object",
|
18466
18941
|
"properties": {
|
18467
18942
|
"value": {
|
18468
|
-
"
|
18469
|
-
|
18943
|
+
"oneOf": [
|
18944
|
+
{
|
18945
|
+
"type": "string",
|
18946
|
+
"maxLength": 255
|
18947
|
+
},
|
18948
|
+
{
|
18949
|
+
"type": "number"
|
18950
|
+
},
|
18951
|
+
{
|
18952
|
+
"type": "boolean"
|
18953
|
+
}
|
18954
|
+
]
|
18470
18955
|
}
|
18471
18956
|
},
|
18472
18957
|
"additionalProperties": false,
|
@@ -19558,8 +20043,18 @@ Schema for the body of a Dashboard creation request
|
|
19558
20043
|
"type": "object",
|
19559
20044
|
"properties": {
|
19560
20045
|
"value": {
|
19561
|
-
"
|
19562
|
-
|
20046
|
+
"oneOf": [
|
20047
|
+
{
|
20048
|
+
"type": "string",
|
20049
|
+
"maxLength": 255
|
20050
|
+
},
|
20051
|
+
{
|
20052
|
+
"type": "number"
|
20053
|
+
},
|
20054
|
+
{
|
20055
|
+
"type": "boolean"
|
20056
|
+
}
|
20057
|
+
]
|
19563
20058
|
}
|
19564
20059
|
},
|
19565
20060
|
"additionalProperties": false,
|
@@ -19812,8 +20307,18 @@ Schema for the body of a Dashboard creation request
|
|
19812
20307
|
"type": "object",
|
19813
20308
|
"properties": {
|
19814
20309
|
"value": {
|
19815
|
-
"
|
19816
|
-
|
20310
|
+
"oneOf": [
|
20311
|
+
{
|
20312
|
+
"type": "string",
|
20313
|
+
"maxLength": 255
|
20314
|
+
},
|
20315
|
+
{
|
20316
|
+
"type": "number"
|
20317
|
+
},
|
20318
|
+
{
|
20319
|
+
"type": "boolean"
|
20320
|
+
}
|
20321
|
+
]
|
19817
20322
|
}
|
19818
20323
|
},
|
19819
20324
|
"additionalProperties": false,
|
@@ -19975,8 +20480,18 @@ Schema for the body of a Dashboard creation request
|
|
19975
20480
|
"type": "object",
|
19976
20481
|
"properties": {
|
19977
20482
|
"value": {
|
19978
|
-
"
|
19979
|
-
|
20483
|
+
"oneOf": [
|
20484
|
+
{
|
20485
|
+
"type": "string",
|
20486
|
+
"maxLength": 255
|
20487
|
+
},
|
20488
|
+
{
|
20489
|
+
"type": "number"
|
20490
|
+
},
|
20491
|
+
{
|
20492
|
+
"type": "boolean"
|
20493
|
+
}
|
20494
|
+
]
|
19980
20495
|
}
|
19981
20496
|
},
|
19982
20497
|
"additionalProperties": false,
|
@@ -20957,8 +21472,18 @@ Schema for the body of a Dashboard creation request
|
|
20957
21472
|
"type": "object",
|
20958
21473
|
"properties": {
|
20959
21474
|
"value": {
|
20960
|
-
"
|
20961
|
-
|
21475
|
+
"oneOf": [
|
21476
|
+
{
|
21477
|
+
"type": "string",
|
21478
|
+
"maxLength": 255
|
21479
|
+
},
|
21480
|
+
{
|
21481
|
+
"type": "number"
|
21482
|
+
},
|
21483
|
+
{
|
21484
|
+
"type": "boolean"
|
21485
|
+
}
|
21486
|
+
]
|
20962
21487
|
}
|
20963
21488
|
},
|
20964
21489
|
"additionalProperties": false,
|
@@ -21247,8 +21772,18 @@ Schema for the body of a Dashboard creation request
|
|
21247
21772
|
"type": "object",
|
21248
21773
|
"properties": {
|
21249
21774
|
"value": {
|
21250
|
-
"
|
21251
|
-
|
21775
|
+
"oneOf": [
|
21776
|
+
{
|
21777
|
+
"type": "string",
|
21778
|
+
"maxLength": 255
|
21779
|
+
},
|
21780
|
+
{
|
21781
|
+
"type": "number"
|
21782
|
+
},
|
21783
|
+
{
|
21784
|
+
"type": "boolean"
|
21785
|
+
}
|
21786
|
+
]
|
21252
21787
|
}
|
21253
21788
|
},
|
21254
21789
|
"additionalProperties": false,
|
@@ -21733,7 +22268,7 @@ Schema for the body of a Dashboard creation request
|
|
21733
22268
|
},
|
21734
22269
|
"segments": {
|
21735
22270
|
"type": "array",
|
21736
|
-
"maxItems":
|
22271
|
+
"maxItems": 300,
|
21737
22272
|
"items": {
|
21738
22273
|
"oneOf": [
|
21739
22274
|
{
|
@@ -21829,8 +22364,18 @@ Schema for the body of a Dashboard creation request
|
|
21829
22364
|
"type": "object",
|
21830
22365
|
"properties": {
|
21831
22366
|
"value": {
|
21832
|
-
"
|
21833
|
-
|
22367
|
+
"oneOf": [
|
22368
|
+
{
|
22369
|
+
"type": "string",
|
22370
|
+
"maxLength": 255
|
22371
|
+
},
|
22372
|
+
{
|
22373
|
+
"type": "number"
|
22374
|
+
},
|
22375
|
+
{
|
22376
|
+
"type": "boolean"
|
22377
|
+
}
|
22378
|
+
]
|
21834
22379
|
}
|
21835
22380
|
},
|
21836
22381
|
"additionalProperties": false,
|
@@ -22423,8 +22968,18 @@ Schema for the body of a Dashboard creation request
|
|
22423
22968
|
"type": "object",
|
22424
22969
|
"properties": {
|
22425
22970
|
"value": {
|
22426
|
-
"
|
22427
|
-
|
22971
|
+
"oneOf": [
|
22972
|
+
{
|
22973
|
+
"type": "string",
|
22974
|
+
"maxLength": 255
|
22975
|
+
},
|
22976
|
+
{
|
22977
|
+
"type": "number"
|
22978
|
+
},
|
22979
|
+
{
|
22980
|
+
"type": "boolean"
|
22981
|
+
}
|
22982
|
+
]
|
22428
22983
|
}
|
22429
22984
|
},
|
22430
22985
|
"additionalProperties": false,
|
@@ -22770,8 +23325,18 @@ Schema for the body of a Dashboard creation request
|
|
22770
23325
|
"type": "object",
|
22771
23326
|
"properties": {
|
22772
23327
|
"value": {
|
22773
|
-
"
|
22774
|
-
|
23328
|
+
"oneOf": [
|
23329
|
+
{
|
23330
|
+
"type": "string",
|
23331
|
+
"maxLength": 255
|
23332
|
+
},
|
23333
|
+
{
|
23334
|
+
"type": "number"
|
23335
|
+
},
|
23336
|
+
{
|
23337
|
+
"type": "boolean"
|
23338
|
+
}
|
23339
|
+
]
|
22775
23340
|
}
|
22776
23341
|
},
|
22777
23342
|
"additionalProperties": false,
|
@@ -22994,8 +23559,18 @@ Schema for the body of a Dashboard creation request
|
|
22994
23559
|
"type": "object",
|
22995
23560
|
"properties": {
|
22996
23561
|
"value": {
|
22997
|
-
"
|
22998
|
-
|
23562
|
+
"oneOf": [
|
23563
|
+
{
|
23564
|
+
"type": "string",
|
23565
|
+
"maxLength": 255
|
23566
|
+
},
|
23567
|
+
{
|
23568
|
+
"type": "number"
|
23569
|
+
},
|
23570
|
+
{
|
23571
|
+
"type": "boolean"
|
23572
|
+
}
|
23573
|
+
]
|
22999
23574
|
}
|
23000
23575
|
},
|
23001
23576
|
"additionalProperties": false,
|
@@ -23173,8 +23748,18 @@ Schema for the body of a Dashboard creation request
|
|
23173
23748
|
"type": "object",
|
23174
23749
|
"properties": {
|
23175
23750
|
"value": {
|
23176
|
-
"
|
23177
|
-
|
23751
|
+
"oneOf": [
|
23752
|
+
{
|
23753
|
+
"type": "string",
|
23754
|
+
"maxLength": 255
|
23755
|
+
},
|
23756
|
+
{
|
23757
|
+
"type": "number"
|
23758
|
+
},
|
23759
|
+
{
|
23760
|
+
"type": "boolean"
|
23761
|
+
}
|
23762
|
+
]
|
23178
23763
|
}
|
23179
23764
|
},
|
23180
23765
|
"additionalProperties": false,
|
@@ -23353,8 +23938,18 @@ Schema for the body of a Dashboard creation request
|
|
23353
23938
|
"type": "object",
|
23354
23939
|
"properties": {
|
23355
23940
|
"value": {
|
23356
|
-
"
|
23357
|
-
|
23941
|
+
"oneOf": [
|
23942
|
+
{
|
23943
|
+
"type": "string",
|
23944
|
+
"maxLength": 255
|
23945
|
+
},
|
23946
|
+
{
|
23947
|
+
"type": "number"
|
23948
|
+
},
|
23949
|
+
{
|
23950
|
+
"type": "boolean"
|
23951
|
+
}
|
23952
|
+
]
|
23358
23953
|
}
|
23359
23954
|
},
|
23360
23955
|
"additionalProperties": false,
|
@@ -24003,8 +24598,18 @@ Schema for the body of a Dashboard creation request
|
|
24003
24598
|
"type": "object",
|
24004
24599
|
"properties": {
|
24005
24600
|
"value": {
|
24006
|
-
"
|
24007
|
-
|
24601
|
+
"oneOf": [
|
24602
|
+
{
|
24603
|
+
"type": "string",
|
24604
|
+
"maxLength": 255
|
24605
|
+
},
|
24606
|
+
{
|
24607
|
+
"type": "number"
|
24608
|
+
},
|
24609
|
+
{
|
24610
|
+
"type": "boolean"
|
24611
|
+
}
|
24612
|
+
]
|
24008
24613
|
}
|
24009
24614
|
},
|
24010
24615
|
"additionalProperties": false,
|
@@ -25351,8 +25956,18 @@ Schema for a collection of Dashboards
|
|
25351
25956
|
"type": "object",
|
25352
25957
|
"properties": {
|
25353
25958
|
"value": {
|
25354
|
-
"
|
25355
|
-
|
25959
|
+
"oneOf": [
|
25960
|
+
{
|
25961
|
+
"type": "string",
|
25962
|
+
"maxLength": 255
|
25963
|
+
},
|
25964
|
+
{
|
25965
|
+
"type": "number"
|
25966
|
+
},
|
25967
|
+
{
|
25968
|
+
"type": "boolean"
|
25969
|
+
}
|
25970
|
+
]
|
25356
25971
|
}
|
25357
25972
|
},
|
25358
25973
|
"additionalProperties": false,
|
@@ -25605,8 +26220,18 @@ Schema for a collection of Dashboards
|
|
25605
26220
|
"type": "object",
|
25606
26221
|
"properties": {
|
25607
26222
|
"value": {
|
25608
|
-
"
|
25609
|
-
|
26223
|
+
"oneOf": [
|
26224
|
+
{
|
26225
|
+
"type": "string",
|
26226
|
+
"maxLength": 255
|
26227
|
+
},
|
26228
|
+
{
|
26229
|
+
"type": "number"
|
26230
|
+
},
|
26231
|
+
{
|
26232
|
+
"type": "boolean"
|
26233
|
+
}
|
26234
|
+
]
|
25610
26235
|
}
|
25611
26236
|
},
|
25612
26237
|
"additionalProperties": false,
|
@@ -25768,8 +26393,18 @@ Schema for a collection of Dashboards
|
|
25768
26393
|
"type": "object",
|
25769
26394
|
"properties": {
|
25770
26395
|
"value": {
|
25771
|
-
"
|
25772
|
-
|
26396
|
+
"oneOf": [
|
26397
|
+
{
|
26398
|
+
"type": "string",
|
26399
|
+
"maxLength": 255
|
26400
|
+
},
|
26401
|
+
{
|
26402
|
+
"type": "number"
|
26403
|
+
},
|
26404
|
+
{
|
26405
|
+
"type": "boolean"
|
26406
|
+
}
|
26407
|
+
]
|
25773
26408
|
}
|
25774
26409
|
},
|
25775
26410
|
"additionalProperties": false,
|
@@ -26750,8 +27385,18 @@ Schema for a collection of Dashboards
|
|
26750
27385
|
"type": "object",
|
26751
27386
|
"properties": {
|
26752
27387
|
"value": {
|
26753
|
-
"
|
26754
|
-
|
27388
|
+
"oneOf": [
|
27389
|
+
{
|
27390
|
+
"type": "string",
|
27391
|
+
"maxLength": 255
|
27392
|
+
},
|
27393
|
+
{
|
27394
|
+
"type": "number"
|
27395
|
+
},
|
27396
|
+
{
|
27397
|
+
"type": "boolean"
|
27398
|
+
}
|
27399
|
+
]
|
26755
27400
|
}
|
26756
27401
|
},
|
26757
27402
|
"additionalProperties": false,
|
@@ -27040,8 +27685,18 @@ Schema for a collection of Dashboards
|
|
27040
27685
|
"type": "object",
|
27041
27686
|
"properties": {
|
27042
27687
|
"value": {
|
27043
|
-
"
|
27044
|
-
|
27688
|
+
"oneOf": [
|
27689
|
+
{
|
27690
|
+
"type": "string",
|
27691
|
+
"maxLength": 255
|
27692
|
+
},
|
27693
|
+
{
|
27694
|
+
"type": "number"
|
27695
|
+
},
|
27696
|
+
{
|
27697
|
+
"type": "boolean"
|
27698
|
+
}
|
27699
|
+
]
|
27045
27700
|
}
|
27046
27701
|
},
|
27047
27702
|
"additionalProperties": false,
|
@@ -27526,7 +28181,7 @@ Schema for a collection of Dashboards
|
|
27526
28181
|
},
|
27527
28182
|
"segments": {
|
27528
28183
|
"type": "array",
|
27529
|
-
"maxItems":
|
28184
|
+
"maxItems": 300,
|
27530
28185
|
"items": {
|
27531
28186
|
"oneOf": [
|
27532
28187
|
{
|
@@ -27622,8 +28277,18 @@ Schema for a collection of Dashboards
|
|
27622
28277
|
"type": "object",
|
27623
28278
|
"properties": {
|
27624
28279
|
"value": {
|
27625
|
-
"
|
27626
|
-
|
28280
|
+
"oneOf": [
|
28281
|
+
{
|
28282
|
+
"type": "string",
|
28283
|
+
"maxLength": 255
|
28284
|
+
},
|
28285
|
+
{
|
28286
|
+
"type": "number"
|
28287
|
+
},
|
28288
|
+
{
|
28289
|
+
"type": "boolean"
|
28290
|
+
}
|
28291
|
+
]
|
27627
28292
|
}
|
27628
28293
|
},
|
27629
28294
|
"additionalProperties": false,
|
@@ -28216,8 +28881,18 @@ Schema for a collection of Dashboards
|
|
28216
28881
|
"type": "object",
|
28217
28882
|
"properties": {
|
28218
28883
|
"value": {
|
28219
|
-
"
|
28220
|
-
|
28884
|
+
"oneOf": [
|
28885
|
+
{
|
28886
|
+
"type": "string",
|
28887
|
+
"maxLength": 255
|
28888
|
+
},
|
28889
|
+
{
|
28890
|
+
"type": "number"
|
28891
|
+
},
|
28892
|
+
{
|
28893
|
+
"type": "boolean"
|
28894
|
+
}
|
28895
|
+
]
|
28221
28896
|
}
|
28222
28897
|
},
|
28223
28898
|
"additionalProperties": false,
|
@@ -28563,8 +29238,18 @@ Schema for a collection of Dashboards
|
|
28563
29238
|
"type": "object",
|
28564
29239
|
"properties": {
|
28565
29240
|
"value": {
|
28566
|
-
"
|
28567
|
-
|
29241
|
+
"oneOf": [
|
29242
|
+
{
|
29243
|
+
"type": "string",
|
29244
|
+
"maxLength": 255
|
29245
|
+
},
|
29246
|
+
{
|
29247
|
+
"type": "number"
|
29248
|
+
},
|
29249
|
+
{
|
29250
|
+
"type": "boolean"
|
29251
|
+
}
|
29252
|
+
]
|
28568
29253
|
}
|
28569
29254
|
},
|
28570
29255
|
"additionalProperties": false,
|
@@ -28787,8 +29472,18 @@ Schema for a collection of Dashboards
|
|
28787
29472
|
"type": "object",
|
28788
29473
|
"properties": {
|
28789
29474
|
"value": {
|
28790
|
-
"
|
28791
|
-
|
29475
|
+
"oneOf": [
|
29476
|
+
{
|
29477
|
+
"type": "string",
|
29478
|
+
"maxLength": 255
|
29479
|
+
},
|
29480
|
+
{
|
29481
|
+
"type": "number"
|
29482
|
+
},
|
29483
|
+
{
|
29484
|
+
"type": "boolean"
|
29485
|
+
}
|
29486
|
+
]
|
28792
29487
|
}
|
28793
29488
|
},
|
28794
29489
|
"additionalProperties": false,
|
@@ -28966,8 +29661,18 @@ Schema for a collection of Dashboards
|
|
28966
29661
|
"type": "object",
|
28967
29662
|
"properties": {
|
28968
29663
|
"value": {
|
28969
|
-
"
|
28970
|
-
|
29664
|
+
"oneOf": [
|
29665
|
+
{
|
29666
|
+
"type": "string",
|
29667
|
+
"maxLength": 255
|
29668
|
+
},
|
29669
|
+
{
|
29670
|
+
"type": "number"
|
29671
|
+
},
|
29672
|
+
{
|
29673
|
+
"type": "boolean"
|
29674
|
+
}
|
29675
|
+
]
|
28971
29676
|
}
|
28972
29677
|
},
|
28973
29678
|
"additionalProperties": false,
|
@@ -29146,8 +29851,18 @@ Schema for a collection of Dashboards
|
|
29146
29851
|
"type": "object",
|
29147
29852
|
"properties": {
|
29148
29853
|
"value": {
|
29149
|
-
"
|
29150
|
-
|
29854
|
+
"oneOf": [
|
29855
|
+
{
|
29856
|
+
"type": "string",
|
29857
|
+
"maxLength": 255
|
29858
|
+
},
|
29859
|
+
{
|
29860
|
+
"type": "number"
|
29861
|
+
},
|
29862
|
+
{
|
29863
|
+
"type": "boolean"
|
29864
|
+
}
|
29865
|
+
]
|
29151
29866
|
}
|
29152
29867
|
},
|
29153
29868
|
"additionalProperties": false,
|
@@ -29796,8 +30511,18 @@ Schema for a collection of Dashboards
|
|
29796
30511
|
"type": "object",
|
29797
30512
|
"properties": {
|
29798
30513
|
"value": {
|
29799
|
-
"
|
29800
|
-
|
30514
|
+
"oneOf": [
|
30515
|
+
{
|
30516
|
+
"type": "string",
|
30517
|
+
"maxLength": 255
|
30518
|
+
},
|
30519
|
+
{
|
30520
|
+
"type": "number"
|
30521
|
+
},
|
30522
|
+
{
|
30523
|
+
"type": "boolean"
|
30524
|
+
}
|
30525
|
+
]
|
29801
30526
|
}
|
29802
30527
|
},
|
29803
30528
|
"additionalProperties": false,
|
@@ -30768,7 +31493,138 @@ Schema for exporting data devices query
|
|
30768
31493
|
"maxItems": 100
|
30769
31494
|
},
|
30770
31495
|
"deviceQuery": {
|
30771
|
-
"
|
31496
|
+
"title": "Advanced Query",
|
31497
|
+
"description": "Schema for advanced filters and queries",
|
31498
|
+
"type": "object",
|
31499
|
+
"properties": {
|
31500
|
+
"$and": {
|
31501
|
+
"type": "array",
|
31502
|
+
"items": {
|
31503
|
+
"$ref": "#/definitions/advancedQuery"
|
31504
|
+
},
|
31505
|
+
"maxItems": 100
|
31506
|
+
},
|
31507
|
+
"$or": {
|
31508
|
+
"type": "array",
|
31509
|
+
"items": {
|
31510
|
+
"$ref": "#/definitions/advancedQuery"
|
31511
|
+
},
|
31512
|
+
"maxItems": 100
|
31513
|
+
},
|
31514
|
+
"$nor": {
|
31515
|
+
"type": "array",
|
31516
|
+
"items": {
|
31517
|
+
"$ref": "#/definitions/advancedQuery"
|
31518
|
+
},
|
31519
|
+
"maxItems": 100
|
31520
|
+
}
|
31521
|
+
},
|
31522
|
+
"patternProperties": {
|
31523
|
+
"^[0-9a-zA-Z_-]{1,255}$": {
|
31524
|
+
"oneOf": [
|
31525
|
+
{
|
31526
|
+
"type": [
|
31527
|
+
"string",
|
31528
|
+
"number",
|
31529
|
+
"boolean",
|
31530
|
+
"null"
|
31531
|
+
]
|
31532
|
+
},
|
31533
|
+
{
|
31534
|
+
"type": "object",
|
31535
|
+
"properties": {
|
31536
|
+
"$eq": {
|
31537
|
+
"type": [
|
31538
|
+
"string",
|
31539
|
+
"number",
|
31540
|
+
"boolean",
|
31541
|
+
"null"
|
31542
|
+
]
|
31543
|
+
},
|
31544
|
+
"$ne": {
|
31545
|
+
"type": [
|
31546
|
+
"string",
|
31547
|
+
"number",
|
31548
|
+
"boolean",
|
31549
|
+
"null"
|
31550
|
+
]
|
31551
|
+
},
|
31552
|
+
"$gt": {
|
31553
|
+
"type": [
|
31554
|
+
"string",
|
31555
|
+
"number",
|
31556
|
+
"boolean",
|
31557
|
+
"null"
|
31558
|
+
]
|
31559
|
+
},
|
31560
|
+
"$lt": {
|
31561
|
+
"type": [
|
31562
|
+
"string",
|
31563
|
+
"number",
|
31564
|
+
"boolean",
|
31565
|
+
"null"
|
31566
|
+
]
|
31567
|
+
},
|
31568
|
+
"$gte": {
|
31569
|
+
"type": [
|
31570
|
+
"string",
|
31571
|
+
"number",
|
31572
|
+
"boolean",
|
31573
|
+
"null"
|
31574
|
+
]
|
31575
|
+
},
|
31576
|
+
"$lte": {
|
31577
|
+
"type": [
|
31578
|
+
"string",
|
31579
|
+
"number",
|
31580
|
+
"boolean",
|
31581
|
+
"null"
|
31582
|
+
]
|
31583
|
+
},
|
31584
|
+
"$startsWith": {
|
31585
|
+
"type": "string",
|
31586
|
+
"minLength": 1
|
31587
|
+
},
|
31588
|
+
"$endsWith": {
|
31589
|
+
"type": "string",
|
31590
|
+
"minLength": 1
|
31591
|
+
},
|
31592
|
+
"$contains": {
|
31593
|
+
"type": "string",
|
31594
|
+
"minLength": 1
|
31595
|
+
},
|
31596
|
+
"$ci": {
|
31597
|
+
"type": "boolean"
|
31598
|
+
},
|
31599
|
+
"$in": {
|
31600
|
+
"type": "array",
|
31601
|
+
"maxItems": 100,
|
31602
|
+
"items": {
|
31603
|
+
"type": [
|
31604
|
+
"string",
|
31605
|
+
"number",
|
31606
|
+
"boolean"
|
31607
|
+
]
|
31608
|
+
}
|
31609
|
+
},
|
31610
|
+
"$nin": {
|
31611
|
+
"type": "array",
|
31612
|
+
"maxItems": 100,
|
31613
|
+
"items": {
|
31614
|
+
"type": [
|
31615
|
+
"string",
|
31616
|
+
"number",
|
31617
|
+
"boolean"
|
31618
|
+
]
|
31619
|
+
}
|
31620
|
+
}
|
31621
|
+
},
|
31622
|
+
"additionalProperties": false
|
31623
|
+
}
|
31624
|
+
]
|
31625
|
+
}
|
31626
|
+
},
|
31627
|
+
"additionalProperties": false
|
30772
31628
|
},
|
30773
31629
|
"attributes": {
|
30774
31630
|
"type": "array",
|
@@ -46524,6 +47380,19 @@ The body of an experience linked resources response
|
|
46524
47380
|
"baudRate": {
|
46525
47381
|
"type": "number"
|
46526
47382
|
},
|
47383
|
+
"dataBits": {
|
47384
|
+
"type": "number"
|
47385
|
+
},
|
47386
|
+
"stopBits": {
|
47387
|
+
"type": "number"
|
47388
|
+
},
|
47389
|
+
"parity": {
|
47390
|
+
"type": "string",
|
47391
|
+
"maxLength": 8
|
47392
|
+
},
|
47393
|
+
"rtscts": {
|
47394
|
+
"type": "boolean"
|
47395
|
+
},
|
46527
47396
|
"encoding": {
|
46528
47397
|
"type": "string",
|
46529
47398
|
"maxLength": 48
|
@@ -48740,6 +49609,19 @@ The body of an experience linked resources response
|
|
48740
49609
|
"baudRate": {
|
48741
49610
|
"type": "number"
|
48742
49611
|
},
|
49612
|
+
"dataBits": {
|
49613
|
+
"type": "number"
|
49614
|
+
},
|
49615
|
+
"stopBits": {
|
49616
|
+
"type": "number"
|
49617
|
+
},
|
49618
|
+
"parity": {
|
49619
|
+
"type": "string",
|
49620
|
+
"maxLength": 8
|
49621
|
+
},
|
49622
|
+
"rtscts": {
|
49623
|
+
"type": "boolean"
|
49624
|
+
},
|
48743
49625
|
"encoding": {
|
48744
49626
|
"type": "string",
|
48745
49627
|
"maxLength": 48
|
@@ -50906,6 +51788,19 @@ The body of an experience linked resources response
|
|
50906
51788
|
"baudRate": {
|
50907
51789
|
"type": "number"
|
50908
51790
|
},
|
51791
|
+
"dataBits": {
|
51792
|
+
"type": "number"
|
51793
|
+
},
|
51794
|
+
"stopBits": {
|
51795
|
+
"type": "number"
|
51796
|
+
},
|
51797
|
+
"parity": {
|
51798
|
+
"type": "string",
|
51799
|
+
"maxLength": 8
|
51800
|
+
},
|
51801
|
+
"rtscts": {
|
51802
|
+
"type": "boolean"
|
51803
|
+
},
|
50909
51804
|
"encoding": {
|
50910
51805
|
"type": "string",
|
50911
51806
|
"maxLength": 48
|
@@ -54954,6 +55849,19 @@ Schema for a single Workflow
|
|
54954
55849
|
"baudRate": {
|
54955
55850
|
"type": "number"
|
54956
55851
|
},
|
55852
|
+
"dataBits": {
|
55853
|
+
"type": "number"
|
55854
|
+
},
|
55855
|
+
"stopBits": {
|
55856
|
+
"type": "number"
|
55857
|
+
},
|
55858
|
+
"parity": {
|
55859
|
+
"type": "string",
|
55860
|
+
"maxLength": 8
|
55861
|
+
},
|
55862
|
+
"rtscts": {
|
55863
|
+
"type": "boolean"
|
55864
|
+
},
|
54957
55865
|
"encoding": {
|
54958
55866
|
"type": "string",
|
54959
55867
|
"maxLength": 48
|
@@ -57328,6 +58236,19 @@ Schema for the body of a Workflow modification request
|
|
57328
58236
|
"baudRate": {
|
57329
58237
|
"type": "number"
|
57330
58238
|
},
|
58239
|
+
"dataBits": {
|
58240
|
+
"type": "number"
|
58241
|
+
},
|
58242
|
+
"stopBits": {
|
58243
|
+
"type": "number"
|
58244
|
+
},
|
58245
|
+
"parity": {
|
58246
|
+
"type": "string",
|
58247
|
+
"maxLength": 8
|
58248
|
+
},
|
58249
|
+
"rtscts": {
|
58250
|
+
"type": "boolean"
|
58251
|
+
},
|
57331
58252
|
"encoding": {
|
57332
58253
|
"type": "string",
|
57333
58254
|
"maxLength": 48
|
@@ -59457,6 +60378,19 @@ Schema for the body of a Workflow creation request
|
|
59457
60378
|
"baudRate": {
|
59458
60379
|
"type": "number"
|
59459
60380
|
},
|
60381
|
+
"dataBits": {
|
60382
|
+
"type": "number"
|
60383
|
+
},
|
60384
|
+
"stopBits": {
|
60385
|
+
"type": "number"
|
60386
|
+
},
|
60387
|
+
"parity": {
|
60388
|
+
"type": "string",
|
60389
|
+
"maxLength": 8
|
60390
|
+
},
|
60391
|
+
"rtscts": {
|
60392
|
+
"type": "boolean"
|
60393
|
+
},
|
59460
60394
|
"encoding": {
|
59461
60395
|
"type": "string",
|
59462
60396
|
"maxLength": 48
|
@@ -61809,6 +62743,19 @@ Schema for a single Workflow Version
|
|
61809
62743
|
"baudRate": {
|
61810
62744
|
"type": "number"
|
61811
62745
|
},
|
62746
|
+
"dataBits": {
|
62747
|
+
"type": "number"
|
62748
|
+
},
|
62749
|
+
"stopBits": {
|
62750
|
+
"type": "number"
|
62751
|
+
},
|
62752
|
+
"parity": {
|
62753
|
+
"type": "string",
|
62754
|
+
"maxLength": 8
|
62755
|
+
},
|
62756
|
+
"rtscts": {
|
62757
|
+
"type": "boolean"
|
62758
|
+
},
|
61812
62759
|
"encoding": {
|
61813
62760
|
"type": "string",
|
61814
62761
|
"maxLength": 48
|
@@ -63975,6 +64922,19 @@ Schema for a single Workflow Version
|
|
63975
64922
|
"baudRate": {
|
63976
64923
|
"type": "number"
|
63977
64924
|
},
|
64925
|
+
"dataBits": {
|
64926
|
+
"type": "number"
|
64927
|
+
},
|
64928
|
+
"stopBits": {
|
64929
|
+
"type": "number"
|
64930
|
+
},
|
64931
|
+
"parity": {
|
64932
|
+
"type": "string",
|
64933
|
+
"maxLength": 8
|
64934
|
+
},
|
64935
|
+
"rtscts": {
|
64936
|
+
"type": "boolean"
|
64937
|
+
},
|
63978
64938
|
"encoding": {
|
63979
64939
|
"type": "string",
|
63980
64940
|
"maxLength": 48
|
@@ -65844,6 +66804,19 @@ Schema for the body of a Workflow Version creation request
|
|
65844
66804
|
"baudRate": {
|
65845
66805
|
"type": "number"
|
65846
66806
|
},
|
66807
|
+
"dataBits": {
|
66808
|
+
"type": "number"
|
66809
|
+
},
|
66810
|
+
"stopBits": {
|
66811
|
+
"type": "number"
|
66812
|
+
},
|
66813
|
+
"parity": {
|
66814
|
+
"type": "string",
|
66815
|
+
"maxLength": 8
|
66816
|
+
},
|
66817
|
+
"rtscts": {
|
66818
|
+
"type": "boolean"
|
66819
|
+
},
|
65847
66820
|
"encoding": {
|
65848
66821
|
"type": "string",
|
65849
66822
|
"maxLength": 48
|
@@ -67998,6 +68971,19 @@ Schema for a collection of Workflow Versions
|
|
67998
68971
|
"baudRate": {
|
67999
68972
|
"type": "number"
|
68000
68973
|
},
|
68974
|
+
"dataBits": {
|
68975
|
+
"type": "number"
|
68976
|
+
},
|
68977
|
+
"stopBits": {
|
68978
|
+
"type": "number"
|
68979
|
+
},
|
68980
|
+
"parity": {
|
68981
|
+
"type": "string",
|
68982
|
+
"maxLength": 8
|
68983
|
+
},
|
68984
|
+
"rtscts": {
|
68985
|
+
"type": "boolean"
|
68986
|
+
},
|
68001
68987
|
"encoding": {
|
68002
68988
|
"type": "string",
|
68003
68989
|
"maxLength": 48
|
@@ -70164,6 +71150,19 @@ Schema for a collection of Workflow Versions
|
|
70164
71150
|
"baudRate": {
|
70165
71151
|
"type": "number"
|
70166
71152
|
},
|
71153
|
+
"dataBits": {
|
71154
|
+
"type": "number"
|
71155
|
+
},
|
71156
|
+
"stopBits": {
|
71157
|
+
"type": "number"
|
71158
|
+
},
|
71159
|
+
"parity": {
|
71160
|
+
"type": "string",
|
71161
|
+
"maxLength": 8
|
71162
|
+
},
|
71163
|
+
"rtscts": {
|
71164
|
+
"type": "boolean"
|
71165
|
+
},
|
70167
71166
|
"encoding": {
|
70168
71167
|
"type": "string",
|
70169
71168
|
"maxLength": 48
|
@@ -72103,6 +73102,19 @@ Schema for a collection of Workflows
|
|
72103
73102
|
"baudRate": {
|
72104
73103
|
"type": "number"
|
72105
73104
|
},
|
73105
|
+
"dataBits": {
|
73106
|
+
"type": "number"
|
73107
|
+
},
|
73108
|
+
"stopBits": {
|
73109
|
+
"type": "number"
|
73110
|
+
},
|
73111
|
+
"parity": {
|
73112
|
+
"type": "string",
|
73113
|
+
"maxLength": 8
|
73114
|
+
},
|
73115
|
+
"rtscts": {
|
73116
|
+
"type": "boolean"
|
73117
|
+
},
|
72106
73118
|
"encoding": {
|
72107
73119
|
"type": "string",
|
72108
73120
|
"maxLength": 48
|
@@ -74346,6 +75358,19 @@ Schema for the body of a workflow import request
|
|
74346
75358
|
"baudRate": {
|
74347
75359
|
"type": "number"
|
74348
75360
|
},
|
75361
|
+
"dataBits": {
|
75362
|
+
"type": "number"
|
75363
|
+
},
|
75364
|
+
"stopBits": {
|
75365
|
+
"type": "number"
|
75366
|
+
},
|
75367
|
+
"parity": {
|
75368
|
+
"type": "string",
|
75369
|
+
"maxLength": 8
|
75370
|
+
},
|
75371
|
+
"rtscts": {
|
75372
|
+
"type": "boolean"
|
75373
|
+
},
|
74349
75374
|
"encoding": {
|
74350
75375
|
"type": "string",
|
74351
75376
|
"maxLength": 48
|
@@ -76493,6 +77518,19 @@ Schema for the body of a workflow import request
|
|
76493
77518
|
"baudRate": {
|
76494
77519
|
"type": "number"
|
76495
77520
|
},
|
77521
|
+
"dataBits": {
|
77522
|
+
"type": "number"
|
77523
|
+
},
|
77524
|
+
"stopBits": {
|
77525
|
+
"type": "number"
|
77526
|
+
},
|
77527
|
+
"parity": {
|
77528
|
+
"type": "string",
|
77529
|
+
"maxLength": 8
|
77530
|
+
},
|
77531
|
+
"rtscts": {
|
77532
|
+
"type": "boolean"
|
77533
|
+
},
|
76496
77534
|
"encoding": {
|
76497
77535
|
"type": "string",
|
76498
77536
|
"maxLength": 48
|
@@ -78687,6 +79725,19 @@ Schema for the result of a workflow import request
|
|
78687
79725
|
"baudRate": {
|
78688
79726
|
"type": "number"
|
78689
79727
|
},
|
79728
|
+
"dataBits": {
|
79729
|
+
"type": "number"
|
79730
|
+
},
|
79731
|
+
"stopBits": {
|
79732
|
+
"type": "number"
|
79733
|
+
},
|
79734
|
+
"parity": {
|
79735
|
+
"type": "string",
|
79736
|
+
"maxLength": 8
|
79737
|
+
},
|
79738
|
+
"rtscts": {
|
79739
|
+
"type": "boolean"
|
79740
|
+
},
|
78690
79741
|
"encoding": {
|
78691
79742
|
"type": "string",
|
78692
79743
|
"maxLength": 48
|
@@ -80853,6 +81904,19 @@ Schema for the result of a workflow import request
|
|
80853
81904
|
"baudRate": {
|
80854
81905
|
"type": "number"
|
80855
81906
|
},
|
81907
|
+
"dataBits": {
|
81908
|
+
"type": "number"
|
81909
|
+
},
|
81910
|
+
"stopBits": {
|
81911
|
+
"type": "number"
|
81912
|
+
},
|
81913
|
+
"parity": {
|
81914
|
+
"type": "string",
|
81915
|
+
"maxLength": 8
|
81916
|
+
},
|
81917
|
+
"rtscts": {
|
81918
|
+
"type": "boolean"
|
81919
|
+
},
|
80856
81920
|
"encoding": {
|
80857
81921
|
"type": "string",
|
80858
81922
|
"maxLength": 48
|
@@ -83019,6 +84083,19 @@ Schema for the result of a workflow import request
|
|
83019
84083
|
"baudRate": {
|
83020
84084
|
"type": "number"
|
83021
84085
|
},
|
84086
|
+
"dataBits": {
|
84087
|
+
"type": "number"
|
84088
|
+
},
|
84089
|
+
"stopBits": {
|
84090
|
+
"type": "number"
|
84091
|
+
},
|
84092
|
+
"parity": {
|
84093
|
+
"type": "string",
|
84094
|
+
"maxLength": 8
|
84095
|
+
},
|
84096
|
+
"rtscts": {
|
84097
|
+
"type": "boolean"
|
84098
|
+
},
|
83022
84099
|
"encoding": {
|
83023
84100
|
"type": "string",
|
83024
84101
|
"maxLength": 48
|
@@ -83523,7 +84600,8 @@ Schema for the body of a Github login request
|
|
83523
84600
|
"properties": {
|
83524
84601
|
"accessToken": {
|
83525
84602
|
"type": "string",
|
83526
|
-
"minLength": 1
|
84603
|
+
"minLength": 1,
|
84604
|
+
"maxLength": 1024
|
83527
84605
|
},
|
83528
84606
|
"requestedScopes": {
|
83529
84607
|
"type": "array",
|
@@ -83587,6 +84665,7 @@ Schema for the body of a Github login request
|
|
83587
84665
|
"notebooks.*",
|
83588
84666
|
"webhook.*",
|
83589
84667
|
"webhooks.*",
|
84668
|
+
"application.applyTemplate",
|
83590
84669
|
"application.archiveData",
|
83591
84670
|
"application.backfillArchiveData",
|
83592
84671
|
"application.clone",
|
@@ -83823,8 +84902,12 @@ Schema for the body of a Github login request
|
|
83823
84902
|
"enum": [
|
83824
84903
|
"all.User",
|
83825
84904
|
"all.User.read",
|
84905
|
+
"applicationTemplate.*",
|
84906
|
+
"applicationTemplate.get",
|
83826
84907
|
"applicationTemplates.*",
|
83827
84908
|
"applicationTemplates.get",
|
84909
|
+
"applicationTemplates.getCategories",
|
84910
|
+
"applicationTemplates.getUniqueKeywords",
|
83828
84911
|
"me.*",
|
83829
84912
|
"orgs.*",
|
83830
84913
|
"me.get",
|
@@ -83836,8 +84919,6 @@ Schema for the body of a Github login request
|
|
83836
84919
|
"me.disableTwoFactorAuth",
|
83837
84920
|
"me.disconnectGithub",
|
83838
84921
|
"me.connectGithub",
|
83839
|
-
"me.disconnectTwitter",
|
83840
|
-
"me.connectTwitter",
|
83841
84922
|
"me.addRecentItem",
|
83842
84923
|
"me.fetchRecentItems",
|
83843
84924
|
"me.payloadCounts",
|
@@ -85096,9 +86177,6 @@ Schema for information about the currently authenticated user
|
|
85096
86177
|
"githubName": {
|
85097
86178
|
"type": "string"
|
85098
86179
|
},
|
85099
|
-
"twitterName": {
|
85100
|
-
"type": "string"
|
85101
|
-
},
|
85102
86180
|
"avatarUrl": {
|
85103
86181
|
"type": "string",
|
85104
86182
|
"format": "url"
|
@@ -85567,9 +86645,9 @@ Schema for the body of request to modify the current user
|
|
85567
86645
|
},
|
85568
86646
|
"password": {
|
85569
86647
|
"type": "string",
|
85570
|
-
"minLength":
|
86648
|
+
"minLength": 12,
|
85571
86649
|
"maxLength": 2048,
|
85572
|
-
"pattern": "^(?=.*[A-Z])(?=.*[^A-z0-9])(?=.*[0-9])(?=.*[a-z]).{
|
86650
|
+
"pattern": "^(?=.*[A-Z])(?=.*[^A-z0-9])(?=.*[0-9])(?=.*[a-z]).{12,}$"
|
85573
86651
|
},
|
85574
86652
|
"tokenCutoff": {
|
85575
86653
|
"type": "string",
|
@@ -90321,6 +91399,9 @@ Schema for information about an invitation
|
|
90321
91399
|
},
|
90322
91400
|
"ttl": {
|
90323
91401
|
"type": "number"
|
91402
|
+
},
|
91403
|
+
"disallowTransfer": {
|
91404
|
+
"type": "boolean"
|
90324
91405
|
}
|
90325
91406
|
}
|
90326
91407
|
}
|
@@ -90333,7 +91414,8 @@ Schema for information about an invitation
|
|
90333
91414
|
"email": "invitedUser@losant.com",
|
90334
91415
|
"role": "edit",
|
90335
91416
|
"inviteDate": "2016-05-13T04:00:00.000Z",
|
90336
|
-
"ttl": 4233600000
|
91417
|
+
"ttl": 4233600000,
|
91418
|
+
"disallowTransfer": true
|
90337
91419
|
}
|
90338
91420
|
```
|
90339
91421
|
|
@@ -90416,6 +91498,9 @@ Schema for the body of a request to send an invitation
|
|
90416
91498
|
"additionalProperties": false
|
90417
91499
|
},
|
90418
91500
|
"maxItems": 1000
|
91501
|
+
},
|
91502
|
+
"disallowTransfer": {
|
91503
|
+
"type": "boolean"
|
90419
91504
|
}
|
90420
91505
|
},
|
90421
91506
|
"additionalProperties": false,
|
@@ -90561,6 +91646,9 @@ Schema for an array of pending invitations to an Organization
|
|
90561
91646
|
},
|
90562
91647
|
"hasExpired": {
|
90563
91648
|
"type": "boolean"
|
91649
|
+
},
|
91650
|
+
"disallowTransfer": {
|
91651
|
+
"type": "boolean"
|
90564
91652
|
}
|
90565
91653
|
}
|
90566
91654
|
}
|
@@ -90574,9 +91662,22 @@ Schema for an array of pending invitations to an Organization
|
|
90574
91662
|
"id": "575ed71e7ae143cd83dc4aaa",
|
90575
91663
|
"email": "invitedUser@losant.com",
|
90576
91664
|
"role": "edit",
|
91665
|
+
"applicationRoles": [
|
91666
|
+
{
|
91667
|
+
"resourceId": "575ec8687ae143cd83dc4a97",
|
91668
|
+
"role": "view"
|
91669
|
+
}
|
91670
|
+
],
|
91671
|
+
"dashboardRoles": [
|
91672
|
+
{
|
91673
|
+
"resourceId": "575ece2b7ae143cd83dc4a9b",
|
91674
|
+
"role": "none"
|
91675
|
+
}
|
91676
|
+
],
|
90577
91677
|
"inviteDate": "2016-05-13T04:00:00.000Z",
|
90578
91678
|
"ttl": 4233600000,
|
90579
|
-
"hasExpired": true
|
91679
|
+
"hasExpired": true,
|
91680
|
+
"disallowTransfer": false
|
90580
91681
|
}
|
90581
91682
|
]
|
90582
91683
|
```
|
@@ -91345,9 +92446,9 @@ Schema for the body of a request to complete the reset password flow
|
|
91345
92446
|
},
|
91346
92447
|
"password": {
|
91347
92448
|
"type": "string",
|
91348
|
-
"minLength":
|
92449
|
+
"minLength": 12,
|
91349
92450
|
"maxLength": 2048,
|
91350
|
-
"pattern": "^(?=.*[A-Z])(?=.*[^A-z0-9])(?=.*[0-9])(?=.*[a-z]).{
|
92451
|
+
"pattern": "^(?=.*[A-Z])(?=.*[^A-z0-9])(?=.*[0-9])(?=.*[a-z]).{12,}$"
|
91351
92452
|
}
|
91352
92453
|
},
|
91353
92454
|
"required": [
|
@@ -91872,6 +92973,41 @@ Schema for reporting a successful operation
|
|
91872
92973
|
|
91873
92974
|
<br/>
|
91874
92975
|
|
92976
|
+
## Template Keywords
|
92977
|
+
|
92978
|
+
Schema for a collection of template keywords
|
92979
|
+
|
92980
|
+
### <a name="template-keywords-schema"></a> Schema
|
92981
|
+
|
92982
|
+
```json
|
92983
|
+
{
|
92984
|
+
"$schema": "http://json-schema.org/draft-04/schema#",
|
92985
|
+
"properties": {
|
92986
|
+
"keywords": {
|
92987
|
+
"type": "array",
|
92988
|
+
"items": {
|
92989
|
+
"type": "string",
|
92990
|
+
"pattern": "^[0-9a-zA-Z_-]{1,255}$"
|
92991
|
+
},
|
92992
|
+
"maxItems": 100
|
92993
|
+
}
|
92994
|
+
},
|
92995
|
+
"additionalProperties": false
|
92996
|
+
}
|
92997
|
+
```
|
92998
|
+
### <a name="template-keywords-example"></a> Example
|
92999
|
+
|
93000
|
+
```json
|
93001
|
+
{
|
93002
|
+
"keywords": [
|
93003
|
+
"gps",
|
93004
|
+
"featured"
|
93005
|
+
]
|
93006
|
+
}
|
93007
|
+
```
|
93008
|
+
|
93009
|
+
<br/>
|
93010
|
+
|
91875
93011
|
## Time Series Data
|
91876
93012
|
|
91877
93013
|
Schema for the result of a time series query
|
@@ -91970,8 +93106,18 @@ Schema for the result of a time series query
|
|
91970
93106
|
"type": "object",
|
91971
93107
|
"properties": {
|
91972
93108
|
"value": {
|
91973
|
-
"
|
91974
|
-
|
93109
|
+
"oneOf": [
|
93110
|
+
{
|
93111
|
+
"type": "string",
|
93112
|
+
"maxLength": 255
|
93113
|
+
},
|
93114
|
+
{
|
93115
|
+
"type": "number"
|
93116
|
+
},
|
93117
|
+
{
|
93118
|
+
"type": "boolean"
|
93119
|
+
}
|
93120
|
+
]
|
91975
93121
|
}
|
91976
93122
|
},
|
91977
93123
|
"additionalProperties": false,
|
@@ -92125,23 +93271,103 @@ Schema for the body of a time series query request
|
|
92125
93271
|
"aggregation": {
|
92126
93272
|
"oneOf": [
|
92127
93273
|
{
|
92128
|
-
"
|
92129
|
-
|
92130
|
-
|
92131
|
-
|
92132
|
-
|
92133
|
-
|
92134
|
-
|
92135
|
-
|
92136
|
-
|
92137
|
-
|
92138
|
-
|
93274
|
+
"oneOf": [
|
93275
|
+
{
|
93276
|
+
"type": "string",
|
93277
|
+
"enum": [
|
93278
|
+
"FIRST",
|
93279
|
+
"LAST",
|
93280
|
+
"COUNT",
|
93281
|
+
"MAX",
|
93282
|
+
"MIN",
|
93283
|
+
"MEDIAN",
|
93284
|
+
"MEAN",
|
93285
|
+
"SUM",
|
93286
|
+
"STD_DEV"
|
93287
|
+
]
|
93288
|
+
},
|
93289
|
+
{
|
93290
|
+
"type": "string",
|
93291
|
+
"enum": [
|
93292
|
+
"NONE"
|
93293
|
+
]
|
93294
|
+
}
|
92139
93295
|
]
|
92140
93296
|
},
|
92141
93297
|
{
|
92142
|
-
"type": "
|
92143
|
-
"
|
92144
|
-
"
|
93298
|
+
"type": "object",
|
93299
|
+
"properties": {
|
93300
|
+
"type": {
|
93301
|
+
"oneOf": [
|
93302
|
+
{
|
93303
|
+
"type": "string",
|
93304
|
+
"enum": [
|
93305
|
+
"FIRST",
|
93306
|
+
"LAST",
|
93307
|
+
"COUNT",
|
93308
|
+
"MAX",
|
93309
|
+
"MIN",
|
93310
|
+
"MEDIAN",
|
93311
|
+
"MEAN",
|
93312
|
+
"SUM",
|
93313
|
+
"STD_DEV"
|
93314
|
+
]
|
93315
|
+
},
|
93316
|
+
{
|
93317
|
+
"type": "string",
|
93318
|
+
"enum": [
|
93319
|
+
"NONE"
|
93320
|
+
]
|
93321
|
+
}
|
93322
|
+
]
|
93323
|
+
},
|
93324
|
+
"options": {
|
93325
|
+
"type": "object",
|
93326
|
+
"additionalProperties": false
|
93327
|
+
}
|
93328
|
+
},
|
93329
|
+
"additionalProperties": false,
|
93330
|
+
"required": [
|
93331
|
+
"type"
|
93332
|
+
]
|
93333
|
+
},
|
93334
|
+
{
|
93335
|
+
"type": "object",
|
93336
|
+
"properties": {
|
93337
|
+
"type": {
|
93338
|
+
"type": "string",
|
93339
|
+
"enum": [
|
93340
|
+
"TIMEATVALUE"
|
93341
|
+
]
|
93342
|
+
},
|
93343
|
+
"options": {
|
93344
|
+
"type": "object",
|
93345
|
+
"properties": {
|
93346
|
+
"value": {
|
93347
|
+
"oneOf": [
|
93348
|
+
{
|
93349
|
+
"type": "string",
|
93350
|
+
"maxLength": 255
|
93351
|
+
},
|
93352
|
+
{
|
93353
|
+
"type": "number"
|
93354
|
+
},
|
93355
|
+
{
|
93356
|
+
"type": "boolean"
|
93357
|
+
}
|
93358
|
+
]
|
93359
|
+
}
|
93360
|
+
},
|
93361
|
+
"additionalProperties": false,
|
93362
|
+
"required": [
|
93363
|
+
"value"
|
93364
|
+
]
|
93365
|
+
}
|
93366
|
+
},
|
93367
|
+
"additionalProperties": false,
|
93368
|
+
"required": [
|
93369
|
+
"type",
|
93370
|
+
"options"
|
92145
93371
|
]
|
92146
93372
|
}
|
92147
93373
|
]
|
@@ -92304,6 +93530,7 @@ Schema for the body of a User authentication request
|
|
92304
93530
|
"notebooks.*",
|
92305
93531
|
"webhook.*",
|
92306
93532
|
"webhooks.*",
|
93533
|
+
"application.applyTemplate",
|
92307
93534
|
"application.archiveData",
|
92308
93535
|
"application.backfillArchiveData",
|
92309
93536
|
"application.clone",
|
@@ -92540,8 +93767,12 @@ Schema for the body of a User authentication request
|
|
92540
93767
|
"enum": [
|
92541
93768
|
"all.User",
|
92542
93769
|
"all.User.read",
|
93770
|
+
"applicationTemplate.*",
|
93771
|
+
"applicationTemplate.get",
|
92543
93772
|
"applicationTemplates.*",
|
92544
93773
|
"applicationTemplates.get",
|
93774
|
+
"applicationTemplates.getCategories",
|
93775
|
+
"applicationTemplates.getUniqueKeywords",
|
92545
93776
|
"me.*",
|
92546
93777
|
"orgs.*",
|
92547
93778
|
"me.get",
|
@@ -92553,8 +93784,6 @@ Schema for the body of a User authentication request
|
|
92553
93784
|
"me.disableTwoFactorAuth",
|
92554
93785
|
"me.disconnectGithub",
|
92555
93786
|
"me.connectGithub",
|
92556
|
-
"me.disconnectTwitter",
|
92557
|
-
"me.connectTwitter",
|
92558
93787
|
"me.addRecentItem",
|
92559
93788
|
"me.fetchRecentItems",
|
92560
93789
|
"me.payloadCounts",
|
@@ -92639,10 +93868,14 @@ Schema for the body of a User creation request
|
|
92639
93868
|
"type": "object",
|
92640
93869
|
"properties": {
|
92641
93870
|
"service": {
|
92642
|
-
"
|
93871
|
+
"enum": [
|
93872
|
+
"github"
|
93873
|
+
]
|
92643
93874
|
},
|
92644
93875
|
"accessToken": {
|
92645
|
-
"type": "string"
|
93876
|
+
"type": "string",
|
93877
|
+
"minLength": 1,
|
93878
|
+
"maxLength": 1024
|
92646
93879
|
}
|
92647
93880
|
},
|
92648
93881
|
"required": [
|
@@ -92652,9 +93885,9 @@ Schema for the body of a User creation request
|
|
92652
93885
|
},
|
92653
93886
|
"password": {
|
92654
93887
|
"type": "string",
|
92655
|
-
"minLength":
|
93888
|
+
"minLength": 12,
|
92656
93889
|
"maxLength": 2048,
|
92657
|
-
"pattern": "^(?=.*[A-Z])(?=.*[^A-z0-9])(?=.*[0-9])(?=.*[a-z]).{
|
93890
|
+
"pattern": "^(?=.*[A-Z])(?=.*[^A-z0-9])(?=.*[0-9])(?=.*[a-z]).{12,}$"
|
92658
93891
|
},
|
92659
93892
|
"acceptTerms": {
|
92660
93893
|
"enum": [
|
@@ -92731,6 +93964,7 @@ Schema for the body of a User creation request
|
|
92731
93964
|
"notebooks.*",
|
92732
93965
|
"webhook.*",
|
92733
93966
|
"webhooks.*",
|
93967
|
+
"application.applyTemplate",
|
92734
93968
|
"application.archiveData",
|
92735
93969
|
"application.backfillArchiveData",
|
92736
93970
|
"application.clone",
|
@@ -92967,8 +94201,12 @@ Schema for the body of a User creation request
|
|
92967
94201
|
"enum": [
|
92968
94202
|
"all.User",
|
92969
94203
|
"all.User.read",
|
94204
|
+
"applicationTemplate.*",
|
94205
|
+
"applicationTemplate.get",
|
92970
94206
|
"applicationTemplates.*",
|
92971
94207
|
"applicationTemplates.get",
|
94208
|
+
"applicationTemplates.getCategories",
|
94209
|
+
"applicationTemplates.getUniqueKeywords",
|
92972
94210
|
"me.*",
|
92973
94211
|
"orgs.*",
|
92974
94212
|
"me.get",
|
@@ -92980,8 +94218,6 @@ Schema for the body of a User creation request
|
|
92980
94218
|
"me.disableTwoFactorAuth",
|
92981
94219
|
"me.disconnectGithub",
|
92982
94220
|
"me.connectGithub",
|
92983
|
-
"me.disconnectTwitter",
|
92984
|
-
"me.connectTwitter",
|
92985
94221
|
"me.addRecentItem",
|
92986
94222
|
"me.fetchRecentItems",
|
92987
94223
|
"me.payloadCounts",
|