losant_rest 1.17.1 → 1.17.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (71) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/docs/_schemas.md +2178 -742
  4. data/docs/application.md +4 -4
  5. data/docs/dashboard.md +1 -1
  6. data/docs/data.md +1 -1
  7. data/docs/dataTableRows.md +1 -1
  8. data/docs/device.md +2 -2
  9. data/docs/deviceRecipe.md +1 -1
  10. data/docs/devices.md +3 -2
  11. data/docs/embeddedDeployments.md +1 -1
  12. data/docs/events.md +3 -2
  13. data/docs/experienceGroups.md +1 -0
  14. data/docs/instance.md +1 -1
  15. data/docs/notebook.md +1 -1
  16. data/lib/losant_rest/application.rb +4 -4
  17. data/lib/losant_rest/dashboard.rb +1 -1
  18. data/lib/losant_rest/data.rb +1 -1
  19. data/lib/losant_rest/data_table_rows.rb +1 -1
  20. data/lib/losant_rest/device.rb +2 -2
  21. data/lib/losant_rest/device_recipe.rb +1 -1
  22. data/lib/losant_rest/devices.rb +3 -2
  23. data/lib/losant_rest/embedded_deployments.rb +1 -1
  24. data/lib/losant_rest/events.rb +3 -2
  25. data/lib/losant_rest/experience_groups.rb +3 -0
  26. data/lib/losant_rest/instance.rb +1 -1
  27. data/lib/losant_rest/notebook.rb +1 -1
  28. data/lib/losant_rest/version.rb +1 -1
  29. data/schemas/advancedExperienceGroupQuery.json +971 -0
  30. data/schemas/applicationDashboardPost.json +9 -1
  31. data/schemas/dashboard.json +9 -1
  32. data/schemas/dashboardPatch.json +9 -1
  33. data/schemas/dashboardPost.json +9 -1
  34. data/schemas/dashboards.json +9 -1
  35. data/schemas/deviceRecipePatch.json +9 -2
  36. data/schemas/experienceLinkedResources.json +0 -3
  37. data/schemas/flow.json +0 -1
  38. data/schemas/flowPatch.json +0 -1
  39. data/schemas/flowPost.json +0 -1
  40. data/schemas/flowVersion.json +0 -2
  41. data/schemas/flowVersionPost.json +0 -1
  42. data/schemas/flowVersions.json +0 -2
  43. data/schemas/flows.json +0 -1
  44. data/schemas/flowsImportPost.json +0 -2
  45. data/schemas/flowsImportResult.json +0 -3
  46. data/schemas/historicalSummaries.json +58 -29
  47. data/schemas/historicalSummary.json +58 -29
  48. data/schemas/instance.json +122 -0
  49. data/schemas/instanceCustomNodePatch.json +0 -1
  50. data/schemas/instanceCustomNodePost.json +0 -1
  51. data/schemas/instanceOrg.json +58 -29
  52. data/schemas/instanceOrgs.json +58 -29
  53. data/schemas/instancePatch.json +122 -0
  54. data/schemas/instances.json +122 -0
  55. data/schemas/integration.json +0 -27
  56. data/schemas/integrationPatch.json +0 -27
  57. data/schemas/integrationPost.json +0 -27
  58. data/schemas/integrations.json +0 -27
  59. data/schemas/jobEnqueuedResult.json +10 -1
  60. data/schemas/org.json +58 -29
  61. data/schemas/orgs.json +58 -29
  62. data/schemas/resourceJob.json +2 -1
  63. data/schemas/resourceJobExecutionLogs.json +6 -1
  64. data/schemas/resourceJobExecutionOptions.json +18 -0
  65. data/schemas/resourceJobPost.json +2 -1
  66. data/schemas/resourceJobs.json +2 -1
  67. data/schemas/webhook.json +4 -0
  68. data/schemas/webhookPatch.json +4 -0
  69. data/schemas/webhookPost.json +4 -0
  70. data/schemas/webhooks.json +4 -0
  71. metadata +3 -2
data/docs/_schemas.md CHANGED
@@ -3,6 +3,7 @@
3
3
  * [Advanced Application Key Query](#advanced-application-key-query)
4
4
  * [Advanced Device Query](#advanced-device-query)
5
5
  * [Advanced Event Query](#advanced-event-query)
6
+ * [Advanced Experience Group Query](#advanced-experience-group-query)
6
7
  * [Advanced Workflow By Version Query](#advanced-workflow-by-version-query)
7
8
  * [Advanced Workflow Query](#advanced-workflow-query)
8
9
  * [Advanced Workflow Version Query](#advanced-workflow-version-query)
@@ -87,7 +88,6 @@
87
88
  * [Device Post](#device-post)
88
89
  * [Device Recipe](#device-recipe)
89
90
  * [Device Recipe Bulk Create](#device-recipe-bulk-create)
90
- * [Device Recipe Bulk Create Enqueue](#device-recipe-bulk-create-enqueue)
91
91
  * [Device Recipe Bulk Create Post](#device-recipe-bulk-create-post)
92
92
  * [Device Recipe Patch](#device-recipe-patch)
93
93
  * [Device Recipe Post](#device-recipe-post)
@@ -258,7 +258,6 @@
258
258
  * [SSO Request](#sso-request)
259
259
  * [Success](#success)
260
260
  * [Success With Execution ID](#success-with-execution-id)
261
- * [Success With Job ID](#success-with-job-id)
262
261
  * [Tag Keys Response](#tag-keys-response)
263
262
  * [Tag Values Response](#tag-values-response)
264
263
  * [Template Keywords](#template-keywords)
@@ -4395,6 +4394,996 @@ Schema for advanced event queries
4395
4394
 
4396
4395
  <br/>
4397
4396
 
4397
+ ## Advanced Experience Group Query
4398
+
4399
+ Schema for advanced experience group queries
4400
+
4401
+ ### <a name="advanced-experience-group-query-schema"></a> Schema
4402
+
4403
+ ```json
4404
+ {
4405
+ "$schema": "http://json-schema.org/draft-07/schema#",
4406
+ "type": "object",
4407
+ "properties": {
4408
+ "$and": {
4409
+ "type": "array",
4410
+ "items": {
4411
+ "$ref": "#/definitions/advancedExperienceGroupQuery"
4412
+ },
4413
+ "maxItems": 100
4414
+ },
4415
+ "$or": {
4416
+ "type": "array",
4417
+ "items": {
4418
+ "$ref": "#/definitions/advancedExperienceGroupQuery"
4419
+ },
4420
+ "maxItems": 100
4421
+ },
4422
+ "$nor": {
4423
+ "type": "array",
4424
+ "items": {
4425
+ "$ref": "#/definitions/advancedExperienceGroupQuery"
4426
+ },
4427
+ "maxItems": 100
4428
+ },
4429
+ "id": {
4430
+ "oneOf": [
4431
+ {
4432
+ "oneOf": [
4433
+ {
4434
+ "type": "string",
4435
+ "pattern": "^[A-Fa-f\\d]{24}$"
4436
+ },
4437
+ {
4438
+ "type": "null"
4439
+ }
4440
+ ]
4441
+ },
4442
+ {
4443
+ "type": "object",
4444
+ "properties": {
4445
+ "$eq": {
4446
+ "oneOf": [
4447
+ {
4448
+ "type": "string",
4449
+ "pattern": "^[A-Fa-f\\d]{24}$"
4450
+ },
4451
+ {
4452
+ "type": "null"
4453
+ }
4454
+ ]
4455
+ },
4456
+ "$ne": {
4457
+ "oneOf": [
4458
+ {
4459
+ "type": "string",
4460
+ "pattern": "^[A-Fa-f\\d]{24}$"
4461
+ },
4462
+ {
4463
+ "type": "null"
4464
+ }
4465
+ ]
4466
+ },
4467
+ "$gt": {
4468
+ "oneOf": [
4469
+ {
4470
+ "type": "string",
4471
+ "pattern": "^[A-Fa-f\\d]{24}$"
4472
+ },
4473
+ {
4474
+ "type": "null"
4475
+ }
4476
+ ]
4477
+ },
4478
+ "$lt": {
4479
+ "oneOf": [
4480
+ {
4481
+ "type": "string",
4482
+ "pattern": "^[A-Fa-f\\d]{24}$"
4483
+ },
4484
+ {
4485
+ "type": "null"
4486
+ }
4487
+ ]
4488
+ },
4489
+ "$gte": {
4490
+ "oneOf": [
4491
+ {
4492
+ "type": "string",
4493
+ "pattern": "^[A-Fa-f\\d]{24}$"
4494
+ },
4495
+ {
4496
+ "type": "null"
4497
+ }
4498
+ ]
4499
+ },
4500
+ "$lte": {
4501
+ "oneOf": [
4502
+ {
4503
+ "type": "string",
4504
+ "pattern": "^[A-Fa-f\\d]{24}$"
4505
+ },
4506
+ {
4507
+ "type": "null"
4508
+ }
4509
+ ]
4510
+ },
4511
+ "$in": {
4512
+ "type": "array",
4513
+ "maxItems": 100,
4514
+ "items": {
4515
+ "type": "string",
4516
+ "pattern": "^[A-Fa-f\\d]{24}$"
4517
+ }
4518
+ },
4519
+ "$nin": {
4520
+ "type": "array",
4521
+ "maxItems": 100,
4522
+ "items": {
4523
+ "type": "string",
4524
+ "pattern": "^[A-Fa-f\\d]{24}$"
4525
+ }
4526
+ }
4527
+ },
4528
+ "additionalProperties": false,
4529
+ "minProperties": 1,
4530
+ "maxProperties": 1
4531
+ }
4532
+ ]
4533
+ },
4534
+ "creationDate": {
4535
+ "oneOf": [
4536
+ {
4537
+ "type": [
4538
+ "string",
4539
+ "number",
4540
+ "boolean",
4541
+ "null"
4542
+ ]
4543
+ },
4544
+ {
4545
+ "type": "object",
4546
+ "properties": {
4547
+ "$eq": {
4548
+ "type": [
4549
+ "string",
4550
+ "number",
4551
+ "boolean",
4552
+ "null"
4553
+ ]
4554
+ },
4555
+ "$ne": {
4556
+ "type": [
4557
+ "string",
4558
+ "number",
4559
+ "boolean",
4560
+ "null"
4561
+ ]
4562
+ },
4563
+ "$gt": {
4564
+ "type": [
4565
+ "string",
4566
+ "number",
4567
+ "boolean",
4568
+ "null"
4569
+ ]
4570
+ },
4571
+ "$lt": {
4572
+ "type": [
4573
+ "string",
4574
+ "number",
4575
+ "boolean",
4576
+ "null"
4577
+ ]
4578
+ },
4579
+ "$gte": {
4580
+ "type": [
4581
+ "string",
4582
+ "number",
4583
+ "boolean",
4584
+ "null"
4585
+ ]
4586
+ },
4587
+ "$lte": {
4588
+ "type": [
4589
+ "string",
4590
+ "number",
4591
+ "boolean",
4592
+ "null"
4593
+ ]
4594
+ },
4595
+ "$startsWith": {
4596
+ "type": "string",
4597
+ "minLength": 1
4598
+ },
4599
+ "$endsWith": {
4600
+ "type": "string",
4601
+ "minLength": 1
4602
+ },
4603
+ "$contains": {
4604
+ "type": "string",
4605
+ "minLength": 1
4606
+ },
4607
+ "$ci": {
4608
+ "type": "boolean"
4609
+ },
4610
+ "$in": {
4611
+ "type": "array",
4612
+ "maxItems": 100,
4613
+ "items": {
4614
+ "type": [
4615
+ "string",
4616
+ "number",
4617
+ "boolean"
4618
+ ]
4619
+ }
4620
+ },
4621
+ "$nin": {
4622
+ "type": "array",
4623
+ "maxItems": 100,
4624
+ "items": {
4625
+ "type": [
4626
+ "string",
4627
+ "number",
4628
+ "boolean"
4629
+ ]
4630
+ }
4631
+ }
4632
+ },
4633
+ "additionalProperties": false
4634
+ }
4635
+ ]
4636
+ },
4637
+ "lastUpdated": {
4638
+ "oneOf": [
4639
+ {
4640
+ "type": [
4641
+ "string",
4642
+ "number",
4643
+ "boolean",
4644
+ "null"
4645
+ ]
4646
+ },
4647
+ {
4648
+ "type": "object",
4649
+ "properties": {
4650
+ "$eq": {
4651
+ "type": [
4652
+ "string",
4653
+ "number",
4654
+ "boolean",
4655
+ "null"
4656
+ ]
4657
+ },
4658
+ "$ne": {
4659
+ "type": [
4660
+ "string",
4661
+ "number",
4662
+ "boolean",
4663
+ "null"
4664
+ ]
4665
+ },
4666
+ "$gt": {
4667
+ "type": [
4668
+ "string",
4669
+ "number",
4670
+ "boolean",
4671
+ "null"
4672
+ ]
4673
+ },
4674
+ "$lt": {
4675
+ "type": [
4676
+ "string",
4677
+ "number",
4678
+ "boolean",
4679
+ "null"
4680
+ ]
4681
+ },
4682
+ "$gte": {
4683
+ "type": [
4684
+ "string",
4685
+ "number",
4686
+ "boolean",
4687
+ "null"
4688
+ ]
4689
+ },
4690
+ "$lte": {
4691
+ "type": [
4692
+ "string",
4693
+ "number",
4694
+ "boolean",
4695
+ "null"
4696
+ ]
4697
+ },
4698
+ "$startsWith": {
4699
+ "type": "string",
4700
+ "minLength": 1
4701
+ },
4702
+ "$endsWith": {
4703
+ "type": "string",
4704
+ "minLength": 1
4705
+ },
4706
+ "$contains": {
4707
+ "type": "string",
4708
+ "minLength": 1
4709
+ },
4710
+ "$ci": {
4711
+ "type": "boolean"
4712
+ },
4713
+ "$in": {
4714
+ "type": "array",
4715
+ "maxItems": 100,
4716
+ "items": {
4717
+ "type": [
4718
+ "string",
4719
+ "number",
4720
+ "boolean"
4721
+ ]
4722
+ }
4723
+ },
4724
+ "$nin": {
4725
+ "type": "array",
4726
+ "maxItems": 100,
4727
+ "items": {
4728
+ "type": [
4729
+ "string",
4730
+ "number",
4731
+ "boolean"
4732
+ ]
4733
+ }
4734
+ }
4735
+ },
4736
+ "additionalProperties": false
4737
+ }
4738
+ ]
4739
+ },
4740
+ "name": {
4741
+ "oneOf": [
4742
+ {
4743
+ "type": [
4744
+ "string",
4745
+ "number",
4746
+ "boolean",
4747
+ "null"
4748
+ ]
4749
+ },
4750
+ {
4751
+ "type": "object",
4752
+ "properties": {
4753
+ "$eq": {
4754
+ "type": [
4755
+ "string",
4756
+ "number",
4757
+ "boolean",
4758
+ "null"
4759
+ ]
4760
+ },
4761
+ "$ne": {
4762
+ "type": [
4763
+ "string",
4764
+ "number",
4765
+ "boolean",
4766
+ "null"
4767
+ ]
4768
+ },
4769
+ "$gt": {
4770
+ "type": [
4771
+ "string",
4772
+ "number",
4773
+ "boolean",
4774
+ "null"
4775
+ ]
4776
+ },
4777
+ "$lt": {
4778
+ "type": [
4779
+ "string",
4780
+ "number",
4781
+ "boolean",
4782
+ "null"
4783
+ ]
4784
+ },
4785
+ "$gte": {
4786
+ "type": [
4787
+ "string",
4788
+ "number",
4789
+ "boolean",
4790
+ "null"
4791
+ ]
4792
+ },
4793
+ "$lte": {
4794
+ "type": [
4795
+ "string",
4796
+ "number",
4797
+ "boolean",
4798
+ "null"
4799
+ ]
4800
+ },
4801
+ "$startsWith": {
4802
+ "type": "string",
4803
+ "minLength": 1
4804
+ },
4805
+ "$endsWith": {
4806
+ "type": "string",
4807
+ "minLength": 1
4808
+ },
4809
+ "$contains": {
4810
+ "type": "string",
4811
+ "minLength": 1
4812
+ },
4813
+ "$ci": {
4814
+ "type": "boolean"
4815
+ },
4816
+ "$in": {
4817
+ "type": "array",
4818
+ "maxItems": 100,
4819
+ "items": {
4820
+ "type": [
4821
+ "string",
4822
+ "number",
4823
+ "boolean"
4824
+ ]
4825
+ }
4826
+ },
4827
+ "$nin": {
4828
+ "type": "array",
4829
+ "maxItems": 100,
4830
+ "items": {
4831
+ "type": [
4832
+ "string",
4833
+ "number",
4834
+ "boolean"
4835
+ ]
4836
+ }
4837
+ }
4838
+ },
4839
+ "additionalProperties": false
4840
+ }
4841
+ ]
4842
+ },
4843
+ "parentId": {
4844
+ "oneOf": [
4845
+ {
4846
+ "oneOf": [
4847
+ {
4848
+ "type": "string",
4849
+ "pattern": "^[A-Fa-f\\d]{24}$"
4850
+ },
4851
+ {
4852
+ "type": "null"
4853
+ }
4854
+ ]
4855
+ },
4856
+ {
4857
+ "type": "object",
4858
+ "properties": {
4859
+ "$eq": {
4860
+ "oneOf": [
4861
+ {
4862
+ "type": "string",
4863
+ "pattern": "^[A-Fa-f\\d]{24}$"
4864
+ },
4865
+ {
4866
+ "type": "null"
4867
+ }
4868
+ ]
4869
+ },
4870
+ "$ne": {
4871
+ "oneOf": [
4872
+ {
4873
+ "type": "string",
4874
+ "pattern": "^[A-Fa-f\\d]{24}$"
4875
+ },
4876
+ {
4877
+ "type": "null"
4878
+ }
4879
+ ]
4880
+ },
4881
+ "$gt": {
4882
+ "oneOf": [
4883
+ {
4884
+ "type": "string",
4885
+ "pattern": "^[A-Fa-f\\d]{24}$"
4886
+ },
4887
+ {
4888
+ "type": "null"
4889
+ }
4890
+ ]
4891
+ },
4892
+ "$lt": {
4893
+ "oneOf": [
4894
+ {
4895
+ "type": "string",
4896
+ "pattern": "^[A-Fa-f\\d]{24}$"
4897
+ },
4898
+ {
4899
+ "type": "null"
4900
+ }
4901
+ ]
4902
+ },
4903
+ "$gte": {
4904
+ "oneOf": [
4905
+ {
4906
+ "type": "string",
4907
+ "pattern": "^[A-Fa-f\\d]{24}$"
4908
+ },
4909
+ {
4910
+ "type": "null"
4911
+ }
4912
+ ]
4913
+ },
4914
+ "$lte": {
4915
+ "oneOf": [
4916
+ {
4917
+ "type": "string",
4918
+ "pattern": "^[A-Fa-f\\d]{24}$"
4919
+ },
4920
+ {
4921
+ "type": "null"
4922
+ }
4923
+ ]
4924
+ },
4925
+ "$in": {
4926
+ "type": "array",
4927
+ "maxItems": 100,
4928
+ "items": {
4929
+ "type": "string",
4930
+ "pattern": "^[A-Fa-f\\d]{24}$"
4931
+ }
4932
+ },
4933
+ "$nin": {
4934
+ "type": "array",
4935
+ "maxItems": 100,
4936
+ "items": {
4937
+ "type": "string",
4938
+ "pattern": "^[A-Fa-f\\d]{24}$"
4939
+ }
4940
+ }
4941
+ },
4942
+ "additionalProperties": false,
4943
+ "minProperties": 1,
4944
+ "maxProperties": 1
4945
+ }
4946
+ ]
4947
+ },
4948
+ "ancestorId": {
4949
+ "oneOf": [
4950
+ {
4951
+ "oneOf": [
4952
+ {
4953
+ "type": "string",
4954
+ "pattern": "^[A-Fa-f\\d]{24}$"
4955
+ },
4956
+ {
4957
+ "type": "null"
4958
+ }
4959
+ ]
4960
+ },
4961
+ {
4962
+ "type": "object",
4963
+ "properties": {
4964
+ "$eq": {
4965
+ "oneOf": [
4966
+ {
4967
+ "type": "string",
4968
+ "pattern": "^[A-Fa-f\\d]{24}$"
4969
+ },
4970
+ {
4971
+ "type": "null"
4972
+ }
4973
+ ]
4974
+ },
4975
+ "$ne": {
4976
+ "oneOf": [
4977
+ {
4978
+ "type": "string",
4979
+ "pattern": "^[A-Fa-f\\d]{24}$"
4980
+ },
4981
+ {
4982
+ "type": "null"
4983
+ }
4984
+ ]
4985
+ },
4986
+ "$gt": {
4987
+ "oneOf": [
4988
+ {
4989
+ "type": "string",
4990
+ "pattern": "^[A-Fa-f\\d]{24}$"
4991
+ },
4992
+ {
4993
+ "type": "null"
4994
+ }
4995
+ ]
4996
+ },
4997
+ "$lt": {
4998
+ "oneOf": [
4999
+ {
5000
+ "type": "string",
5001
+ "pattern": "^[A-Fa-f\\d]{24}$"
5002
+ },
5003
+ {
5004
+ "type": "null"
5005
+ }
5006
+ ]
5007
+ },
5008
+ "$gte": {
5009
+ "oneOf": [
5010
+ {
5011
+ "type": "string",
5012
+ "pattern": "^[A-Fa-f\\d]{24}$"
5013
+ },
5014
+ {
5015
+ "type": "null"
5016
+ }
5017
+ ]
5018
+ },
5019
+ "$lte": {
5020
+ "oneOf": [
5021
+ {
5022
+ "type": "string",
5023
+ "pattern": "^[A-Fa-f\\d]{24}$"
5024
+ },
5025
+ {
5026
+ "type": "null"
5027
+ }
5028
+ ]
5029
+ },
5030
+ "$in": {
5031
+ "type": "array",
5032
+ "maxItems": 100,
5033
+ "items": {
5034
+ "type": "string",
5035
+ "pattern": "^[A-Fa-f\\d]{24}$"
5036
+ }
5037
+ },
5038
+ "$nin": {
5039
+ "type": "array",
5040
+ "maxItems": 100,
5041
+ "items": {
5042
+ "type": "string",
5043
+ "pattern": "^[A-Fa-f\\d]{24}$"
5044
+ }
5045
+ }
5046
+ },
5047
+ "additionalProperties": false,
5048
+ "minProperties": 1,
5049
+ "maxProperties": 1
5050
+ }
5051
+ ]
5052
+ },
5053
+ "groupTags": {
5054
+ "oneOf": [
5055
+ {
5056
+ "oneOf": [
5057
+ {
5058
+ "type": "object",
5059
+ "properties": {
5060
+ "$tagKey": {
5061
+ "type": "string",
5062
+ "maxLength": 255
5063
+ },
5064
+ "$tagValue": {
5065
+ "type": "string",
5066
+ "maxLength": 255
5067
+ }
5068
+ },
5069
+ "additionalProperties": false,
5070
+ "minProperties": 1
5071
+ },
5072
+ {
5073
+ "type": "object",
5074
+ "patternProperties": {
5075
+ "^[0-9a-zA-Z_-]{1,255}": {
5076
+ "type": "string",
5077
+ "maxLength": 255
5078
+ }
5079
+ },
5080
+ "additionalProperties": false
5081
+ }
5082
+ ]
5083
+ },
5084
+ {
5085
+ "type": "object",
5086
+ "properties": {
5087
+ "$eq": {
5088
+ "oneOf": [
5089
+ {
5090
+ "type": "object",
5091
+ "properties": {
5092
+ "$tagKey": {
5093
+ "type": "string",
5094
+ "maxLength": 255
5095
+ },
5096
+ "$tagValue": {
5097
+ "type": "string",
5098
+ "maxLength": 255
5099
+ }
5100
+ },
5101
+ "additionalProperties": false,
5102
+ "minProperties": 1
5103
+ },
5104
+ {
5105
+ "type": "object",
5106
+ "patternProperties": {
5107
+ "^[0-9a-zA-Z_-]{1,255}": {
5108
+ "type": "string",
5109
+ "maxLength": 255
5110
+ }
5111
+ },
5112
+ "additionalProperties": false
5113
+ }
5114
+ ]
5115
+ }
5116
+ },
5117
+ "required": [
5118
+ "$eq"
5119
+ ],
5120
+ "additionalProperties": false
5121
+ },
5122
+ {
5123
+ "type": "object",
5124
+ "properties": {
5125
+ "$ne": {
5126
+ "oneOf": [
5127
+ {
5128
+ "type": "object",
5129
+ "properties": {
5130
+ "$tagKey": {
5131
+ "type": "string",
5132
+ "maxLength": 255
5133
+ },
5134
+ "$tagValue": {
5135
+ "type": "string",
5136
+ "maxLength": 255
5137
+ }
5138
+ },
5139
+ "additionalProperties": false,
5140
+ "minProperties": 1
5141
+ },
5142
+ {
5143
+ "type": "object",
5144
+ "patternProperties": {
5145
+ "^[0-9a-zA-Z_-]{1,255}": {
5146
+ "type": "string",
5147
+ "maxLength": 255
5148
+ }
5149
+ },
5150
+ "additionalProperties": false
5151
+ }
5152
+ ]
5153
+ }
5154
+ },
5155
+ "required": [
5156
+ "$ne"
5157
+ ],
5158
+ "additionalProperties": false
5159
+ }
5160
+ ]
5161
+ },
5162
+ "experienceUserId": {
5163
+ "oneOf": [
5164
+ {
5165
+ "oneOf": [
5166
+ {
5167
+ "type": "string",
5168
+ "pattern": "^[A-Fa-f\\d]{24}$"
5169
+ },
5170
+ {
5171
+ "type": "null"
5172
+ }
5173
+ ]
5174
+ },
5175
+ {
5176
+ "type": "object",
5177
+ "properties": {
5178
+ "$eq": {
5179
+ "oneOf": [
5180
+ {
5181
+ "type": "string",
5182
+ "pattern": "^[A-Fa-f\\d]{24}$"
5183
+ },
5184
+ {
5185
+ "type": "null"
5186
+ }
5187
+ ]
5188
+ },
5189
+ "$ne": {
5190
+ "oneOf": [
5191
+ {
5192
+ "type": "string",
5193
+ "pattern": "^[A-Fa-f\\d]{24}$"
5194
+ },
5195
+ {
5196
+ "type": "null"
5197
+ }
5198
+ ]
5199
+ },
5200
+ "$gt": {
5201
+ "oneOf": [
5202
+ {
5203
+ "type": "string",
5204
+ "pattern": "^[A-Fa-f\\d]{24}$"
5205
+ },
5206
+ {
5207
+ "type": "null"
5208
+ }
5209
+ ]
5210
+ },
5211
+ "$lt": {
5212
+ "oneOf": [
5213
+ {
5214
+ "type": "string",
5215
+ "pattern": "^[A-Fa-f\\d]{24}$"
5216
+ },
5217
+ {
5218
+ "type": "null"
5219
+ }
5220
+ ]
5221
+ },
5222
+ "$gte": {
5223
+ "oneOf": [
5224
+ {
5225
+ "type": "string",
5226
+ "pattern": "^[A-Fa-f\\d]{24}$"
5227
+ },
5228
+ {
5229
+ "type": "null"
5230
+ }
5231
+ ]
5232
+ },
5233
+ "$lte": {
5234
+ "oneOf": [
5235
+ {
5236
+ "type": "string",
5237
+ "pattern": "^[A-Fa-f\\d]{24}$"
5238
+ },
5239
+ {
5240
+ "type": "null"
5241
+ }
5242
+ ]
5243
+ },
5244
+ "$in": {
5245
+ "type": "array",
5246
+ "maxItems": 100,
5247
+ "items": {
5248
+ "type": "string",
5249
+ "pattern": "^[A-Fa-f\\d]{24}$"
5250
+ }
5251
+ },
5252
+ "$nin": {
5253
+ "type": "array",
5254
+ "maxItems": 100,
5255
+ "items": {
5256
+ "type": "string",
5257
+ "pattern": "^[A-Fa-f\\d]{24}$"
5258
+ }
5259
+ }
5260
+ },
5261
+ "additionalProperties": false,
5262
+ "minProperties": 1,
5263
+ "maxProperties": 1
5264
+ }
5265
+ ]
5266
+ },
5267
+ "experienceEndpointId": {
5268
+ "oneOf": [
5269
+ {
5270
+ "oneOf": [
5271
+ {
5272
+ "type": "string",
5273
+ "pattern": "^[A-Fa-f\\d]{24}$"
5274
+ },
5275
+ {
5276
+ "type": "null"
5277
+ }
5278
+ ]
5279
+ },
5280
+ {
5281
+ "type": "object",
5282
+ "properties": {
5283
+ "$eq": {
5284
+ "oneOf": [
5285
+ {
5286
+ "type": "string",
5287
+ "pattern": "^[A-Fa-f\\d]{24}$"
5288
+ },
5289
+ {
5290
+ "type": "null"
5291
+ }
5292
+ ]
5293
+ },
5294
+ "$ne": {
5295
+ "oneOf": [
5296
+ {
5297
+ "type": "string",
5298
+ "pattern": "^[A-Fa-f\\d]{24}$"
5299
+ },
5300
+ {
5301
+ "type": "null"
5302
+ }
5303
+ ]
5304
+ },
5305
+ "$gt": {
5306
+ "oneOf": [
5307
+ {
5308
+ "type": "string",
5309
+ "pattern": "^[A-Fa-f\\d]{24}$"
5310
+ },
5311
+ {
5312
+ "type": "null"
5313
+ }
5314
+ ]
5315
+ },
5316
+ "$lt": {
5317
+ "oneOf": [
5318
+ {
5319
+ "type": "string",
5320
+ "pattern": "^[A-Fa-f\\d]{24}$"
5321
+ },
5322
+ {
5323
+ "type": "null"
5324
+ }
5325
+ ]
5326
+ },
5327
+ "$gte": {
5328
+ "oneOf": [
5329
+ {
5330
+ "type": "string",
5331
+ "pattern": "^[A-Fa-f\\d]{24}$"
5332
+ },
5333
+ {
5334
+ "type": "null"
5335
+ }
5336
+ ]
5337
+ },
5338
+ "$lte": {
5339
+ "oneOf": [
5340
+ {
5341
+ "type": "string",
5342
+ "pattern": "^[A-Fa-f\\d]{24}$"
5343
+ },
5344
+ {
5345
+ "type": "null"
5346
+ }
5347
+ ]
5348
+ },
5349
+ "$in": {
5350
+ "type": "array",
5351
+ "maxItems": 100,
5352
+ "items": {
5353
+ "type": "string",
5354
+ "pattern": "^[A-Fa-f\\d]{24}$"
5355
+ }
5356
+ },
5357
+ "$nin": {
5358
+ "type": "array",
5359
+ "maxItems": 100,
5360
+ "items": {
5361
+ "type": "string",
5362
+ "pattern": "^[A-Fa-f\\d]{24}$"
5363
+ }
5364
+ }
5365
+ },
5366
+ "additionalProperties": false,
5367
+ "minProperties": 1,
5368
+ "maxProperties": 1
5369
+ }
5370
+ ]
5371
+ }
5372
+ },
5373
+ "additionalProperties": false
5374
+ }
5375
+ ```
5376
+ ### <a name="advanced-experience-group-query-example"></a> Example
5377
+
5378
+ ```json
5379
+ {
5380
+ "name": "My Great Group",
5381
+ "lastUpdated": "2022-01-30T17:18:11.911Z"
5382
+ }
5383
+ ```
5384
+
5385
+ <br/>
5386
+
4398
5387
  ## Advanced Workflow By Version Query
4399
5388
 
4400
5389
  Schema for advanced workflow queries
@@ -12509,6 +13498,9 @@ Schema for the body of an Application scoped Dashboard creation request
12509
13498
  "type": "string",
12510
13499
  "maxLength": 255
12511
13500
  },
13501
+ "centerOnDataPoints": {
13502
+ "type": "boolean"
13503
+ },
12512
13504
  "defaultBearing": {
12513
13505
  "type": "number"
12514
13506
  },
@@ -14807,6 +15799,9 @@ Schema for the body of an Application scoped Dashboard creation request
14807
15799
  "type": "string",
14808
15800
  "maxLength": 255
14809
15801
  },
15802
+ "centerOnDataPoints": {
15803
+ "type": "boolean"
15804
+ },
14810
15805
  "clusterPoints": {
14811
15806
  "type": "boolean"
14812
15807
  },
@@ -15336,6 +16331,9 @@ Schema for the body of an Application scoped Dashboard creation request
15336
16331
  }
15337
16332
  ]
15338
16333
  },
16334
+ "centerOnDataPoints": {
16335
+ "type": "boolean"
16336
+ },
15339
16337
  "compositeResult": {
15340
16338
  "type": "boolean"
15341
16339
  },
@@ -15351,7 +16349,6 @@ Schema for the body of an Application scoped Dashboard creation request
15351
16349
  },
15352
16350
  "defaultCenter": {
15353
16351
  "type": "string",
15354
- "minLength": 3,
15355
16352
  "maxLength": 255
15356
16353
  },
15357
16354
  "defaultZoom": {
@@ -21995,6 +22992,9 @@ Schema for a single Dashboard
21995
22992
  "type": "string",
21996
22993
  "maxLength": 255
21997
22994
  },
22995
+ "centerOnDataPoints": {
22996
+ "type": "boolean"
22997
+ },
21998
22998
  "defaultBearing": {
21999
22999
  "type": "number"
22000
23000
  },
@@ -24293,6 +25293,9 @@ Schema for a single Dashboard
24293
25293
  "type": "string",
24294
25294
  "maxLength": 255
24295
25295
  },
25296
+ "centerOnDataPoints": {
25297
+ "type": "boolean"
25298
+ },
24296
25299
  "clusterPoints": {
24297
25300
  "type": "boolean"
24298
25301
  },
@@ -24822,6 +25825,9 @@ Schema for a single Dashboard
24822
25825
  }
24823
25826
  ]
24824
25827
  },
25828
+ "centerOnDataPoints": {
25829
+ "type": "boolean"
25830
+ },
24825
25831
  "compositeResult": {
24826
25832
  "type": "boolean"
24827
25833
  },
@@ -24837,7 +25843,6 @@ Schema for a single Dashboard
24837
25843
  },
24838
25844
  "defaultCenter": {
24839
25845
  "type": "string",
24840
- "minLength": 3,
24841
25846
  "maxLength": 255
24842
25847
  },
24843
25848
  "defaultZoom": {
@@ -28041,6 +29046,9 @@ Schema for the body of a Dashboard modification request
28041
29046
  "type": "string",
28042
29047
  "maxLength": 255
28043
29048
  },
29049
+ "centerOnDataPoints": {
29050
+ "type": "boolean"
29051
+ },
28044
29052
  "defaultBearing": {
28045
29053
  "type": "number"
28046
29054
  },
@@ -30339,6 +31347,9 @@ Schema for the body of a Dashboard modification request
30339
31347
  "type": "string",
30340
31348
  "maxLength": 255
30341
31349
  },
31350
+ "centerOnDataPoints": {
31351
+ "type": "boolean"
31352
+ },
30342
31353
  "clusterPoints": {
30343
31354
  "type": "boolean"
30344
31355
  },
@@ -30868,6 +31879,9 @@ Schema for the body of a Dashboard modification request
30868
31879
  }
30869
31880
  ]
30870
31881
  },
31882
+ "centerOnDataPoints": {
31883
+ "type": "boolean"
31884
+ },
30871
31885
  "compositeResult": {
30872
31886
  "type": "boolean"
30873
31887
  },
@@ -30883,7 +31897,6 @@ Schema for the body of a Dashboard modification request
30883
31897
  },
30884
31898
  "defaultCenter": {
30885
31899
  "type": "string",
30886
- "minLength": 3,
30887
31900
  "maxLength": 255
30888
31901
  },
30889
31902
  "defaultZoom": {
@@ -34078,6 +35091,9 @@ Schema for the body of a Dashboard creation request
34078
35091
  "type": "string",
34079
35092
  "maxLength": 255
34080
35093
  },
35094
+ "centerOnDataPoints": {
35095
+ "type": "boolean"
35096
+ },
34081
35097
  "defaultBearing": {
34082
35098
  "type": "number"
34083
35099
  },
@@ -36376,6 +37392,9 @@ Schema for the body of a Dashboard creation request
36376
37392
  "type": "string",
36377
37393
  "maxLength": 255
36378
37394
  },
37395
+ "centerOnDataPoints": {
37396
+ "type": "boolean"
37397
+ },
36379
37398
  "clusterPoints": {
36380
37399
  "type": "boolean"
36381
37400
  },
@@ -36905,6 +37924,9 @@ Schema for the body of a Dashboard creation request
36905
37924
  }
36906
37925
  ]
36907
37926
  },
37927
+ "centerOnDataPoints": {
37928
+ "type": "boolean"
37929
+ },
36908
37930
  "compositeResult": {
36909
37931
  "type": "boolean"
36910
37932
  },
@@ -36920,7 +37942,6 @@ Schema for the body of a Dashboard creation request
36920
37942
  },
36921
37943
  "defaultCenter": {
36922
37944
  "type": "string",
36923
- "minLength": 3,
36924
37945
  "maxLength": 255
36925
37946
  },
36926
37947
  "defaultZoom": {
@@ -40490,6 +41511,9 @@ Schema for a collection of Dashboards
40490
41511
  "type": "string",
40491
41512
  "maxLength": 255
40492
41513
  },
41514
+ "centerOnDataPoints": {
41515
+ "type": "boolean"
41516
+ },
40493
41517
  "defaultBearing": {
40494
41518
  "type": "number"
40495
41519
  },
@@ -42788,6 +43812,9 @@ Schema for a collection of Dashboards
42788
43812
  "type": "string",
42789
43813
  "maxLength": 255
42790
43814
  },
43815
+ "centerOnDataPoints": {
43816
+ "type": "boolean"
43817
+ },
42791
43818
  "clusterPoints": {
42792
43819
  "type": "boolean"
42793
43820
  },
@@ -43317,6 +44344,9 @@ Schema for a collection of Dashboards
43317
44344
  }
43318
44345
  ]
43319
44346
  },
44347
+ "centerOnDataPoints": {
44348
+ "type": "boolean"
44349
+ },
43320
44350
  "compositeResult": {
43321
44351
  "type": "boolean"
43322
44352
  },
@@ -43332,7 +44362,6 @@ Schema for a collection of Dashboards
43332
44362
  },
43333
44363
  "defaultCenter": {
43334
44364
  "type": "string",
43335
- "minLength": 3,
43336
44365
  "maxLength": 255
43337
44366
  },
43338
44367
  "defaultZoom": {
@@ -47045,399 +48074,375 @@ Schema for a single Device Recipe
47045
48074
  "keepDuplicates": {
47046
48075
  "type": "boolean"
47047
48076
  }
47048
- }
47049
- }
47050
- ```
47051
- ### <a name="device-recipe-example"></a> Example
47052
-
47053
- ```json
47054
- {
47055
- "id": "575ecec57ae143cd83dc4a9f",
47056
- "deviceRecipeId": "575ecec57ae143cd83dc4a9f",
47057
- "applicationId": "575ec8687ae143cd83dc4a97",
47058
- "creationDate": "2016-06-13T04:00:00.000Z",
47059
- "lastUpdated": "2016-06-13T04:00:00.000Z",
47060
- "name": "Actual recipe name",
47061
- "deviceName": "Future device name",
47062
- "description": "My recipe description",
47063
- "deviceDescription": "Future device description",
47064
- "tags": [
47065
- {
47066
- "key": "TagKey",
47067
- "value": "TagValue"
47068
- }
47069
- ],
47070
- "attributes": [
47071
- {
47072
- "name": "voltage",
47073
- "dataType": "number"
47074
- }
47075
- ],
47076
- "deviceClass": "standalone"
47077
- }
47078
- ```
47079
-
47080
- <br/>
47081
-
47082
- ## Device Recipe Bulk Create
47083
-
47084
- Schema for the result of a bulk Device creation request
47085
-
47086
- ### <a name="device-recipe-bulk-create-schema"></a> Schema
47087
-
47088
- ```json
47089
- {
47090
- "$schema": "http://json-schema.org/draft-07/schema#",
47091
- "type": "object",
47092
- "properties": {
47093
- "created": {
47094
- "type": "number"
47095
- },
47096
- "failed": {
47097
- "type": "number"
47098
- },
47099
- "csvResult": {
47100
- "type": "string"
47101
- }
47102
- }
47103
- }
47104
- ```
47105
- ### <a name="device-recipe-bulk-create-example"></a> Example
47106
-
47107
- ```json
47108
- {
47109
- "created": 10,
47110
- "failed": 0,
47111
- "csvResult": "a,comma,separated,string,of,results"
47112
- }
47113
- ```
47114
-
47115
- <br/>
47116
-
47117
- ## Device Recipe Bulk Create Enqueue
47118
-
47119
- Schema for the result of a bulk Device creation request when creating more than 750 devices
47120
-
47121
- ### <a name="device-recipe-bulk-create-enqueue-schema"></a> Schema
47122
-
47123
- ```json
47124
- {
47125
- "$schema": "http://json-schema.org/draft-07/schema#",
47126
- "type": "object",
47127
- "properties": {
47128
- "jobQueued": {
47129
- "type": "boolean"
47130
- },
47131
- "jobId": {
47132
- "type": "string",
47133
- "maxLength": 21
47134
- }
47135
- }
47136
- }
47137
- ```
47138
- ### <a name="device-recipe-bulk-create-enqueue-example"></a> Example
47139
-
47140
- ```json
47141
- {
47142
- "jobQueued": true
47143
- }
47144
- ```
47145
-
47146
- <br/>
47147
-
47148
- ## Device Recipe Bulk Create Post
47149
-
47150
- Schema for the body of a bulk Device creation request
47151
-
47152
- ### <a name="device-recipe-bulk-create-post-schema"></a> Schema
47153
-
47154
- ```json
47155
- {
47156
- "$schema": "http://json-schema.org/draft-07/schema#",
47157
- "type": "object",
47158
- "properties": {
47159
- "csv": {
47160
- "type": "string"
47161
- },
47162
- "count": {
47163
- "type": "integer"
47164
- },
47165
- "nameColumn": {
47166
- "type": "string",
47167
- "maxLength": 255
47168
- },
47169
- "descriptionColumn": {
47170
- "type": "string",
47171
- "maxLength": 255
47172
- },
47173
- "gatewayIdColumn": {
47174
- "type": "string",
47175
- "maxLength": 255
47176
- },
47177
- "parentIdColumn": {
47178
- "type": "string",
47179
- "maxLength": 255
47180
- },
47181
- "makeUniqueKeySecret": {
47182
- "type": "boolean"
47183
- },
47184
- "email": {
47185
- "type": "string",
47186
- "format": "email",
47187
- "maxLength": 1024
47188
- },
47189
- "callbackUrl": {
47190
- "type": "string",
47191
- "format": "uri",
47192
- "maxLength": 1024
47193
- },
47194
- "gatewayId": {
47195
- "type": "string",
47196
- "pattern": "^[A-Fa-f\\d]{24}$"
47197
- },
47198
- "parentId": {
47199
- "oneOf": [
47200
- {
47201
- "type": "string",
47202
- "pattern": "^[A-Fa-f\\d]{24}$"
47203
- },
47204
- {
47205
- "type": "null"
47206
- }
47207
- ]
47208
- }
47209
- },
47210
- "additionalProperties": false
47211
- }
47212
- ```
47213
- ### <a name="device-recipe-bulk-create-post-example"></a> Example
47214
-
47215
- ```json
47216
- {
47217
- "nameColumn": "myNameColumn",
47218
- "descriptionColumn": "column2",
47219
- "csv": "a,comma,separated,string,of,input,data"
47220
- }
47221
- ```
47222
-
47223
- <br/>
47224
-
47225
- ## Device Recipe Patch
47226
-
47227
- Schema for the body of a Device Recipe modification request
47228
-
47229
- ### <a name="device-recipe-patch-schema"></a> Schema
47230
-
47231
- ```json
47232
- {
47233
- "$schema": "http://json-schema.org/draft-07/schema#",
47234
- "type": "object",
47235
- "properties": {
47236
- "name": {
47237
- "type": "string",
47238
- "minLength": 1,
47239
- "maxLength": 255
47240
- },
47241
- "deviceName": {
47242
- "type": "string",
47243
- "minLength": 1,
47244
- "maxLength": 255
47245
- },
47246
- "description": {
47247
- "type": "string",
47248
- "maxLength": 32767
47249
- },
47250
- "deviceDescription": {
47251
- "type": "string",
47252
- "maxLength": 32767
47253
- },
47254
- "tags": {
47255
- "type": "array",
47256
- "items": {
47257
- "type": "object",
47258
- "properties": {
47259
- "key": {
47260
- "type": "string",
47261
- "pattern": "^[0-9a-zA-Z_-]{1,255}$"
47262
- },
47263
- "value": {
47264
- "type": "string",
47265
- "minLength": 1,
47266
- "maxLength": 255
47267
- }
47268
- },
47269
- "required": [
47270
- "key",
47271
- "value"
47272
- ],
47273
- "additionalProperties": false
47274
- },
47275
- "maxItems": 100
47276
- },
47277
- "attributes": {
47278
- "type": "array",
47279
- "items": {
47280
- "type": "object",
47281
- "properties": {
47282
- "name": {
47283
- "type": "string",
47284
- "pattern": "^[0-9a-zA-Z_-]{1,255}$"
47285
- },
47286
- "dataType": {
47287
- "type": "string",
47288
- "enum": [
47289
- "string",
47290
- "number",
47291
- "gps",
47292
- "boolean",
47293
- "blob"
47294
- ]
47295
- },
47296
- "contentType": {
47297
- "type": "string",
47298
- "maxLength": 64
47299
- },
47300
- "description": {
47301
- "type": "string",
47302
- "maxLength": 32767
47303
- },
47304
- "attributeTags": {
47305
- "type": "object",
47306
- "patternProperties": {
47307
- "^[0-9a-zA-Z_-]{1,255}$": {
47308
- "type": "string",
47309
- "minLength": 1,
47310
- "maxLength": 255
47311
- }
47312
- },
47313
- "additionalProperties": false
47314
- },
47315
- "system": {
47316
- "type": "object",
47317
- "properties": {
47318
- "aggregation": {
47319
- "type": "string",
47320
- "enum": [
47321
- "FIRST",
47322
- "LAST",
47323
- "COUNT",
47324
- "MAX",
47325
- "MIN",
47326
- "MEDIAN",
47327
- "MEAN",
47328
- "SUM",
47329
- "STD_DEV"
47330
- ]
47331
- },
47332
- "aggregationOptions": {
47333
- "type": "array",
47334
- "items": {
47335
- "type": "object",
47336
- "additionalProperties": false
47337
- },
47338
- "additionalProperties": false,
47339
- "maxItems": 0
47340
- },
47341
- "childAttributes": {
47342
- "type": "array",
47343
- "items": {
47344
- "type": "object",
47345
- "properties": {
47346
- "name": {
47347
- "type": "string",
47348
- "pattern": "^[0-9a-zA-Z_-]{1,255}$"
47349
- },
47350
- "mode": {
47351
- "type": "string",
47352
- "enum": [
47353
- "all",
47354
- "whitelist",
47355
- "blacklist"
47356
- ]
47357
- },
47358
- "deviceIds": {
47359
- "type": "array",
47360
- "items": {
47361
- "type": "string",
47362
- "pattern": "^[A-Fa-f\\d]{24}$"
47363
- },
47364
- "maxItems": 1000
47365
- },
47366
- "deviceTags": {
47367
- "type": "array",
47368
- "items": {
47369
- "type": "object",
47370
- "properties": {
47371
- "key": {
47372
- "type": "string",
47373
- "pattern": "^[0-9a-zA-Z_-]{1,255}$"
47374
- },
47375
- "value": {
47376
- "type": "string",
47377
- "minLength": 1,
47378
- "maxLength": 255
47379
- }
47380
- },
47381
- "additionalProperties": false
47382
- },
47383
- "maxItems": 100
47384
- }
47385
- },
47386
- "required": [
47387
- "name",
47388
- "mode"
47389
- ],
47390
- "additionalProperties": false
47391
- },
47392
- "maxItems": 256
47393
- }
47394
- },
47395
- "additionalProperties": false
47396
- }
47397
- },
47398
- "required": [
47399
- "name",
47400
- "dataType"
47401
- ],
47402
- "additionalProperties": false
47403
- },
47404
- "maxItems": 256
47405
- },
47406
- "deviceClass": {
47407
- "type": "string",
47408
- "enum": [
47409
- "standalone",
47410
- "gateway",
47411
- "peripheral",
47412
- "floating",
47413
- "edgeCompute",
47414
- "system",
47415
- "embedded"
47416
- ]
47417
- },
47418
- "gatewayId": {
47419
- "type": "string",
47420
- "pattern": "^[A-Fa-f\\d]{24}$"
47421
- },
47422
- "parentId": {
47423
- "oneOf": [
47424
- {
47425
- "type": "string",
47426
- "pattern": "^[A-Fa-f\\d]{24}$"
47427
- },
47428
- {
47429
- "type": "null"
47430
- }
47431
- ]
47432
- },
47433
- "systemInterval": {
47434
- "type": "integer",
47435
- "minimum": 5,
47436
- "maximum": 3600
47437
- },
47438
- "keepDuplicates": {
47439
- "type": "boolean"
47440
- }
48077
+ }
48078
+ }
48079
+ ```
48080
+ ### <a name="device-recipe-example"></a> Example
48081
+
48082
+ ```json
48083
+ {
48084
+ "id": "575ecec57ae143cd83dc4a9f",
48085
+ "deviceRecipeId": "575ecec57ae143cd83dc4a9f",
48086
+ "applicationId": "575ec8687ae143cd83dc4a97",
48087
+ "creationDate": "2016-06-13T04:00:00.000Z",
48088
+ "lastUpdated": "2016-06-13T04:00:00.000Z",
48089
+ "name": "Actual recipe name",
48090
+ "deviceName": "Future device name",
48091
+ "description": "My recipe description",
48092
+ "deviceDescription": "Future device description",
48093
+ "tags": [
48094
+ {
48095
+ "key": "TagKey",
48096
+ "value": "TagValue"
48097
+ }
48098
+ ],
48099
+ "attributes": [
48100
+ {
48101
+ "name": "voltage",
48102
+ "dataType": "number"
48103
+ }
48104
+ ],
48105
+ "deviceClass": "standalone"
48106
+ }
48107
+ ```
48108
+
48109
+ <br/>
48110
+
48111
+ ## Device Recipe Bulk Create
48112
+
48113
+ Schema for the result of a bulk Device creation request
48114
+
48115
+ ### <a name="device-recipe-bulk-create-schema"></a> Schema
48116
+
48117
+ ```json
48118
+ {
48119
+ "$schema": "http://json-schema.org/draft-07/schema#",
48120
+ "type": "object",
48121
+ "properties": {
48122
+ "created": {
48123
+ "type": "number"
48124
+ },
48125
+ "failed": {
48126
+ "type": "number"
48127
+ },
48128
+ "csvResult": {
48129
+ "type": "string"
48130
+ }
48131
+ }
48132
+ }
48133
+ ```
48134
+ ### <a name="device-recipe-bulk-create-example"></a> Example
48135
+
48136
+ ```json
48137
+ {
48138
+ "created": 10,
48139
+ "failed": 0,
48140
+ "csvResult": "a,comma,separated,string,of,results"
48141
+ }
48142
+ ```
48143
+
48144
+ <br/>
48145
+
48146
+ ## Device Recipe Bulk Create Post
48147
+
48148
+ Schema for the body of a bulk Device creation request
48149
+
48150
+ ### <a name="device-recipe-bulk-create-post-schema"></a> Schema
48151
+
48152
+ ```json
48153
+ {
48154
+ "$schema": "http://json-schema.org/draft-07/schema#",
48155
+ "type": "object",
48156
+ "properties": {
48157
+ "csv": {
48158
+ "type": "string"
48159
+ },
48160
+ "count": {
48161
+ "type": "integer"
48162
+ },
48163
+ "nameColumn": {
48164
+ "type": "string",
48165
+ "maxLength": 255
48166
+ },
48167
+ "descriptionColumn": {
48168
+ "type": "string",
48169
+ "maxLength": 255
48170
+ },
48171
+ "gatewayIdColumn": {
48172
+ "type": "string",
48173
+ "maxLength": 255
48174
+ },
48175
+ "parentIdColumn": {
48176
+ "type": "string",
48177
+ "maxLength": 255
48178
+ },
48179
+ "makeUniqueKeySecret": {
48180
+ "type": "boolean"
48181
+ },
48182
+ "email": {
48183
+ "type": "string",
48184
+ "format": "email",
48185
+ "maxLength": 1024
48186
+ },
48187
+ "callbackUrl": {
48188
+ "type": "string",
48189
+ "format": "uri",
48190
+ "maxLength": 1024
48191
+ },
48192
+ "gatewayId": {
48193
+ "type": "string",
48194
+ "pattern": "^[A-Fa-f\\d]{24}$"
48195
+ },
48196
+ "parentId": {
48197
+ "oneOf": [
48198
+ {
48199
+ "type": "string",
48200
+ "pattern": "^[A-Fa-f\\d]{24}$"
48201
+ },
48202
+ {
48203
+ "type": "null"
48204
+ }
48205
+ ]
48206
+ }
48207
+ },
48208
+ "additionalProperties": false
48209
+ }
48210
+ ```
48211
+ ### <a name="device-recipe-bulk-create-post-example"></a> Example
48212
+
48213
+ ```json
48214
+ {
48215
+ "nameColumn": "myNameColumn",
48216
+ "descriptionColumn": "column2",
48217
+ "csv": "a,comma,separated,string,of,input,data"
48218
+ }
48219
+ ```
48220
+
48221
+ <br/>
48222
+
48223
+ ## Device Recipe Patch
48224
+
48225
+ Schema for the body of a Device Recipe modification request
48226
+
48227
+ ### <a name="device-recipe-patch-schema"></a> Schema
48228
+
48229
+ ```json
48230
+ {
48231
+ "$schema": "http://json-schema.org/draft-07/schema#",
48232
+ "type": "object",
48233
+ "properties": {
48234
+ "name": {
48235
+ "type": "string",
48236
+ "minLength": 1,
48237
+ "maxLength": 255
48238
+ },
48239
+ "deviceName": {
48240
+ "type": "string",
48241
+ "minLength": 1,
48242
+ "maxLength": 255
48243
+ },
48244
+ "description": {
48245
+ "type": "string",
48246
+ "maxLength": 32767
48247
+ },
48248
+ "deviceDescription": {
48249
+ "type": "string",
48250
+ "maxLength": 32767
48251
+ },
48252
+ "tags": {
48253
+ "type": "array",
48254
+ "items": {
48255
+ "type": "object",
48256
+ "properties": {
48257
+ "key": {
48258
+ "type": "string",
48259
+ "pattern": "^[0-9a-zA-Z_-]{1,255}$"
48260
+ },
48261
+ "value": {
48262
+ "type": "string",
48263
+ "minLength": 1,
48264
+ "maxLength": 255
48265
+ }
48266
+ },
48267
+ "required": [
48268
+ "key",
48269
+ "value"
48270
+ ],
48271
+ "additionalProperties": false
48272
+ },
48273
+ "maxItems": 100
48274
+ },
48275
+ "attributes": {
48276
+ "type": "array",
48277
+ "items": {
48278
+ "type": "object",
48279
+ "properties": {
48280
+ "name": {
48281
+ "type": "string",
48282
+ "pattern": "^[0-9a-zA-Z_-]{1,255}$"
48283
+ },
48284
+ "dataType": {
48285
+ "type": "string",
48286
+ "enum": [
48287
+ "string",
48288
+ "number",
48289
+ "gps",
48290
+ "boolean",
48291
+ "blob"
48292
+ ]
48293
+ },
48294
+ "contentType": {
48295
+ "type": "string",
48296
+ "maxLength": 64
48297
+ },
48298
+ "description": {
48299
+ "type": "string",
48300
+ "maxLength": 32767
48301
+ },
48302
+ "attributeTags": {
48303
+ "type": "object",
48304
+ "patternProperties": {
48305
+ "^[0-9a-zA-Z_-]{1,255}$": {
48306
+ "type": "string",
48307
+ "minLength": 1,
48308
+ "maxLength": 255
48309
+ }
48310
+ },
48311
+ "additionalProperties": false
48312
+ },
48313
+ "system": {
48314
+ "type": "object",
48315
+ "properties": {
48316
+ "aggregation": {
48317
+ "type": "string",
48318
+ "enum": [
48319
+ "FIRST",
48320
+ "LAST",
48321
+ "COUNT",
48322
+ "MAX",
48323
+ "MIN",
48324
+ "MEDIAN",
48325
+ "MEAN",
48326
+ "SUM",
48327
+ "STD_DEV"
48328
+ ]
48329
+ },
48330
+ "aggregationOptions": {
48331
+ "type": "array",
48332
+ "items": {
48333
+ "type": "object",
48334
+ "additionalProperties": false
48335
+ },
48336
+ "additionalProperties": false,
48337
+ "maxItems": 0
48338
+ },
48339
+ "childAttributes": {
48340
+ "type": "array",
48341
+ "items": {
48342
+ "type": "object",
48343
+ "properties": {
48344
+ "name": {
48345
+ "type": "string",
48346
+ "pattern": "^[0-9a-zA-Z_-]{1,255}$"
48347
+ },
48348
+ "mode": {
48349
+ "type": "string",
48350
+ "enum": [
48351
+ "all",
48352
+ "whitelist",
48353
+ "blacklist"
48354
+ ]
48355
+ },
48356
+ "deviceIds": {
48357
+ "type": "array",
48358
+ "items": {
48359
+ "type": "string",
48360
+ "pattern": "^[A-Fa-f\\d]{24}$"
48361
+ },
48362
+ "maxItems": 1000
48363
+ },
48364
+ "deviceTags": {
48365
+ "type": "array",
48366
+ "items": {
48367
+ "type": "object",
48368
+ "properties": {
48369
+ "key": {
48370
+ "type": "string",
48371
+ "pattern": "^[0-9a-zA-Z_-]{1,255}$"
48372
+ },
48373
+ "value": {
48374
+ "type": "string",
48375
+ "minLength": 1,
48376
+ "maxLength": 255
48377
+ }
48378
+ },
48379
+ "additionalProperties": false
48380
+ },
48381
+ "maxItems": 100
48382
+ }
48383
+ },
48384
+ "required": [
48385
+ "name",
48386
+ "mode"
48387
+ ],
48388
+ "additionalProperties": false
48389
+ },
48390
+ "maxItems": 256
48391
+ }
48392
+ },
48393
+ "additionalProperties": false
48394
+ }
48395
+ },
48396
+ "required": [
48397
+ "name",
48398
+ "dataType"
48399
+ ],
48400
+ "additionalProperties": false
48401
+ },
48402
+ "maxItems": 256
48403
+ },
48404
+ "deviceClass": {
48405
+ "type": "string",
48406
+ "enum": [
48407
+ "standalone",
48408
+ "gateway",
48409
+ "peripheral",
48410
+ "floating",
48411
+ "edgeCompute",
48412
+ "system",
48413
+ "embedded"
48414
+ ]
48415
+ },
48416
+ "gatewayId": {
48417
+ "oneOf": [
48418
+ {
48419
+ "type": "string",
48420
+ "pattern": "^[A-Fa-f\\d]{24}$"
48421
+ },
48422
+ {
48423
+ "type": "null"
48424
+ }
48425
+ ]
48426
+ },
48427
+ "parentId": {
48428
+ "oneOf": [
48429
+ {
48430
+ "type": "string",
48431
+ "pattern": "^[A-Fa-f\\d]{24}$"
48432
+ },
48433
+ {
48434
+ "type": "null"
48435
+ }
48436
+ ]
48437
+ },
48438
+ "systemInterval": {
48439
+ "type": "integer",
48440
+ "minimum": 5,
48441
+ "maximum": 3600
48442
+ },
48443
+ "keepDuplicates": {
48444
+ "type": "boolean"
48445
+ }
47441
48446
  },
47442
48447
  "additionalProperties": false
47443
48448
  }
@@ -63949,7 +64954,6 @@ The body of an experience linked resources response
63949
64954
  "flowError",
63950
64955
  "azureEventHub",
63951
64956
  "googlePubSub",
63952
- "meridian",
63953
64957
  "mqtt",
63954
64958
  "notebook",
63955
64959
  "onBoot",
@@ -66605,7 +67609,6 @@ The body of an experience linked resources response
66605
67609
  "flowError",
66606
67610
  "azureEventHub",
66607
67611
  "googlePubSub",
66608
- "meridian",
66609
67612
  "mqtt",
66610
67613
  "notebook",
66611
67614
  "onBoot",
@@ -69196,7 +70199,6 @@ The body of an experience linked resources response
69196
70199
  "flowError",
69197
70200
  "azureEventHub",
69198
70201
  "googlePubSub",
69199
- "meridian",
69200
70202
  "mqtt",
69201
70203
  "notebook",
69202
70204
  "onBoot",
@@ -73875,7 +74877,6 @@ Schema for a single Workflow
73875
74877
  "flowError",
73876
74878
  "azureEventHub",
73877
74879
  "googlePubSub",
73878
- "meridian",
73879
74880
  "mqtt",
73880
74881
  "notebook",
73881
74882
  "onBoot",
@@ -76697,7 +77698,6 @@ Schema for the body of a Workflow modification request
76697
77698
  "flowError",
76698
77699
  "azureEventHub",
76699
77700
  "googlePubSub",
76700
- "meridian",
76701
77701
  "mqtt",
76702
77702
  "notebook",
76703
77703
  "onBoot",
@@ -79274,7 +80274,6 @@ Schema for the body of a Workflow creation request
79274
80274
  "flowError",
79275
80275
  "azureEventHub",
79276
80276
  "googlePubSub",
79277
- "meridian",
79278
80277
  "mqtt",
79279
80278
  "notebook",
79280
80279
  "onBoot",
@@ -82098,7 +83097,6 @@ Schema for a single Workflow Version
82098
83097
  "flowError",
82099
83098
  "azureEventHub",
82100
83099
  "googlePubSub",
82101
- "meridian",
82102
83100
  "mqtt",
82103
83101
  "notebook",
82104
83102
  "onBoot",
@@ -84689,7 +85687,6 @@ Schema for a single Workflow Version
84689
85687
  "flowError",
84690
85688
  "azureEventHub",
84691
85689
  "googlePubSub",
84692
- "meridian",
84693
85690
  "mqtt",
84694
85691
  "notebook",
84695
85692
  "onBoot",
@@ -86991,7 +87988,6 @@ Schema for the body of a Workflow Version creation request
86991
87988
  "flowError",
86992
87989
  "azureEventHub",
86993
87990
  "googlePubSub",
86994
- "meridian",
86995
87991
  "mqtt",
86996
87992
  "notebook",
86997
87993
  "onBoot",
@@ -89584,7 +90580,6 @@ Schema for a collection of Workflow Versions
89584
90580
  "flowError",
89585
90581
  "azureEventHub",
89586
90582
  "googlePubSub",
89587
- "meridian",
89588
90583
  "mqtt",
89589
90584
  "notebook",
89590
90585
  "onBoot",
@@ -92175,7 +93170,6 @@ Schema for a collection of Workflow Versions
92175
93170
  "flowError",
92176
93171
  "azureEventHub",
92177
93172
  "googlePubSub",
92178
- "meridian",
92179
93173
  "mqtt",
92180
93174
  "notebook",
92181
93175
  "onBoot",
@@ -95578,7 +96572,6 @@ Schema for a collection of Workflows
95578
96572
  "flowError",
95579
96573
  "azureEventHub",
95580
96574
  "googlePubSub",
95581
- "meridian",
95582
96575
  "mqtt",
95583
96576
  "notebook",
95584
96577
  "onBoot",
@@ -98277,7 +99270,6 @@ Schema for the body of a workflow import request
98277
99270
  "flowError",
98278
99271
  "azureEventHub",
98279
99272
  "googlePubSub",
98280
- "meridian",
98281
99273
  "mqtt",
98282
99274
  "notebook",
98283
99275
  "onBoot",
@@ -100855,7 +101847,6 @@ Schema for the body of a workflow import request
100855
101847
  "flowError",
100856
101848
  "azureEventHub",
100857
101849
  "googlePubSub",
100858
- "meridian",
100859
101850
  "mqtt",
100860
101851
  "notebook",
100861
101852
  "onBoot",
@@ -103484,7 +104475,6 @@ Schema for the result of a workflow import request
103484
104475
  "flowError",
103485
104476
  "azureEventHub",
103486
104477
  "googlePubSub",
103487
- "meridian",
103488
104478
  "mqtt",
103489
104479
  "notebook",
103490
104480
  "onBoot",
@@ -106089,7 +107079,6 @@ Schema for the result of a workflow import request
106089
107079
  "flowError",
106090
107080
  "azureEventHub",
106091
107081
  "googlePubSub",
106092
- "meridian",
106093
107082
  "mqtt",
106094
107083
  "notebook",
106095
107084
  "onBoot",
@@ -108680,7 +109669,6 @@ Schema for the result of a workflow import request
108680
109669
  "flowError",
108681
109670
  "azureEventHub",
108682
109671
  "googlePubSub",
108683
- "meridian",
108684
109672
  "mqtt",
108685
109673
  "notebook",
108686
109674
  "onBoot",
@@ -111433,91 +112421,120 @@ Schema for a collection of Historical Summaries
111433
112421
  "type": "object",
111434
112422
  "properties": {
111435
112423
  "apitoken": {
111436
- "type": "integer"
112424
+ "type": "integer",
112425
+ "minimum": 0
111437
112426
  },
111438
112427
  "application": {
111439
- "type": "integer"
112428
+ "type": "integer",
112429
+ "minimum": 0
111440
112430
  },
111441
112431
  "applicationkey": {
111442
- "type": "integer"
112432
+ "type": "integer",
112433
+ "minimum": 0
111443
112434
  },
111444
112435
  "dashboard": {
111445
- "type": "integer"
112436
+ "type": "integer",
112437
+ "minimum": 0
111446
112438
  },
111447
112439
  "datatable": {
111448
- "type": "integer"
112440
+ "type": "integer",
112441
+ "minimum": 0
111449
112442
  },
111450
112443
  "device": {
111451
- "type": "integer"
112444
+ "type": "integer",
112445
+ "minimum": 0
111452
112446
  },
111453
112447
  "devicerecipe": {
111454
- "type": "integer"
112448
+ "type": "integer",
112449
+ "minimum": 0
111455
112450
  },
111456
112451
  "experiencedomain": {
111457
- "type": "integer"
112452
+ "type": "integer",
112453
+ "minimum": 0
111458
112454
  },
111459
112455
  "experienceendpoint": {
111460
- "type": "integer"
112456
+ "type": "integer",
112457
+ "minimum": 0
111461
112458
  },
111462
112459
  "experiencegroup": {
111463
- "type": "integer"
112460
+ "type": "integer",
112461
+ "minimum": 0
111464
112462
  },
111465
112463
  "experienceslug": {
111466
- "type": "integer"
112464
+ "type": "integer",
112465
+ "minimum": 0
111467
112466
  },
111468
112467
  "experienceuser": {
111469
- "type": "integer"
112468
+ "type": "integer",
112469
+ "minimum": 0
111470
112470
  },
111471
112471
  "experienceversion": {
111472
- "type": "integer"
112472
+ "type": "integer",
112473
+ "minimum": 0
111473
112474
  },
111474
112475
  "experienceview": {
111475
- "type": "integer"
112476
+ "type": "integer",
112477
+ "minimum": 0
111476
112478
  },
111477
112479
  "file": {
111478
- "type": "integer"
112480
+ "type": "integer",
112481
+ "minimum": 0
111479
112482
  },
111480
112483
  "flow": {
111481
- "type": "integer"
112484
+ "type": "integer",
112485
+ "minimum": 0
111482
112486
  },
111483
112487
  "integration": {
111484
- "type": "integer"
112488
+ "type": "integer",
112489
+ "minimum": 0
111485
112490
  },
111486
112491
  "notebook": {
111487
- "type": "integer"
112492
+ "type": "integer",
112493
+ "minimum": 0
111488
112494
  },
111489
112495
  "resourcejob": {
111490
- "type": "integer"
112496
+ "type": "integer",
112497
+ "minimum": 0
111491
112498
  },
111492
112499
  "webhook": {
111493
- "type": "integer"
112500
+ "type": "integer",
112501
+ "minimum": 0
111494
112502
  },
111495
112503
  "dataTTL": {
111496
- "type": "integer"
112504
+ "type": "integer",
112505
+ "minimum": 86400
111497
112506
  },
111498
112507
  "member": {
111499
- "type": "integer"
112508
+ "type": "integer",
112509
+ "minimum": 0
111500
112510
  },
111501
112511
  "payload": {
111502
- "type": "integer"
112512
+ "type": "integer",
112513
+ "minimum": 0
111503
112514
  },
111504
112515
  "storage": {
111505
- "type": "integer"
112516
+ "type": "integer",
112517
+ "minimum": 0
111506
112518
  },
111507
112519
  "notebookMinutesPerRun": {
111508
- "type": "integer"
112520
+ "type": "integer",
112521
+ "minimum": 0
111509
112522
  },
111510
112523
  "notebookMinutesPerMonth": {
111511
- "type": "integer"
112524
+ "type": "integer",
112525
+ "minimum": 0
111512
112526
  },
111513
112527
  "notebookInParallel": {
111514
- "type": "integer"
112528
+ "type": "integer",
112529
+ "minimum": 0
111515
112530
  },
111516
112531
  "experienceFlowSlots": {
111517
- "type": "integer"
112532
+ "type": "integer",
112533
+ "minimum": 0
111518
112534
  },
111519
112535
  "applicationFlowSlots": {
111520
- "type": "integer"
112536
+ "type": "integer",
112537
+ "minimum": 0
111521
112538
  }
111522
112539
  },
111523
112540
  "additionalProperties": false
@@ -112076,91 +113093,120 @@ Schema for a historical summary report
112076
113093
  "type": "object",
112077
113094
  "properties": {
112078
113095
  "apitoken": {
112079
- "type": "integer"
113096
+ "type": "integer",
113097
+ "minimum": 0
112080
113098
  },
112081
113099
  "application": {
112082
- "type": "integer"
113100
+ "type": "integer",
113101
+ "minimum": 0
112083
113102
  },
112084
113103
  "applicationkey": {
112085
- "type": "integer"
113104
+ "type": "integer",
113105
+ "minimum": 0
112086
113106
  },
112087
113107
  "dashboard": {
112088
- "type": "integer"
113108
+ "type": "integer",
113109
+ "minimum": 0
112089
113110
  },
112090
113111
  "datatable": {
112091
- "type": "integer"
113112
+ "type": "integer",
113113
+ "minimum": 0
112092
113114
  },
112093
113115
  "device": {
112094
- "type": "integer"
113116
+ "type": "integer",
113117
+ "minimum": 0
112095
113118
  },
112096
113119
  "devicerecipe": {
112097
- "type": "integer"
113120
+ "type": "integer",
113121
+ "minimum": 0
112098
113122
  },
112099
113123
  "experiencedomain": {
112100
- "type": "integer"
113124
+ "type": "integer",
113125
+ "minimum": 0
112101
113126
  },
112102
113127
  "experienceendpoint": {
112103
- "type": "integer"
113128
+ "type": "integer",
113129
+ "minimum": 0
112104
113130
  },
112105
113131
  "experiencegroup": {
112106
- "type": "integer"
113132
+ "type": "integer",
113133
+ "minimum": 0
112107
113134
  },
112108
113135
  "experienceslug": {
112109
- "type": "integer"
113136
+ "type": "integer",
113137
+ "minimum": 0
112110
113138
  },
112111
113139
  "experienceuser": {
112112
- "type": "integer"
113140
+ "type": "integer",
113141
+ "minimum": 0
112113
113142
  },
112114
113143
  "experienceversion": {
112115
- "type": "integer"
113144
+ "type": "integer",
113145
+ "minimum": 0
112116
113146
  },
112117
113147
  "experienceview": {
112118
- "type": "integer"
113148
+ "type": "integer",
113149
+ "minimum": 0
112119
113150
  },
112120
113151
  "file": {
112121
- "type": "integer"
113152
+ "type": "integer",
113153
+ "minimum": 0
112122
113154
  },
112123
113155
  "flow": {
112124
- "type": "integer"
113156
+ "type": "integer",
113157
+ "minimum": 0
112125
113158
  },
112126
113159
  "integration": {
112127
- "type": "integer"
113160
+ "type": "integer",
113161
+ "minimum": 0
112128
113162
  },
112129
113163
  "notebook": {
112130
- "type": "integer"
113164
+ "type": "integer",
113165
+ "minimum": 0
112131
113166
  },
112132
113167
  "resourcejob": {
112133
- "type": "integer"
113168
+ "type": "integer",
113169
+ "minimum": 0
112134
113170
  },
112135
113171
  "webhook": {
112136
- "type": "integer"
113172
+ "type": "integer",
113173
+ "minimum": 0
112137
113174
  },
112138
113175
  "dataTTL": {
112139
- "type": "integer"
113176
+ "type": "integer",
113177
+ "minimum": 86400
112140
113178
  },
112141
113179
  "member": {
112142
- "type": "integer"
113180
+ "type": "integer",
113181
+ "minimum": 0
112143
113182
  },
112144
113183
  "payload": {
112145
- "type": "integer"
113184
+ "type": "integer",
113185
+ "minimum": 0
112146
113186
  },
112147
113187
  "storage": {
112148
- "type": "integer"
113188
+ "type": "integer",
113189
+ "minimum": 0
112149
113190
  },
112150
113191
  "notebookMinutesPerRun": {
112151
- "type": "integer"
113192
+ "type": "integer",
113193
+ "minimum": 0
112152
113194
  },
112153
113195
  "notebookMinutesPerMonth": {
112154
- "type": "integer"
113196
+ "type": "integer",
113197
+ "minimum": 0
112155
113198
  },
112156
113199
  "notebookInParallel": {
112157
- "type": "integer"
113200
+ "type": "integer",
113201
+ "minimum": 0
112158
113202
  },
112159
113203
  "experienceFlowSlots": {
112160
- "type": "integer"
113204
+ "type": "integer",
113205
+ "minimum": 0
112161
113206
  },
112162
113207
  "applicationFlowSlots": {
112163
- "type": "integer"
113208
+ "type": "integer",
113209
+ "minimum": 0
112164
113210
  }
112165
113211
  },
112166
113212
  "additionalProperties": false
@@ -112983,6 +114029,128 @@ Schema for a single Instance
112983
114029
  },
112984
114030
  "additionalProperties": false
112985
114031
  },
114032
+ "orgDefaultLimitConfig": {
114033
+ "type": "object",
114034
+ "properties": {
114035
+ "apitoken": {
114036
+ "type": "integer",
114037
+ "minimum": 0
114038
+ },
114039
+ "application": {
114040
+ "type": "integer",
114041
+ "minimum": 0
114042
+ },
114043
+ "applicationkey": {
114044
+ "type": "integer",
114045
+ "minimum": 0
114046
+ },
114047
+ "dashboard": {
114048
+ "type": "integer",
114049
+ "minimum": 0
114050
+ },
114051
+ "datatable": {
114052
+ "type": "integer",
114053
+ "minimum": 0
114054
+ },
114055
+ "device": {
114056
+ "type": "integer",
114057
+ "minimum": 0
114058
+ },
114059
+ "devicerecipe": {
114060
+ "type": "integer",
114061
+ "minimum": 0
114062
+ },
114063
+ "experiencedomain": {
114064
+ "type": "integer",
114065
+ "minimum": 0
114066
+ },
114067
+ "experienceendpoint": {
114068
+ "type": "integer",
114069
+ "minimum": 0
114070
+ },
114071
+ "experiencegroup": {
114072
+ "type": "integer",
114073
+ "minimum": 0
114074
+ },
114075
+ "experienceslug": {
114076
+ "type": "integer",
114077
+ "minimum": 0
114078
+ },
114079
+ "experienceuser": {
114080
+ "type": "integer",
114081
+ "minimum": 0
114082
+ },
114083
+ "experienceversion": {
114084
+ "type": "integer",
114085
+ "minimum": 0
114086
+ },
114087
+ "experienceview": {
114088
+ "type": "integer",
114089
+ "minimum": 0
114090
+ },
114091
+ "file": {
114092
+ "type": "integer",
114093
+ "minimum": 0
114094
+ },
114095
+ "flow": {
114096
+ "type": "integer",
114097
+ "minimum": 0
114098
+ },
114099
+ "integration": {
114100
+ "type": "integer",
114101
+ "minimum": 0
114102
+ },
114103
+ "notebook": {
114104
+ "type": "integer",
114105
+ "minimum": 0
114106
+ },
114107
+ "resourcejob": {
114108
+ "type": "integer",
114109
+ "minimum": 0
114110
+ },
114111
+ "webhook": {
114112
+ "type": "integer",
114113
+ "minimum": 0
114114
+ },
114115
+ "dataTTL": {
114116
+ "type": "integer",
114117
+ "minimum": 86400
114118
+ },
114119
+ "member": {
114120
+ "type": "integer",
114121
+ "minimum": 0
114122
+ },
114123
+ "payload": {
114124
+ "type": "integer",
114125
+ "minimum": 0
114126
+ },
114127
+ "storage": {
114128
+ "type": "integer",
114129
+ "minimum": 0
114130
+ },
114131
+ "notebookMinutesPerRun": {
114132
+ "type": "integer",
114133
+ "minimum": 0
114134
+ },
114135
+ "notebookMinutesPerMonth": {
114136
+ "type": "integer",
114137
+ "minimum": 0
114138
+ },
114139
+ "notebookInParallel": {
114140
+ "type": "integer",
114141
+ "minimum": 0
114142
+ },
114143
+ "experienceFlowSlots": {
114144
+ "type": "integer",
114145
+ "minimum": 0
114146
+ },
114147
+ "applicationFlowSlots": {
114148
+ "type": "integer",
114149
+ "minimum": 0
114150
+ }
114151
+ },
114152
+ "additionalProperties": false
114153
+ },
112986
114154
  "members": {
112987
114155
  "type": "array",
112988
114156
  "items": {
@@ -113813,7 +114981,6 @@ Schema for the body of a Instance Custom Node modification request
113813
114981
  "flowError",
113814
114982
  "azureEventHub",
113815
114983
  "googlePubSub",
113816
- "meridian",
113817
114984
  "mqtt",
113818
114985
  "notebook",
113819
114986
  "onBoot",
@@ -114513,7 +115680,6 @@ Schema for the body of a Instance Custom Node creation request
114513
115680
  "flowError",
114514
115681
  "azureEventHub",
114515
115682
  "googlePubSub",
114516
- "meridian",
114517
115683
  "mqtt",
114518
115684
  "notebook",
114519
115685
  "onBoot",
@@ -116117,91 +117283,120 @@ Schema for the body of an Organization owned by an instance
116117
117283
  "type": "object",
116118
117284
  "properties": {
116119
117285
  "apitoken": {
116120
- "type": "integer"
117286
+ "type": "integer",
117287
+ "minimum": 0
116121
117288
  },
116122
117289
  "application": {
116123
- "type": "integer"
117290
+ "type": "integer",
117291
+ "minimum": 0
116124
117292
  },
116125
117293
  "applicationkey": {
116126
- "type": "integer"
117294
+ "type": "integer",
117295
+ "minimum": 0
116127
117296
  },
116128
117297
  "dashboard": {
116129
- "type": "integer"
117298
+ "type": "integer",
117299
+ "minimum": 0
116130
117300
  },
116131
117301
  "datatable": {
116132
- "type": "integer"
117302
+ "type": "integer",
117303
+ "minimum": 0
116133
117304
  },
116134
117305
  "device": {
116135
- "type": "integer"
117306
+ "type": "integer",
117307
+ "minimum": 0
116136
117308
  },
116137
117309
  "devicerecipe": {
116138
- "type": "integer"
117310
+ "type": "integer",
117311
+ "minimum": 0
116139
117312
  },
116140
117313
  "experiencedomain": {
116141
- "type": "integer"
117314
+ "type": "integer",
117315
+ "minimum": 0
116142
117316
  },
116143
117317
  "experienceendpoint": {
116144
- "type": "integer"
117318
+ "type": "integer",
117319
+ "minimum": 0
116145
117320
  },
116146
117321
  "experiencegroup": {
116147
- "type": "integer"
117322
+ "type": "integer",
117323
+ "minimum": 0
116148
117324
  },
116149
117325
  "experienceslug": {
116150
- "type": "integer"
117326
+ "type": "integer",
117327
+ "minimum": 0
116151
117328
  },
116152
117329
  "experienceuser": {
116153
- "type": "integer"
117330
+ "type": "integer",
117331
+ "minimum": 0
116154
117332
  },
116155
117333
  "experienceversion": {
116156
- "type": "integer"
117334
+ "type": "integer",
117335
+ "minimum": 0
116157
117336
  },
116158
117337
  "experienceview": {
116159
- "type": "integer"
117338
+ "type": "integer",
117339
+ "minimum": 0
116160
117340
  },
116161
117341
  "file": {
116162
- "type": "integer"
117342
+ "type": "integer",
117343
+ "minimum": 0
116163
117344
  },
116164
117345
  "flow": {
116165
- "type": "integer"
117346
+ "type": "integer",
117347
+ "minimum": 0
116166
117348
  },
116167
117349
  "integration": {
116168
- "type": "integer"
117350
+ "type": "integer",
117351
+ "minimum": 0
116169
117352
  },
116170
117353
  "notebook": {
116171
- "type": "integer"
117354
+ "type": "integer",
117355
+ "minimum": 0
116172
117356
  },
116173
117357
  "resourcejob": {
116174
- "type": "integer"
117358
+ "type": "integer",
117359
+ "minimum": 0
116175
117360
  },
116176
117361
  "webhook": {
116177
- "type": "integer"
117362
+ "type": "integer",
117363
+ "minimum": 0
116178
117364
  },
116179
117365
  "dataTTL": {
116180
- "type": "integer"
117366
+ "type": "integer",
117367
+ "minimum": 86400
116181
117368
  },
116182
117369
  "member": {
116183
- "type": "integer"
117370
+ "type": "integer",
117371
+ "minimum": 0
116184
117372
  },
116185
117373
  "payload": {
116186
- "type": "integer"
117374
+ "type": "integer",
117375
+ "minimum": 0
116187
117376
  },
116188
117377
  "storage": {
116189
- "type": "integer"
117378
+ "type": "integer",
117379
+ "minimum": 0
116190
117380
  },
116191
117381
  "notebookMinutesPerRun": {
116192
- "type": "integer"
117382
+ "type": "integer",
117383
+ "minimum": 0
116193
117384
  },
116194
117385
  "notebookMinutesPerMonth": {
116195
- "type": "integer"
117386
+ "type": "integer",
117387
+ "minimum": 0
116196
117388
  },
116197
117389
  "notebookInParallel": {
116198
- "type": "integer"
117390
+ "type": "integer",
117391
+ "minimum": 0
116199
117392
  },
116200
117393
  "experienceFlowSlots": {
116201
- "type": "integer"
117394
+ "type": "integer",
117395
+ "minimum": 0
116202
117396
  },
116203
117397
  "applicationFlowSlots": {
116204
- "type": "integer"
117398
+ "type": "integer",
117399
+ "minimum": 0
116205
117400
  }
116206
117401
  },
116207
117402
  "additionalProperties": false
@@ -117347,91 +118542,120 @@ Schema for a collection of Organizations within an instance
117347
118542
  "type": "object",
117348
118543
  "properties": {
117349
118544
  "apitoken": {
117350
- "type": "integer"
118545
+ "type": "integer",
118546
+ "minimum": 0
117351
118547
  },
117352
118548
  "application": {
117353
- "type": "integer"
118549
+ "type": "integer",
118550
+ "minimum": 0
117354
118551
  },
117355
118552
  "applicationkey": {
117356
- "type": "integer"
118553
+ "type": "integer",
118554
+ "minimum": 0
117357
118555
  },
117358
118556
  "dashboard": {
117359
- "type": "integer"
118557
+ "type": "integer",
118558
+ "minimum": 0
117360
118559
  },
117361
118560
  "datatable": {
117362
- "type": "integer"
118561
+ "type": "integer",
118562
+ "minimum": 0
117363
118563
  },
117364
118564
  "device": {
117365
- "type": "integer"
118565
+ "type": "integer",
118566
+ "minimum": 0
117366
118567
  },
117367
118568
  "devicerecipe": {
117368
- "type": "integer"
118569
+ "type": "integer",
118570
+ "minimum": 0
117369
118571
  },
117370
118572
  "experiencedomain": {
117371
- "type": "integer"
118573
+ "type": "integer",
118574
+ "minimum": 0
117372
118575
  },
117373
118576
  "experienceendpoint": {
117374
- "type": "integer"
118577
+ "type": "integer",
118578
+ "minimum": 0
117375
118579
  },
117376
118580
  "experiencegroup": {
117377
- "type": "integer"
118581
+ "type": "integer",
118582
+ "minimum": 0
117378
118583
  },
117379
118584
  "experienceslug": {
117380
- "type": "integer"
118585
+ "type": "integer",
118586
+ "minimum": 0
117381
118587
  },
117382
118588
  "experienceuser": {
117383
- "type": "integer"
118589
+ "type": "integer",
118590
+ "minimum": 0
117384
118591
  },
117385
118592
  "experienceversion": {
117386
- "type": "integer"
118593
+ "type": "integer",
118594
+ "minimum": 0
117387
118595
  },
117388
118596
  "experienceview": {
117389
- "type": "integer"
118597
+ "type": "integer",
118598
+ "minimum": 0
117390
118599
  },
117391
118600
  "file": {
117392
- "type": "integer"
118601
+ "type": "integer",
118602
+ "minimum": 0
117393
118603
  },
117394
118604
  "flow": {
117395
- "type": "integer"
118605
+ "type": "integer",
118606
+ "minimum": 0
117396
118607
  },
117397
118608
  "integration": {
117398
- "type": "integer"
118609
+ "type": "integer",
118610
+ "minimum": 0
117399
118611
  },
117400
118612
  "notebook": {
117401
- "type": "integer"
118613
+ "type": "integer",
118614
+ "minimum": 0
117402
118615
  },
117403
118616
  "resourcejob": {
117404
- "type": "integer"
118617
+ "type": "integer",
118618
+ "minimum": 0
117405
118619
  },
117406
118620
  "webhook": {
117407
- "type": "integer"
118621
+ "type": "integer",
118622
+ "minimum": 0
117408
118623
  },
117409
118624
  "dataTTL": {
117410
- "type": "integer"
118625
+ "type": "integer",
118626
+ "minimum": 86400
117411
118627
  },
117412
118628
  "member": {
117413
- "type": "integer"
118629
+ "type": "integer",
118630
+ "minimum": 0
117414
118631
  },
117415
118632
  "payload": {
117416
- "type": "integer"
118633
+ "type": "integer",
118634
+ "minimum": 0
117417
118635
  },
117418
118636
  "storage": {
117419
- "type": "integer"
118637
+ "type": "integer",
118638
+ "minimum": 0
117420
118639
  },
117421
118640
  "notebookMinutesPerRun": {
117422
- "type": "integer"
118641
+ "type": "integer",
118642
+ "minimum": 0
117423
118643
  },
117424
118644
  "notebookMinutesPerMonth": {
117425
- "type": "integer"
118645
+ "type": "integer",
118646
+ "minimum": 0
117426
118647
  },
117427
118648
  "notebookInParallel": {
117428
- "type": "integer"
118649
+ "type": "integer",
118650
+ "minimum": 0
117429
118651
  },
117430
118652
  "experienceFlowSlots": {
117431
- "type": "integer"
118653
+ "type": "integer",
118654
+ "minimum": 0
117432
118655
  },
117433
118656
  "applicationFlowSlots": {
117434
- "type": "integer"
118657
+ "type": "integer",
118658
+ "minimum": 0
117435
118659
  }
117436
118660
  },
117437
118661
  "additionalProperties": false
@@ -117633,6 +118857,128 @@ Schema for instance patch request
117633
118857
  ],
117634
118858
  "additionalProperties": false
117635
118859
  }
118860
+ },
118861
+ "orgDefaultLimitConfig": {
118862
+ "type": "object",
118863
+ "properties": {
118864
+ "apitoken": {
118865
+ "type": "integer",
118866
+ "minimum": 0
118867
+ },
118868
+ "application": {
118869
+ "type": "integer",
118870
+ "minimum": 0
118871
+ },
118872
+ "applicationkey": {
118873
+ "type": "integer",
118874
+ "minimum": 0
118875
+ },
118876
+ "dashboard": {
118877
+ "type": "integer",
118878
+ "minimum": 0
118879
+ },
118880
+ "datatable": {
118881
+ "type": "integer",
118882
+ "minimum": 0
118883
+ },
118884
+ "device": {
118885
+ "type": "integer",
118886
+ "minimum": 0
118887
+ },
118888
+ "devicerecipe": {
118889
+ "type": "integer",
118890
+ "minimum": 0
118891
+ },
118892
+ "experiencedomain": {
118893
+ "type": "integer",
118894
+ "minimum": 0
118895
+ },
118896
+ "experienceendpoint": {
118897
+ "type": "integer",
118898
+ "minimum": 0
118899
+ },
118900
+ "experiencegroup": {
118901
+ "type": "integer",
118902
+ "minimum": 0
118903
+ },
118904
+ "experienceslug": {
118905
+ "type": "integer",
118906
+ "minimum": 0
118907
+ },
118908
+ "experienceuser": {
118909
+ "type": "integer",
118910
+ "minimum": 0
118911
+ },
118912
+ "experienceversion": {
118913
+ "type": "integer",
118914
+ "minimum": 0
118915
+ },
118916
+ "experienceview": {
118917
+ "type": "integer",
118918
+ "minimum": 0
118919
+ },
118920
+ "file": {
118921
+ "type": "integer",
118922
+ "minimum": 0
118923
+ },
118924
+ "flow": {
118925
+ "type": "integer",
118926
+ "minimum": 0
118927
+ },
118928
+ "integration": {
118929
+ "type": "integer",
118930
+ "minimum": 0
118931
+ },
118932
+ "notebook": {
118933
+ "type": "integer",
118934
+ "minimum": 0
118935
+ },
118936
+ "resourcejob": {
118937
+ "type": "integer",
118938
+ "minimum": 0
118939
+ },
118940
+ "webhook": {
118941
+ "type": "integer",
118942
+ "minimum": 0
118943
+ },
118944
+ "dataTTL": {
118945
+ "type": "integer",
118946
+ "minimum": 86400
118947
+ },
118948
+ "member": {
118949
+ "type": "integer",
118950
+ "minimum": 0
118951
+ },
118952
+ "payload": {
118953
+ "type": "integer",
118954
+ "minimum": 0
118955
+ },
118956
+ "storage": {
118957
+ "type": "integer",
118958
+ "minimum": 0
118959
+ },
118960
+ "notebookMinutesPerRun": {
118961
+ "type": "integer",
118962
+ "minimum": 0
118963
+ },
118964
+ "notebookMinutesPerMonth": {
118965
+ "type": "integer",
118966
+ "minimum": 0
118967
+ },
118968
+ "notebookInParallel": {
118969
+ "type": "integer",
118970
+ "minimum": 0
118971
+ },
118972
+ "experienceFlowSlots": {
118973
+ "type": "integer",
118974
+ "minimum": 0
118975
+ },
118976
+ "applicationFlowSlots": {
118977
+ "type": "integer",
118978
+ "minimum": 0
118979
+ }
118980
+ },
118981
+ "additionalProperties": false
117636
118982
  }
117637
118983
  },
117638
118984
  "additionalProperties": false
@@ -119003,6 +120349,128 @@ Schema for a collection of Instances
119003
120349
  },
119004
120350
  "additionalProperties": false
119005
120351
  },
120352
+ "orgDefaultLimitConfig": {
120353
+ "type": "object",
120354
+ "properties": {
120355
+ "apitoken": {
120356
+ "type": "integer",
120357
+ "minimum": 0
120358
+ },
120359
+ "application": {
120360
+ "type": "integer",
120361
+ "minimum": 0
120362
+ },
120363
+ "applicationkey": {
120364
+ "type": "integer",
120365
+ "minimum": 0
120366
+ },
120367
+ "dashboard": {
120368
+ "type": "integer",
120369
+ "minimum": 0
120370
+ },
120371
+ "datatable": {
120372
+ "type": "integer",
120373
+ "minimum": 0
120374
+ },
120375
+ "device": {
120376
+ "type": "integer",
120377
+ "minimum": 0
120378
+ },
120379
+ "devicerecipe": {
120380
+ "type": "integer",
120381
+ "minimum": 0
120382
+ },
120383
+ "experiencedomain": {
120384
+ "type": "integer",
120385
+ "minimum": 0
120386
+ },
120387
+ "experienceendpoint": {
120388
+ "type": "integer",
120389
+ "minimum": 0
120390
+ },
120391
+ "experiencegroup": {
120392
+ "type": "integer",
120393
+ "minimum": 0
120394
+ },
120395
+ "experienceslug": {
120396
+ "type": "integer",
120397
+ "minimum": 0
120398
+ },
120399
+ "experienceuser": {
120400
+ "type": "integer",
120401
+ "minimum": 0
120402
+ },
120403
+ "experienceversion": {
120404
+ "type": "integer",
120405
+ "minimum": 0
120406
+ },
120407
+ "experienceview": {
120408
+ "type": "integer",
120409
+ "minimum": 0
120410
+ },
120411
+ "file": {
120412
+ "type": "integer",
120413
+ "minimum": 0
120414
+ },
120415
+ "flow": {
120416
+ "type": "integer",
120417
+ "minimum": 0
120418
+ },
120419
+ "integration": {
120420
+ "type": "integer",
120421
+ "minimum": 0
120422
+ },
120423
+ "notebook": {
120424
+ "type": "integer",
120425
+ "minimum": 0
120426
+ },
120427
+ "resourcejob": {
120428
+ "type": "integer",
120429
+ "minimum": 0
120430
+ },
120431
+ "webhook": {
120432
+ "type": "integer",
120433
+ "minimum": 0
120434
+ },
120435
+ "dataTTL": {
120436
+ "type": "integer",
120437
+ "minimum": 86400
120438
+ },
120439
+ "member": {
120440
+ "type": "integer",
120441
+ "minimum": 0
120442
+ },
120443
+ "payload": {
120444
+ "type": "integer",
120445
+ "minimum": 0
120446
+ },
120447
+ "storage": {
120448
+ "type": "integer",
120449
+ "minimum": 0
120450
+ },
120451
+ "notebookMinutesPerRun": {
120452
+ "type": "integer",
120453
+ "minimum": 0
120454
+ },
120455
+ "notebookMinutesPerMonth": {
120456
+ "type": "integer",
120457
+ "minimum": 0
120458
+ },
120459
+ "notebookInParallel": {
120460
+ "type": "integer",
120461
+ "minimum": 0
120462
+ },
120463
+ "experienceFlowSlots": {
120464
+ "type": "integer",
120465
+ "minimum": 0
120466
+ },
120467
+ "applicationFlowSlots": {
120468
+ "type": "integer",
120469
+ "minimum": 0
120470
+ }
120471
+ },
120472
+ "additionalProperties": false
120473
+ },
119006
120474
  "members": {
119007
120475
  "type": "array",
119008
120476
  "items": {
@@ -119175,7 +120643,6 @@ Schema for a single Integration
119175
120643
  "enum": [
119176
120644
  "azureEventHub",
119177
120645
  "googlePubSub",
119178
- "meridian",
119179
120646
  "mqtt",
119180
120647
  "particle",
119181
120648
  "sqs"
@@ -119366,32 +120833,6 @@ Schema for a single Integration
119366
120833
  "queueUrl"
119367
120834
  ]
119368
120835
  },
119369
- "meridianConfig": {
119370
- "type": "object",
119371
- "properties": {
119372
- "authenticationToken": {
119373
- "type": "string",
119374
- "minLength": 1,
119375
- "maxLength": 1024
119376
- },
119377
- "locationId": {
119378
- "type": "string",
119379
- "minLength": 1,
119380
- "maxLength": 1024
119381
- },
119382
- "assetUpdates": {
119383
- "type": "boolean"
119384
- },
119385
- "zoneUpdates": {
119386
- "type": "boolean"
119387
- }
119388
- },
119389
- "additionalProperties": false,
119390
- "required": [
119391
- "authenticationToken",
119392
- "locationId"
119393
- ]
119394
- },
119395
120836
  "status": {
119396
120837
  "lastKeepAlive": {
119397
120838
  "type": [
@@ -119491,7 +120932,6 @@ Schema for the body of an Integration modification request
119491
120932
  "enum": [
119492
120933
  "azureEventHub",
119493
120934
  "googlePubSub",
119494
- "meridian",
119495
120935
  "mqtt",
119496
120936
  "particle",
119497
120937
  "sqs"
@@ -119681,32 +121121,6 @@ Schema for the body of an Integration modification request
119681
121121
  "region",
119682
121122
  "queueUrl"
119683
121123
  ]
119684
- },
119685
- "meridianConfig": {
119686
- "type": "object",
119687
- "properties": {
119688
- "authenticationToken": {
119689
- "type": "string",
119690
- "minLength": 1,
119691
- "maxLength": 1024
119692
- },
119693
- "locationId": {
119694
- "type": "string",
119695
- "minLength": 1,
119696
- "maxLength": 1024
119697
- },
119698
- "assetUpdates": {
119699
- "type": "boolean"
119700
- },
119701
- "zoneUpdates": {
119702
- "type": "boolean"
119703
- }
119704
- },
119705
- "additionalProperties": false,
119706
- "required": [
119707
- "authenticationToken",
119708
- "locationId"
119709
- ]
119710
121124
  }
119711
121125
  },
119712
121126
  "additionalProperties": false
@@ -119745,7 +121159,6 @@ Schema for the body of an Integration creation request
119745
121159
  "enum": [
119746
121160
  "azureEventHub",
119747
121161
  "googlePubSub",
119748
- "meridian",
119749
121162
  "mqtt",
119750
121163
  "particle",
119751
121164
  "sqs"
@@ -119935,32 +121348,6 @@ Schema for the body of an Integration creation request
119935
121348
  "region",
119936
121349
  "queueUrl"
119937
121350
  ]
119938
- },
119939
- "meridianConfig": {
119940
- "type": "object",
119941
- "properties": {
119942
- "authenticationToken": {
119943
- "type": "string",
119944
- "minLength": 1,
119945
- "maxLength": 1024
119946
- },
119947
- "locationId": {
119948
- "type": "string",
119949
- "minLength": 1,
119950
- "maxLength": 1024
119951
- },
119952
- "assetUpdates": {
119953
- "type": "boolean"
119954
- },
119955
- "zoneUpdates": {
119956
- "type": "boolean"
119957
- }
119958
- },
119959
- "additionalProperties": false,
119960
- "required": [
119961
- "authenticationToken",
119962
- "locationId"
119963
- ]
119964
121351
  }
119965
121352
  },
119966
121353
  "additionalProperties": false,
@@ -120040,7 +121427,6 @@ Schema for a collection of Integrations
120040
121427
  "enum": [
120041
121428
  "azureEventHub",
120042
121429
  "googlePubSub",
120043
- "meridian",
120044
121430
  "mqtt",
120045
121431
  "particle",
120046
121432
  "sqs"
@@ -120231,32 +121617,6 @@ Schema for a collection of Integrations
120231
121617
  "queueUrl"
120232
121618
  ]
120233
121619
  },
120234
- "meridianConfig": {
120235
- "type": "object",
120236
- "properties": {
120237
- "authenticationToken": {
120238
- "type": "string",
120239
- "minLength": 1,
120240
- "maxLength": 1024
120241
- },
120242
- "locationId": {
120243
- "type": "string",
120244
- "minLength": 1,
120245
- "maxLength": 1024
120246
- },
120247
- "assetUpdates": {
120248
- "type": "boolean"
120249
- },
120250
- "zoneUpdates": {
120251
- "type": "boolean"
120252
- }
120253
- },
120254
- "additionalProperties": false,
120255
- "required": [
120256
- "authenticationToken",
120257
- "locationId"
120258
- ]
120259
- },
120260
121620
  "status": {
120261
121621
  "lastKeepAlive": {
120262
121622
  "type": [
@@ -120396,11 +121756,20 @@ Schema for the result of a job being queued
120396
121756
  "type": "object",
120397
121757
  "properties": {
120398
121758
  "jobQueued": {
120399
- "type": "boolean"
121759
+ "type": "boolean",
121760
+ "enum": [
121761
+ true
121762
+ ]
120400
121763
  },
120401
121764
  "jobId": {
120402
121765
  "type": "string",
120403
121766
  "maxLength": 21
121767
+ },
121768
+ "success": {
121769
+ "type": "boolean",
121770
+ "enum": [
121771
+ true
121772
+ ]
120404
121773
  }
120405
121774
  }
120406
121775
  }
@@ -120409,7 +121778,9 @@ Schema for the result of a job being queued
120409
121778
 
120410
121779
  ```json
120411
121780
  {
120412
- "jobQueued": true
121781
+ "jobQueued": true,
121782
+ "jobId": "clnHvJbyVkOWAZwYAwLP4",
121783
+ "success": true
120413
121784
  }
120414
121785
  ```
120415
121786
 
@@ -126245,91 +127616,120 @@ Schema for a single Organization
126245
127616
  "type": "object",
126246
127617
  "properties": {
126247
127618
  "apitoken": {
126248
- "type": "integer"
127619
+ "type": "integer",
127620
+ "minimum": 0
126249
127621
  },
126250
127622
  "application": {
126251
- "type": "integer"
127623
+ "type": "integer",
127624
+ "minimum": 0
126252
127625
  },
126253
127626
  "applicationkey": {
126254
- "type": "integer"
127627
+ "type": "integer",
127628
+ "minimum": 0
126255
127629
  },
126256
127630
  "dashboard": {
126257
- "type": "integer"
127631
+ "type": "integer",
127632
+ "minimum": 0
126258
127633
  },
126259
127634
  "datatable": {
126260
- "type": "integer"
127635
+ "type": "integer",
127636
+ "minimum": 0
126261
127637
  },
126262
127638
  "device": {
126263
- "type": "integer"
127639
+ "type": "integer",
127640
+ "minimum": 0
126264
127641
  },
126265
127642
  "devicerecipe": {
126266
- "type": "integer"
127643
+ "type": "integer",
127644
+ "minimum": 0
126267
127645
  },
126268
127646
  "experiencedomain": {
126269
- "type": "integer"
127647
+ "type": "integer",
127648
+ "minimum": 0
126270
127649
  },
126271
127650
  "experienceendpoint": {
126272
- "type": "integer"
127651
+ "type": "integer",
127652
+ "minimum": 0
126273
127653
  },
126274
127654
  "experiencegroup": {
126275
- "type": "integer"
127655
+ "type": "integer",
127656
+ "minimum": 0
126276
127657
  },
126277
127658
  "experienceslug": {
126278
- "type": "integer"
127659
+ "type": "integer",
127660
+ "minimum": 0
126279
127661
  },
126280
127662
  "experienceuser": {
126281
- "type": "integer"
127663
+ "type": "integer",
127664
+ "minimum": 0
126282
127665
  },
126283
127666
  "experienceversion": {
126284
- "type": "integer"
127667
+ "type": "integer",
127668
+ "minimum": 0
126285
127669
  },
126286
127670
  "experienceview": {
126287
- "type": "integer"
127671
+ "type": "integer",
127672
+ "minimum": 0
126288
127673
  },
126289
127674
  "file": {
126290
- "type": "integer"
127675
+ "type": "integer",
127676
+ "minimum": 0
126291
127677
  },
126292
127678
  "flow": {
126293
- "type": "integer"
127679
+ "type": "integer",
127680
+ "minimum": 0
126294
127681
  },
126295
127682
  "integration": {
126296
- "type": "integer"
127683
+ "type": "integer",
127684
+ "minimum": 0
126297
127685
  },
126298
127686
  "notebook": {
126299
- "type": "integer"
127687
+ "type": "integer",
127688
+ "minimum": 0
126300
127689
  },
126301
127690
  "resourcejob": {
126302
- "type": "integer"
127691
+ "type": "integer",
127692
+ "minimum": 0
126303
127693
  },
126304
127694
  "webhook": {
126305
- "type": "integer"
127695
+ "type": "integer",
127696
+ "minimum": 0
126306
127697
  },
126307
127698
  "dataTTL": {
126308
- "type": "integer"
127699
+ "type": "integer",
127700
+ "minimum": 86400
126309
127701
  },
126310
127702
  "member": {
126311
- "type": "integer"
127703
+ "type": "integer",
127704
+ "minimum": 0
126312
127705
  },
126313
127706
  "payload": {
126314
- "type": "integer"
127707
+ "type": "integer",
127708
+ "minimum": 0
126315
127709
  },
126316
127710
  "storage": {
126317
- "type": "integer"
127711
+ "type": "integer",
127712
+ "minimum": 0
126318
127713
  },
126319
127714
  "notebookMinutesPerRun": {
126320
- "type": "integer"
127715
+ "type": "integer",
127716
+ "minimum": 0
126321
127717
  },
126322
127718
  "notebookMinutesPerMonth": {
126323
- "type": "integer"
127719
+ "type": "integer",
127720
+ "minimum": 0
126324
127721
  },
126325
127722
  "notebookInParallel": {
126326
- "type": "integer"
127723
+ "type": "integer",
127724
+ "minimum": 0
126327
127725
  },
126328
127726
  "experienceFlowSlots": {
126329
- "type": "integer"
127727
+ "type": "integer",
127728
+ "minimum": 0
126330
127729
  },
126331
127730
  "applicationFlowSlots": {
126332
- "type": "integer"
127731
+ "type": "integer",
127732
+ "minimum": 0
126333
127733
  }
126334
127734
  },
126335
127735
  "additionalProperties": false
@@ -127752,91 +129152,120 @@ Schema for a collection of Organizations
127752
129152
  "type": "object",
127753
129153
  "properties": {
127754
129154
  "apitoken": {
127755
- "type": "integer"
129155
+ "type": "integer",
129156
+ "minimum": 0
127756
129157
  },
127757
129158
  "application": {
127758
- "type": "integer"
129159
+ "type": "integer",
129160
+ "minimum": 0
127759
129161
  },
127760
129162
  "applicationkey": {
127761
- "type": "integer"
129163
+ "type": "integer",
129164
+ "minimum": 0
127762
129165
  },
127763
129166
  "dashboard": {
127764
- "type": "integer"
129167
+ "type": "integer",
129168
+ "minimum": 0
127765
129169
  },
127766
129170
  "datatable": {
127767
- "type": "integer"
129171
+ "type": "integer",
129172
+ "minimum": 0
127768
129173
  },
127769
129174
  "device": {
127770
- "type": "integer"
129175
+ "type": "integer",
129176
+ "minimum": 0
127771
129177
  },
127772
129178
  "devicerecipe": {
127773
- "type": "integer"
129179
+ "type": "integer",
129180
+ "minimum": 0
127774
129181
  },
127775
129182
  "experiencedomain": {
127776
- "type": "integer"
129183
+ "type": "integer",
129184
+ "minimum": 0
127777
129185
  },
127778
129186
  "experienceendpoint": {
127779
- "type": "integer"
129187
+ "type": "integer",
129188
+ "minimum": 0
127780
129189
  },
127781
129190
  "experiencegroup": {
127782
- "type": "integer"
129191
+ "type": "integer",
129192
+ "minimum": 0
127783
129193
  },
127784
129194
  "experienceslug": {
127785
- "type": "integer"
129195
+ "type": "integer",
129196
+ "minimum": 0
127786
129197
  },
127787
129198
  "experienceuser": {
127788
- "type": "integer"
129199
+ "type": "integer",
129200
+ "minimum": 0
127789
129201
  },
127790
129202
  "experienceversion": {
127791
- "type": "integer"
129203
+ "type": "integer",
129204
+ "minimum": 0
127792
129205
  },
127793
129206
  "experienceview": {
127794
- "type": "integer"
129207
+ "type": "integer",
129208
+ "minimum": 0
127795
129209
  },
127796
129210
  "file": {
127797
- "type": "integer"
129211
+ "type": "integer",
129212
+ "minimum": 0
127798
129213
  },
127799
129214
  "flow": {
127800
- "type": "integer"
129215
+ "type": "integer",
129216
+ "minimum": 0
127801
129217
  },
127802
129218
  "integration": {
127803
- "type": "integer"
129219
+ "type": "integer",
129220
+ "minimum": 0
127804
129221
  },
127805
129222
  "notebook": {
127806
- "type": "integer"
129223
+ "type": "integer",
129224
+ "minimum": 0
127807
129225
  },
127808
129226
  "resourcejob": {
127809
- "type": "integer"
129227
+ "type": "integer",
129228
+ "minimum": 0
127810
129229
  },
127811
129230
  "webhook": {
127812
- "type": "integer"
129231
+ "type": "integer",
129232
+ "minimum": 0
127813
129233
  },
127814
129234
  "dataTTL": {
127815
- "type": "integer"
129235
+ "type": "integer",
129236
+ "minimum": 86400
127816
129237
  },
127817
129238
  "member": {
127818
- "type": "integer"
129239
+ "type": "integer",
129240
+ "minimum": 0
127819
129241
  },
127820
129242
  "payload": {
127821
- "type": "integer"
129243
+ "type": "integer",
129244
+ "minimum": 0
127822
129245
  },
127823
129246
  "storage": {
127824
- "type": "integer"
129247
+ "type": "integer",
129248
+ "minimum": 0
127825
129249
  },
127826
129250
  "notebookMinutesPerRun": {
127827
- "type": "integer"
129251
+ "type": "integer",
129252
+ "minimum": 0
127828
129253
  },
127829
129254
  "notebookMinutesPerMonth": {
127830
- "type": "integer"
129255
+ "type": "integer",
129256
+ "minimum": 0
127831
129257
  },
127832
129258
  "notebookInParallel": {
127833
- "type": "integer"
129259
+ "type": "integer",
129260
+ "minimum": 0
127834
129261
  },
127835
129262
  "experienceFlowSlots": {
127836
- "type": "integer"
129263
+ "type": "integer",
129264
+ "minimum": 0
127837
129265
  },
127838
129266
  "applicationFlowSlots": {
127839
- "type": "integer"
129267
+ "type": "integer",
129268
+ "minimum": 0
127840
129269
  }
127841
129270
  },
127842
129271
  "additionalProperties": false
@@ -129487,7 +130916,8 @@ Schema for a single resource job
129487
130916
  "type": "string",
129488
130917
  "enum": [
129489
130918
  "dataTableRow",
129490
- "device"
130919
+ "device",
130920
+ "experienceGroup"
129491
130921
  ]
129492
130922
  },
129493
130923
  "maxIterationConcurrency": {
@@ -129576,6 +131006,10 @@ Schema for a set of Resource Job execution logs
129576
131006
  "type": "string",
129577
131007
  "pattern": "^[A-Fa-f\\d]{24}$"
129578
131008
  },
131009
+ "accumulator": {
131010
+ "type": "string",
131011
+ "maxLength": 256
131012
+ },
129579
131013
  "status": {
129580
131014
  "type": "string",
129581
131015
  "enum": [
@@ -129595,7 +131029,8 @@ Schema for a set of Resource Job execution logs
129595
131029
  "type": "string",
129596
131030
  "enum": [
129597
131031
  "dataTableRow",
129598
- "device"
131032
+ "device",
131033
+ "experienceGroup"
129599
131034
  ]
129600
131035
  },
129601
131036
  "sourceType": {
@@ -129727,6 +131162,24 @@ Schema for a resource job execution configuration
129727
131162
  "templateContext": {
129728
131163
  "type": "string",
129729
131164
  "maxLength": 32767
131165
+ },
131166
+ "queryJson": {
131167
+ "type": "string",
131168
+ "maxLength": 8192
131169
+ },
131170
+ "dataTableId": {
131171
+ "oneOf": [
131172
+ {
131173
+ "type": "string",
131174
+ "pattern": "^[A-Fa-f\\d]{24}$"
131175
+ },
131176
+ {
131177
+ "type": "string",
131178
+ "minLength": 4,
131179
+ "maxLength": 255,
131180
+ "pattern": ".*{{.+}}.*"
131181
+ }
131182
+ ]
129730
131183
  }
129731
131184
  },
129732
131185
  "additionalProperties": false
@@ -129858,7 +131311,8 @@ Schema for a resource job creation
129858
131311
  "type": "string",
129859
131312
  "enum": [
129860
131313
  "dataTableRow",
129861
- "device"
131314
+ "device",
131315
+ "experienceGroup"
129862
131316
  ]
129863
131317
  },
129864
131318
  "maxIterationConcurrency": {
@@ -129963,7 +131417,8 @@ Schema for a collection of Resource Jobs
129963
131417
  "type": "string",
129964
131418
  "enum": [
129965
131419
  "dataTableRow",
129966
- "device"
131420
+ "device",
131421
+ "experienceGroup"
129967
131422
  ]
129968
131423
  },
129969
131424
  "maxIterationConcurrency": {
@@ -130719,41 +132174,6 @@ Schema for reporting a successful operation with a corresponding execution ID
130719
132174
 
130720
132175
  <br/>
130721
132176
 
130722
- ## Success With Job ID
130723
-
130724
- Schema for reporting a successful operation with a corresponding job id
130725
-
130726
- ### <a name="success-with-job-id-schema"></a> Schema
130727
-
130728
- ```json
130729
- {
130730
- "$schema": "http://json-schema.org/draft-07/schema#",
130731
- "type": "object",
130732
- "properties": {
130733
- "success": {
130734
- "type": "boolean",
130735
- "enum": [
130736
- true
130737
- ]
130738
- },
130739
- "jobId": {
130740
- "type": "string",
130741
- "maxLength": 21
130742
- }
130743
- }
130744
- }
130745
- ```
130746
- ### <a name="success-with-job-id-example"></a> Example
130747
-
130748
- ```json
130749
- {
130750
- "success": true,
130751
- "jobId": "89KDR0chj84e6qWC_aPFm"
130752
- }
130753
- ```
130754
-
130755
- <br/>
130756
-
130757
132177
  ## Tag Keys Response
130758
132178
 
130759
132179
  Schema for a list of tag keys
@@ -132934,6 +134354,10 @@ Schema for a single Webhook
132934
134354
  "minLength": 1,
132935
134355
  "maxLength": 255
132936
134356
  },
134357
+ "description": {
134358
+ "type": "string",
134359
+ "maxLength": 32767
134360
+ },
132937
134361
  "token": {
132938
134362
  "type": "string",
132939
134363
  "minLength": 1
@@ -133004,6 +134428,10 @@ Schema for the body of a Webhook modification request
133004
134428
  "minLength": 1,
133005
134429
  "maxLength": 255
133006
134430
  },
134431
+ "description": {
134432
+ "type": "string",
134433
+ "maxLength": 32767
134434
+ },
133007
134435
  "responseCode": {
133008
134436
  "type": "integer",
133009
134437
  "minimum": 100,
@@ -133065,6 +134493,10 @@ Schema for the body of a Webhook creation request
133065
134493
  "minLength": 1,
133066
134494
  "maxLength": 255
133067
134495
  },
134496
+ "description": {
134497
+ "type": "string",
134498
+ "maxLength": 32767
134499
+ },
133068
134500
  "responseCode": {
133069
134501
  "type": "integer",
133070
134502
  "minimum": 100,
@@ -133155,6 +134587,10 @@ Schema for a collection of Webhooks
133155
134587
  "minLength": 1,
133156
134588
  "maxLength": 255
133157
134589
  },
134590
+ "description": {
134591
+ "type": "string",
134592
+ "maxLength": 32767
134593
+ },
133158
134594
  "token": {
133159
134595
  "type": "string",
133160
134596
  "minLength": 1