losant_rest 1.17.2 → 1.17.3

Sign up to get free protection for your applications and to get access to all the features.
data/docs/_schemas.md CHANGED
@@ -74,6 +74,8 @@
74
74
  * [Data Table Rows Delete](#data-table-rows-delete)
75
75
  * [Data Table Rows Export](#data-table-rows-export)
76
76
  * [Data Tables](#data-tables)
77
+ * [Debug Exclude Node IDs](#debug-exclude-node-ids)
78
+ * [Debug Levels](#debug-levels)
77
79
  * [Device](#device)
78
80
  * [Device Attribute Data Type Filter](#device-attribute-data-type-filter)
79
81
  * [Device Class Filter](#device-class-filter)
@@ -11873,6 +11875,64 @@ Schema for the body of an Application scoped Dashboard creation request
11873
11875
  }
11874
11876
  },
11875
11877
  "additionalProperties": false
11878
+ },
11879
+ {
11880
+ "type": "object",
11881
+ "properties": {
11882
+ "queryType": {
11883
+ "type": "string",
11884
+ "enum": [
11885
+ "device-info"
11886
+ ]
11887
+ },
11888
+ "id": {
11889
+ "type": "string",
11890
+ "maxLength": 48
11891
+ },
11892
+ "attributes": {
11893
+ "oneOf": [
11894
+ {
11895
+ "type": "null"
11896
+ },
11897
+ {
11898
+ "type": "array",
11899
+ "maxItems": 100,
11900
+ "items": {
11901
+ "type": "string",
11902
+ "maxLength": 255
11903
+ }
11904
+ }
11905
+ ]
11906
+ },
11907
+ "excludeConnectionInfo": {
11908
+ "type": "boolean"
11909
+ },
11910
+ "sortField": {
11911
+ "type": "string",
11912
+ "maxLength": 255
11913
+ },
11914
+ "sortDirection": {
11915
+ "type": "string",
11916
+ "maxLength": 255
11917
+ },
11918
+ "page": {
11919
+ "type": "string",
11920
+ "maxLength": 255
11921
+ },
11922
+ "perPage": {
11923
+ "type": "string",
11924
+ "maxLength": 255
11925
+ },
11926
+ "query": {
11927
+ "type": "string",
11928
+ "maxLength": 32767
11929
+ },
11930
+ "compositeStateType": {
11931
+ "type": "string",
11932
+ "maxLength": 255
11933
+ }
11934
+ },
11935
+ "additionalProperties": false
11876
11936
  }
11877
11937
  ]
11878
11938
  }
@@ -13163,6 +13223,9 @@ Schema for the body of an Application scoped Dashboard creation request
13163
13223
  "realTime": {
13164
13224
  "type": "boolean"
13165
13225
  },
13226
+ "disallowUserSelectedDuration": {
13227
+ "type": "boolean"
13228
+ },
13166
13229
  "duration": {
13167
13230
  "oneOf": [
13168
13231
  {
@@ -21367,6 +21430,64 @@ Schema for a single Dashboard
21367
21430
  }
21368
21431
  },
21369
21432
  "additionalProperties": false
21433
+ },
21434
+ {
21435
+ "type": "object",
21436
+ "properties": {
21437
+ "queryType": {
21438
+ "type": "string",
21439
+ "enum": [
21440
+ "device-info"
21441
+ ]
21442
+ },
21443
+ "id": {
21444
+ "type": "string",
21445
+ "maxLength": 48
21446
+ },
21447
+ "attributes": {
21448
+ "oneOf": [
21449
+ {
21450
+ "type": "null"
21451
+ },
21452
+ {
21453
+ "type": "array",
21454
+ "maxItems": 100,
21455
+ "items": {
21456
+ "type": "string",
21457
+ "maxLength": 255
21458
+ }
21459
+ }
21460
+ ]
21461
+ },
21462
+ "excludeConnectionInfo": {
21463
+ "type": "boolean"
21464
+ },
21465
+ "sortField": {
21466
+ "type": "string",
21467
+ "maxLength": 255
21468
+ },
21469
+ "sortDirection": {
21470
+ "type": "string",
21471
+ "maxLength": 255
21472
+ },
21473
+ "page": {
21474
+ "type": "string",
21475
+ "maxLength": 255
21476
+ },
21477
+ "perPage": {
21478
+ "type": "string",
21479
+ "maxLength": 255
21480
+ },
21481
+ "query": {
21482
+ "type": "string",
21483
+ "maxLength": 32767
21484
+ },
21485
+ "compositeStateType": {
21486
+ "type": "string",
21487
+ "maxLength": 255
21488
+ }
21489
+ },
21490
+ "additionalProperties": false
21370
21491
  }
21371
21492
  ]
21372
21493
  }
@@ -22657,6 +22778,9 @@ Schema for a single Dashboard
22657
22778
  "realTime": {
22658
22779
  "type": "boolean"
22659
22780
  },
22781
+ "disallowUserSelectedDuration": {
22782
+ "type": "boolean"
22783
+ },
22660
22784
  "duration": {
22661
22785
  "oneOf": [
22662
22786
  {
@@ -27421,6 +27545,64 @@ Schema for the body of a Dashboard modification request
27421
27545
  }
27422
27546
  },
27423
27547
  "additionalProperties": false
27548
+ },
27549
+ {
27550
+ "type": "object",
27551
+ "properties": {
27552
+ "queryType": {
27553
+ "type": "string",
27554
+ "enum": [
27555
+ "device-info"
27556
+ ]
27557
+ },
27558
+ "id": {
27559
+ "type": "string",
27560
+ "maxLength": 48
27561
+ },
27562
+ "attributes": {
27563
+ "oneOf": [
27564
+ {
27565
+ "type": "null"
27566
+ },
27567
+ {
27568
+ "type": "array",
27569
+ "maxItems": 100,
27570
+ "items": {
27571
+ "type": "string",
27572
+ "maxLength": 255
27573
+ }
27574
+ }
27575
+ ]
27576
+ },
27577
+ "excludeConnectionInfo": {
27578
+ "type": "boolean"
27579
+ },
27580
+ "sortField": {
27581
+ "type": "string",
27582
+ "maxLength": 255
27583
+ },
27584
+ "sortDirection": {
27585
+ "type": "string",
27586
+ "maxLength": 255
27587
+ },
27588
+ "page": {
27589
+ "type": "string",
27590
+ "maxLength": 255
27591
+ },
27592
+ "perPage": {
27593
+ "type": "string",
27594
+ "maxLength": 255
27595
+ },
27596
+ "query": {
27597
+ "type": "string",
27598
+ "maxLength": 32767
27599
+ },
27600
+ "compositeStateType": {
27601
+ "type": "string",
27602
+ "maxLength": 255
27603
+ }
27604
+ },
27605
+ "additionalProperties": false
27424
27606
  }
27425
27607
  ]
27426
27608
  }
@@ -28711,6 +28893,9 @@ Schema for the body of a Dashboard modification request
28711
28893
  "realTime": {
28712
28894
  "type": "boolean"
28713
28895
  },
28896
+ "disallowUserSelectedDuration": {
28897
+ "type": "boolean"
28898
+ },
28714
28899
  "duration": {
28715
28900
  "oneOf": [
28716
28901
  {
@@ -33466,6 +33651,64 @@ Schema for the body of a Dashboard creation request
33466
33651
  }
33467
33652
  },
33468
33653
  "additionalProperties": false
33654
+ },
33655
+ {
33656
+ "type": "object",
33657
+ "properties": {
33658
+ "queryType": {
33659
+ "type": "string",
33660
+ "enum": [
33661
+ "device-info"
33662
+ ]
33663
+ },
33664
+ "id": {
33665
+ "type": "string",
33666
+ "maxLength": 48
33667
+ },
33668
+ "attributes": {
33669
+ "oneOf": [
33670
+ {
33671
+ "type": "null"
33672
+ },
33673
+ {
33674
+ "type": "array",
33675
+ "maxItems": 100,
33676
+ "items": {
33677
+ "type": "string",
33678
+ "maxLength": 255
33679
+ }
33680
+ }
33681
+ ]
33682
+ },
33683
+ "excludeConnectionInfo": {
33684
+ "type": "boolean"
33685
+ },
33686
+ "sortField": {
33687
+ "type": "string",
33688
+ "maxLength": 255
33689
+ },
33690
+ "sortDirection": {
33691
+ "type": "string",
33692
+ "maxLength": 255
33693
+ },
33694
+ "page": {
33695
+ "type": "string",
33696
+ "maxLength": 255
33697
+ },
33698
+ "perPage": {
33699
+ "type": "string",
33700
+ "maxLength": 255
33701
+ },
33702
+ "query": {
33703
+ "type": "string",
33704
+ "maxLength": 32767
33705
+ },
33706
+ "compositeStateType": {
33707
+ "type": "string",
33708
+ "maxLength": 255
33709
+ }
33710
+ },
33711
+ "additionalProperties": false
33469
33712
  }
33470
33713
  ]
33471
33714
  }
@@ -34756,6 +34999,9 @@ Schema for the body of a Dashboard creation request
34756
34999
  "realTime": {
34757
35000
  "type": "boolean"
34758
35001
  },
35002
+ "disallowUserSelectedDuration": {
35003
+ "type": "boolean"
35004
+ },
34759
35005
  "duration": {
34760
35006
  "oneOf": [
34761
35007
  {
@@ -39886,6 +40132,64 @@ Schema for a collection of Dashboards
39886
40132
  }
39887
40133
  },
39888
40134
  "additionalProperties": false
40135
+ },
40136
+ {
40137
+ "type": "object",
40138
+ "properties": {
40139
+ "queryType": {
40140
+ "type": "string",
40141
+ "enum": [
40142
+ "device-info"
40143
+ ]
40144
+ },
40145
+ "id": {
40146
+ "type": "string",
40147
+ "maxLength": 48
40148
+ },
40149
+ "attributes": {
40150
+ "oneOf": [
40151
+ {
40152
+ "type": "null"
40153
+ },
40154
+ {
40155
+ "type": "array",
40156
+ "maxItems": 100,
40157
+ "items": {
40158
+ "type": "string",
40159
+ "maxLength": 255
40160
+ }
40161
+ }
40162
+ ]
40163
+ },
40164
+ "excludeConnectionInfo": {
40165
+ "type": "boolean"
40166
+ },
40167
+ "sortField": {
40168
+ "type": "string",
40169
+ "maxLength": 255
40170
+ },
40171
+ "sortDirection": {
40172
+ "type": "string",
40173
+ "maxLength": 255
40174
+ },
40175
+ "page": {
40176
+ "type": "string",
40177
+ "maxLength": 255
40178
+ },
40179
+ "perPage": {
40180
+ "type": "string",
40181
+ "maxLength": 255
40182
+ },
40183
+ "query": {
40184
+ "type": "string",
40185
+ "maxLength": 32767
40186
+ },
40187
+ "compositeStateType": {
40188
+ "type": "string",
40189
+ "maxLength": 255
40190
+ }
40191
+ },
40192
+ "additionalProperties": false
39889
40193
  }
39890
40194
  ]
39891
40195
  }
@@ -41176,6 +41480,9 @@ Schema for a collection of Dashboards
41176
41480
  "realTime": {
41177
41481
  "type": "boolean"
41178
41482
  },
41483
+ "disallowUserSelectedDuration": {
41484
+ "type": "boolean"
41485
+ },
41179
41486
  "duration": {
41180
41487
  "oneOf": [
41181
41488
  {
@@ -46452,6 +46759,70 @@ Schema for a collection of Data Tables
46452
46759
 
46453
46760
  <br/>
46454
46761
 
46762
+ ## Debug Exclude Node IDs
46763
+
46764
+ Schema for an array of node IDs to exclude from debug output
46765
+
46766
+ ### <a name="debug-exclude-node-ids-schema"></a> Schema
46767
+
46768
+ ```json
46769
+ {
46770
+ "$schema": "http://json-schema.org/draft-07/schema#",
46771
+ "type": "array",
46772
+ "maxItems": 50,
46773
+ "items": {
46774
+ "type": "string",
46775
+ "maxLength": 48,
46776
+ "minLength": 1
46777
+ }
46778
+ }
46779
+ ```
46780
+ ### <a name="debug-exclude-node-ids-example"></a> Example
46781
+
46782
+ ```json
46783
+ [
46784
+ "1MT01D98tc",
46785
+ "shr-4IClop"
46786
+ ]
46787
+ ```
46788
+
46789
+ <br/>
46790
+
46791
+ ## Debug Levels
46792
+
46793
+ Schema for user debug levels
46794
+
46795
+ ### <a name="debug-levels-schema"></a> Schema
46796
+
46797
+ ```json
46798
+ {
46799
+ "$schema": "http://json-schema.org/draft-07/schema#",
46800
+ "type": "array",
46801
+ "maxItems": 6,
46802
+ "items": {
46803
+ "type": "string",
46804
+ "enum": [
46805
+ "all",
46806
+ "none",
46807
+ "verbose",
46808
+ "info",
46809
+ "warn",
46810
+ "error"
46811
+ ]
46812
+ }
46813
+ }
46814
+ ```
46815
+ ### <a name="debug-levels-example"></a> Example
46816
+
46817
+ ```json
46818
+ [
46819
+ "warn",
46820
+ "error"
46821
+ ]
46822
+ ```
46823
+
46824
+ <br/>
46825
+
46455
46826
  ## Device
46456
46827
 
46457
46828
  Schema for a single Device
@@ -64846,6 +65217,30 @@ The body of an experience linked resources response
64846
65217
  "type": "string",
64847
65218
  "format": "date-time"
64848
65219
  },
65220
+ "createdById": {
65221
+ "type": "string",
65222
+ "pattern": "^[A-Fa-f\\d]{24}$"
65223
+ },
65224
+ "createdByType": {
65225
+ "type": "string",
65226
+ "enum": [
65227
+ "flow",
65228
+ "user",
65229
+ "apiToken"
65230
+ ]
65231
+ },
65232
+ "lastUpdatedById": {
65233
+ "type": "string",
65234
+ "pattern": "^[A-Fa-f\\d]{24}$"
65235
+ },
65236
+ "lastUpdatedByType": {
65237
+ "type": "string",
65238
+ "enum": [
65239
+ "flow",
65240
+ "user",
65241
+ "apiToken"
65242
+ ]
65243
+ },
64849
65244
  "name": {
64850
65245
  "type": "string",
64851
65246
  "minLength": 1,
@@ -64874,7 +65269,8 @@ The body of an experience linked resources response
64874
65269
  "data",
64875
65270
  "experience",
64876
65271
  "logic",
64877
- "output"
65272
+ "output",
65273
+ "debug"
64878
65274
  ]
64879
65275
  },
64880
65276
  "enabled": {
@@ -67532,6 +67928,30 @@ The body of an experience linked resources response
67532
67928
  "type": "string",
67533
67929
  "format": "date-time"
67534
67930
  },
67931
+ "createdById": {
67932
+ "type": "string",
67933
+ "pattern": "^[A-Fa-f\\d]{24}$"
67934
+ },
67935
+ "createdByType": {
67936
+ "type": "string",
67937
+ "enum": [
67938
+ "flow",
67939
+ "user",
67940
+ "apiToken"
67941
+ ]
67942
+ },
67943
+ "lastUpdatedById": {
67944
+ "type": "string",
67945
+ "pattern": "^[A-Fa-f\\d]{24}$"
67946
+ },
67947
+ "lastUpdatedByType": {
67948
+ "type": "string",
67949
+ "enum": [
67950
+ "flow",
67951
+ "user",
67952
+ "apiToken"
67953
+ ]
67954
+ },
67535
67955
  "version": {
67536
67956
  "type": "string",
67537
67957
  "minLength": 1,
@@ -73268,6 +73688,18 @@ Schema for a single Experience Version
73268
73688
  "type": "string",
73269
73689
  "format": "date-time"
73270
73690
  },
73691
+ "lastUpdatedById": {
73692
+ "type": "string",
73693
+ "pattern": "^[A-Fa-f\\d]{24}$"
73694
+ },
73695
+ "lastUpdatedByType": {
73696
+ "type": "string",
73697
+ "enum": [
73698
+ "flow",
73699
+ "user",
73700
+ "apiToken"
73701
+ ]
73702
+ },
73271
73703
  "endpointDefaultCors": {
73272
73704
  "type": "boolean"
73273
73705
  },
@@ -73601,6 +74033,18 @@ Schema for a collection of Experience Versions
73601
74033
  "type": "string",
73602
74034
  "format": "date-time"
73603
74035
  },
74036
+ "lastUpdatedById": {
74037
+ "type": "string",
74038
+ "pattern": "^[A-Fa-f\\d]{24}$"
74039
+ },
74040
+ "lastUpdatedByType": {
74041
+ "type": "string",
74042
+ "enum": [
74043
+ "flow",
74044
+ "user",
74045
+ "apiToken"
74046
+ ]
74047
+ },
73604
74048
  "endpointDefaultCors": {
73605
74049
  "type": "boolean"
73606
74050
  },
@@ -74769,6 +75213,30 @@ Schema for a single Workflow
74769
75213
  "type": "string",
74770
75214
  "format": "date-time"
74771
75215
  },
75216
+ "createdById": {
75217
+ "type": "string",
75218
+ "pattern": "^[A-Fa-f\\d]{24}$"
75219
+ },
75220
+ "createdByType": {
75221
+ "type": "string",
75222
+ "enum": [
75223
+ "flow",
75224
+ "user",
75225
+ "apiToken"
75226
+ ]
75227
+ },
75228
+ "lastUpdatedById": {
75229
+ "type": "string",
75230
+ "pattern": "^[A-Fa-f\\d]{24}$"
75231
+ },
75232
+ "lastUpdatedByType": {
75233
+ "type": "string",
75234
+ "enum": [
75235
+ "flow",
75236
+ "user",
75237
+ "apiToken"
75238
+ ]
75239
+ },
74772
75240
  "name": {
74773
75241
  "type": "string",
74774
75242
  "minLength": 1,
@@ -74797,7 +75265,8 @@ Schema for a single Workflow
74797
75265
  "data",
74798
75266
  "experience",
74799
75267
  "logic",
74800
- "output"
75268
+ "output",
75269
+ "debug"
74801
75270
  ]
74802
75271
  },
74803
75272
  "enabled": {
@@ -77625,6 +78094,7 @@ Schema for the body of a Workflow modification request
77625
78094
  "experience",
77626
78095
  "logic",
77627
78096
  "output",
78097
+ "debug",
77628
78098
  ""
77629
78099
  ]
77630
78100
  },
@@ -80212,6 +80682,7 @@ Schema for the body of a Workflow creation request
80212
80682
  "experience",
80213
80683
  "logic",
80214
80684
  "output",
80685
+ "debug",
80215
80686
  ""
80216
80687
  ]
80217
80688
  },
@@ -83020,6 +83491,30 @@ Schema for a single Workflow Version
83020
83491
  "type": "string",
83021
83492
  "format": "date-time"
83022
83493
  },
83494
+ "createdById": {
83495
+ "type": "string",
83496
+ "pattern": "^[A-Fa-f\\d]{24}$"
83497
+ },
83498
+ "createdByType": {
83499
+ "type": "string",
83500
+ "enum": [
83501
+ "flow",
83502
+ "user",
83503
+ "apiToken"
83504
+ ]
83505
+ },
83506
+ "lastUpdatedById": {
83507
+ "type": "string",
83508
+ "pattern": "^[A-Fa-f\\d]{24}$"
83509
+ },
83510
+ "lastUpdatedByType": {
83511
+ "type": "string",
83512
+ "enum": [
83513
+ "flow",
83514
+ "user",
83515
+ "apiToken"
83516
+ ]
83517
+ },
83023
83518
  "version": {
83024
83519
  "type": "string",
83025
83520
  "minLength": 1,
@@ -90503,6 +90998,30 @@ Schema for a collection of Workflow Versions
90503
90998
  "type": "string",
90504
90999
  "format": "date-time"
90505
91000
  },
91001
+ "createdById": {
91002
+ "type": "string",
91003
+ "pattern": "^[A-Fa-f\\d]{24}$"
91004
+ },
91005
+ "createdByType": {
91006
+ "type": "string",
91007
+ "enum": [
91008
+ "flow",
91009
+ "user",
91010
+ "apiToken"
91011
+ ]
91012
+ },
91013
+ "lastUpdatedById": {
91014
+ "type": "string",
91015
+ "pattern": "^[A-Fa-f\\d]{24}$"
91016
+ },
91017
+ "lastUpdatedByType": {
91018
+ "type": "string",
91019
+ "enum": [
91020
+ "flow",
91021
+ "user",
91022
+ "apiToken"
91023
+ ]
91024
+ },
90506
91025
  "version": {
90507
91026
  "type": "string",
90508
91027
  "minLength": 1,
@@ -96464,6 +96983,30 @@ Schema for a collection of Workflows
96464
96983
  "type": "string",
96465
96984
  "format": "date-time"
96466
96985
  },
96986
+ "createdById": {
96987
+ "type": "string",
96988
+ "pattern": "^[A-Fa-f\\d]{24}$"
96989
+ },
96990
+ "createdByType": {
96991
+ "type": "string",
96992
+ "enum": [
96993
+ "flow",
96994
+ "user",
96995
+ "apiToken"
96996
+ ]
96997
+ },
96998
+ "lastUpdatedById": {
96999
+ "type": "string",
97000
+ "pattern": "^[A-Fa-f\\d]{24}$"
97001
+ },
97002
+ "lastUpdatedByType": {
97003
+ "type": "string",
97004
+ "enum": [
97005
+ "flow",
97006
+ "user",
97007
+ "apiToken"
97008
+ ]
97009
+ },
96467
97010
  "name": {
96468
97011
  "type": "string",
96469
97012
  "minLength": 1,
@@ -96492,7 +97035,8 @@ Schema for a collection of Workflows
96492
97035
  "data",
96493
97036
  "experience",
96494
97037
  "logic",
96495
- "output"
97038
+ "output",
97039
+ "debug"
96496
97040
  ]
96497
97041
  },
96498
97042
  "enabled": {
@@ -99208,6 +99752,7 @@ Schema for the body of a workflow import request
99208
99752
  "experience",
99209
99753
  "logic",
99210
99754
  "output",
99755
+ "debug",
99211
99756
  ""
99212
99757
  ]
99213
99758
  },
@@ -104367,6 +104912,30 @@ Schema for the result of a workflow import request
104367
104912
  "type": "string",
104368
104913
  "format": "date-time"
104369
104914
  },
104915
+ "createdById": {
104916
+ "type": "string",
104917
+ "pattern": "^[A-Fa-f\\d]{24}$"
104918
+ },
104919
+ "createdByType": {
104920
+ "type": "string",
104921
+ "enum": [
104922
+ "flow",
104923
+ "user",
104924
+ "apiToken"
104925
+ ]
104926
+ },
104927
+ "lastUpdatedById": {
104928
+ "type": "string",
104929
+ "pattern": "^[A-Fa-f\\d]{24}$"
104930
+ },
104931
+ "lastUpdatedByType": {
104932
+ "type": "string",
104933
+ "enum": [
104934
+ "flow",
104935
+ "user",
104936
+ "apiToken"
104937
+ ]
104938
+ },
104370
104939
  "name": {
104371
104940
  "type": "string",
104372
104941
  "minLength": 1,
@@ -104395,7 +104964,8 @@ Schema for the result of a workflow import request
104395
104964
  "data",
104396
104965
  "experience",
104397
104966
  "logic",
104398
- "output"
104967
+ "output",
104968
+ "debug"
104399
104969
  ]
104400
104970
  },
104401
104971
  "enabled": {
@@ -107002,6 +107572,30 @@ Schema for the result of a workflow import request
107002
107572
  "type": "string",
107003
107573
  "format": "date-time"
107004
107574
  },
107575
+ "createdById": {
107576
+ "type": "string",
107577
+ "pattern": "^[A-Fa-f\\d]{24}$"
107578
+ },
107579
+ "createdByType": {
107580
+ "type": "string",
107581
+ "enum": [
107582
+ "flow",
107583
+ "user",
107584
+ "apiToken"
107585
+ ]
107586
+ },
107587
+ "lastUpdatedById": {
107588
+ "type": "string",
107589
+ "pattern": "^[A-Fa-f\\d]{24}$"
107590
+ },
107591
+ "lastUpdatedByType": {
107592
+ "type": "string",
107593
+ "enum": [
107594
+ "flow",
107595
+ "user",
107596
+ "apiToken"
107597
+ ]
107598
+ },
107005
107599
  "version": {
107006
107600
  "type": "string",
107007
107601
  "minLength": 1,
@@ -114319,7 +114913,8 @@ Schema for a single Instance Custom Node
114319
114913
  "data",
114320
114914
  "experience",
114321
114915
  "logic",
114322
- "output"
114916
+ "output",
114917
+ "debug"
114323
114918
  ]
114324
114919
  },
114325
114920
  "minimumAgentVersion": {
@@ -114918,6 +115513,7 @@ Schema for the body of a Instance Custom Node modification request
114918
115513
  "experience",
114919
115514
  "logic",
114920
115515
  "output",
115516
+ "debug",
114921
115517
  ""
114922
115518
  ]
114923
115519
  },
@@ -115617,6 +116213,7 @@ Schema for the body of a Instance Custom Node creation request
115617
116213
  "experience",
115618
116214
  "logic",
115619
116215
  "output",
116216
+ "debug",
115620
116217
  ""
115621
116218
  ]
115622
116219
  },
@@ -116372,7 +116969,8 @@ Schema for a collection of Custom Nodes within an instance
116372
116969
  "data",
116373
116970
  "experience",
116374
116971
  "logic",
116375
- "output"
116972
+ "output",
116973
+ "debug"
116376
116974
  ]
116377
116975
  },
116378
116976
  "minimumAgentVersion": {
@@ -129675,7 +130273,8 @@ Schema for the set of additional nodes for the workflow palette
129675
130273
  "data",
129676
130274
  "experience",
129677
130275
  "logic",
129678
- "output"
130276
+ "output",
130277
+ "debug"
129679
130278
  ]
129680
130279
  },
129681
130280
  "customNodeConfig": {
@@ -130066,7 +130665,8 @@ Schema for the set of additional nodes for the workflow palette
130066
130665
  "data",
130067
130666
  "experience",
130068
130667
  "logic",
130069
- "output"
130668
+ "output",
130669
+ "debug"
130070
130670
  ]
130071
130671
  },
130072
130672
  "customNodeConfig": {
@@ -130921,19 +131521,19 @@ Schema for a single resource job
130921
131521
  ]
130922
131522
  },
130923
131523
  "maxIterationConcurrency": {
130924
- "type": "number",
131524
+ "type": "integer",
130925
131525
  "enum": [
130926
131526
  1,
130927
131527
  10
130928
131528
  ]
130929
131529
  },
130930
131530
  "iterationDelay": {
130931
- "type": "number",
131531
+ "type": "integer",
130932
131532
  "min": 0,
130933
131533
  "max": 60000
130934
131534
  },
130935
131535
  "iterationTimeout": {
130936
- "type": "number",
131536
+ "type": "integer",
130937
131537
  "min": 60000,
130938
131538
  "max": 900000
130939
131539
  },
@@ -130952,6 +131552,22 @@ Schema for a single resource job
130952
131552
  "defaultContext": {
130953
131553
  "type": "string",
130954
131554
  "maxLength": 32767
131555
+ },
131556
+ "retryOnTimeout": {
131557
+ "type": "boolean"
131558
+ },
131559
+ "retryOnFailure": {
131560
+ "type": "boolean"
131561
+ },
131562
+ "maxIterationRetries": {
131563
+ "type": "integer",
131564
+ "min": 1,
131565
+ "max": 5
131566
+ },
131567
+ "retryDelay": {
131568
+ "type": "integer",
131569
+ "min": 0,
131570
+ "max": 30000
130955
131571
  }
130956
131572
  },
130957
131573
  "additionalProperties": false
@@ -131077,17 +131693,17 @@ Schema for a set of Resource Job execution logs
131077
131693
  "maxLength": 32767
131078
131694
  },
131079
131695
  "iterationDelay": {
131080
- "type": "number",
131696
+ "type": "integer",
131081
131697
  "min": 0,
131082
131698
  "max": 60000
131083
131699
  },
131084
131700
  "iterationTimeout": {
131085
- "type": "number",
131701
+ "type": "integer",
131086
131702
  "min": 60000,
131087
131703
  "max": 900000
131088
131704
  },
131089
131705
  "maxIterationConcurrency": {
131090
- "type": "number",
131706
+ "type": "integer",
131091
131707
  "enum": [
131092
131708
  1,
131093
131709
  10
@@ -131113,6 +131729,22 @@ Schema for a set of Resource Job execution logs
131113
131729
  }
131114
131730
  }
131115
131731
  }
131732
+ },
131733
+ "retryOnTimeout": {
131734
+ "type": "boolean"
131735
+ },
131736
+ "retryOnFailure": {
131737
+ "type": "boolean"
131738
+ },
131739
+ "maxIterationRetries": {
131740
+ "type": "integer",
131741
+ "min": 1,
131742
+ "max": 5
131743
+ },
131744
+ "retryDelay": {
131745
+ "type": "integer",
131746
+ "min": 0,
131747
+ "max": 30000
131116
131748
  }
131117
131749
  }
131118
131750
  }
@@ -131234,25 +131866,41 @@ Schema for a resource job update
131234
131866
  "maxLength": 8192
131235
131867
  },
131236
131868
  "maxIterationConcurrency": {
131237
- "type": "number",
131869
+ "type": "integer",
131238
131870
  "enum": [
131239
131871
  1,
131240
131872
  10
131241
131873
  ]
131242
131874
  },
131243
131875
  "iterationDelay": {
131244
- "type": "number",
131876
+ "type": "integer",
131245
131877
  "min": 0,
131246
131878
  "max": 60000
131247
131879
  },
131248
131880
  "iterationTimeout": {
131249
- "type": "number",
131881
+ "type": "integer",
131250
131882
  "min": 60000,
131251
131883
  "max": 900000
131252
131884
  },
131253
131885
  "defaultContext": {
131254
131886
  "type": "string",
131255
131887
  "maxLength": 32767
131888
+ },
131889
+ "retryOnTimeout": {
131890
+ "type": "boolean"
131891
+ },
131892
+ "retryOnFailure": {
131893
+ "type": "boolean"
131894
+ },
131895
+ "maxIterationRetries": {
131896
+ "type": "integer",
131897
+ "min": 1,
131898
+ "max": 5
131899
+ },
131900
+ "retryDelay": {
131901
+ "type": "integer",
131902
+ "min": 0,
131903
+ "max": 30000
131256
131904
  }
131257
131905
  },
131258
131906
  "additionalProperties": false
@@ -131316,25 +131964,41 @@ Schema for a resource job creation
131316
131964
  ]
131317
131965
  },
131318
131966
  "maxIterationConcurrency": {
131319
- "type": "number",
131967
+ "type": "integer",
131320
131968
  "enum": [
131321
131969
  1,
131322
131970
  10
131323
131971
  ]
131324
131972
  },
131325
131973
  "iterationDelay": {
131326
- "type": "number",
131974
+ "type": "integer",
131327
131975
  "min": 0,
131328
131976
  "max": 60000
131329
131977
  },
131330
131978
  "iterationTimeout": {
131331
- "type": "number",
131979
+ "type": "integer",
131332
131980
  "min": 60000,
131333
131981
  "max": 900000
131334
131982
  },
131335
131983
  "defaultContext": {
131336
131984
  "type": "string",
131337
131985
  "maxLength": 32767
131986
+ },
131987
+ "retryOnTimeout": {
131988
+ "type": "boolean"
131989
+ },
131990
+ "retryOnFailure": {
131991
+ "type": "boolean"
131992
+ },
131993
+ "maxIterationRetries": {
131994
+ "type": "integer",
131995
+ "min": 1,
131996
+ "max": 5
131997
+ },
131998
+ "retryDelay": {
131999
+ "type": "integer",
132000
+ "min": 0,
132001
+ "max": 30000
131338
132002
  }
131339
132003
  },
131340
132004
  "additionalProperties": false,
@@ -131422,19 +132086,19 @@ Schema for a collection of Resource Jobs
131422
132086
  ]
131423
132087
  },
131424
132088
  "maxIterationConcurrency": {
131425
- "type": "number",
132089
+ "type": "integer",
131426
132090
  "enum": [
131427
132091
  1,
131428
132092
  10
131429
132093
  ]
131430
132094
  },
131431
132095
  "iterationDelay": {
131432
- "type": "number",
132096
+ "type": "integer",
131433
132097
  "min": 0,
131434
132098
  "max": 60000
131435
132099
  },
131436
132100
  "iterationTimeout": {
131437
- "type": "number",
132101
+ "type": "integer",
131438
132102
  "min": 60000,
131439
132103
  "max": 900000
131440
132104
  },
@@ -131453,6 +132117,22 @@ Schema for a collection of Resource Jobs
131453
132117
  "defaultContext": {
131454
132118
  "type": "string",
131455
132119
  "maxLength": 32767
132120
+ },
132121
+ "retryOnTimeout": {
132122
+ "type": "boolean"
132123
+ },
132124
+ "retryOnFailure": {
132125
+ "type": "boolean"
132126
+ },
132127
+ "maxIterationRetries": {
132128
+ "type": "integer",
132129
+ "min": 1,
132130
+ "max": 5
132131
+ },
132132
+ "retryDelay": {
132133
+ "type": "integer",
132134
+ "min": 0,
132135
+ "max": 30000
131456
132136
  }
131457
132137
  },
131458
132138
  "additionalProperties": false