losant_rest 1.23.3 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +2 -2
- data/.ruby-version +1 -1
- data/docs/_schemas.md +274 -8
- data/lib/platform_rest/client.rb +2 -2
- data/lib/platform_rest/version.rb +1 -1
- data/losant_rest.gemspec +6 -5
- data/schemas/advancedApplicationKeyQuery.json +9 -0
- data/schemas/advancedDeviceQuery.json +9 -0
- data/schemas/advancedEventQuery.json +9 -0
- data/schemas/advancedExperienceGroupQuery.json +9 -0
- data/schemas/advancedExperienceUserQuery.json +9 -0
- data/schemas/advancedInstanceOrgQuery.json +9 -0
- data/schemas/apiTokenPost.json +0 -1
- data/schemas/applicationCertificate.json +5 -0
- data/schemas/applicationCertificates.json +5 -0
- data/schemas/credential.json +43 -1
- data/schemas/credentialPatch.json +14 -0
- data/schemas/credentialPost.json +20 -1
- data/schemas/credentials.json +43 -1
- data/schemas/devicesDataExport.json +9 -0
- data/schemas/devicesDeleteOrRestorePost.json +9 -0
- data/schemas/devicesExportPayloadCountPost.json +9 -0
- data/schemas/devicesExportPost.json +9 -0
- data/schemas/devicesPatch.json +9 -0
- data/schemas/devicesRemoveDataPost.json +9 -0
- data/schemas/eventsExport.json +9 -0
- data/schemas/githubLogin.json +0 -1
- data/schemas/lastValueQuery.json +9 -0
- data/schemas/multiDeviceCommand.json +9 -0
- data/schemas/samlResponse.json +0 -1
- data/schemas/timeSeriesQuery.json +9 -0
- data/schemas/userCredentials.json +0 -1
- data/schemas/userPost.json +0 -1
- data/test/basic_test.rb +1 -1
- data/test/test_helper.rb +2 -1
- metadata +26 -15
data/lib/platform_rest/client.rb
CHANGED
|
@@ -27,7 +27,7 @@ module PlatformRest
|
|
|
27
27
|
#
|
|
28
28
|
# User API for accessing platform data
|
|
29
29
|
#
|
|
30
|
-
# Built For Version 1.29.
|
|
30
|
+
# Built For Version 1.29.4
|
|
31
31
|
class Client
|
|
32
32
|
attr_accessor :auth_token, :url
|
|
33
33
|
|
|
@@ -430,7 +430,7 @@ module PlatformRest
|
|
|
430
430
|
|
|
431
431
|
headers["Accept"] = "application/json"
|
|
432
432
|
headers["Content-Type"] = "application/json"
|
|
433
|
-
headers["Accept-Version"] = "^1.29.
|
|
433
|
+
headers["Accept-Version"] = "^1.29.4"
|
|
434
434
|
headers["Authorization"] = "Bearer #{self.auth_token}" if self.auth_token
|
|
435
435
|
path = self.url + options.fetch(:path, "")
|
|
436
436
|
|
data/losant_rest.gemspec
CHANGED
|
@@ -15,11 +15,12 @@ Gem::Specification.new do |gem|
|
|
|
15
15
|
gem.version = PlatformRest::VERSION
|
|
16
16
|
gem.licenses = ["MIT"]
|
|
17
17
|
|
|
18
|
-
gem.required_ruby_version = ">= 2
|
|
18
|
+
gem.required_ruby_version = ">= 3.2"
|
|
19
19
|
|
|
20
|
-
gem.add_dependency "httparty", "~> 0.
|
|
20
|
+
gem.add_dependency "httparty", "~> 0.24.2"
|
|
21
21
|
|
|
22
|
-
gem.add_development_dependency "minitest", "~>
|
|
23
|
-
gem.add_development_dependency "
|
|
24
|
-
gem.add_development_dependency "
|
|
22
|
+
gem.add_development_dependency "minitest", "~> 6.0.1"
|
|
23
|
+
gem.add_development_dependency "minitest-mock", "~> 5.27"
|
|
24
|
+
gem.add_development_dependency "rake", "~> 13"
|
|
25
|
+
gem.add_development_dependency "webmock", "~> 3.26.1"
|
|
25
26
|
end
|
|
@@ -546,6 +546,9 @@
|
|
|
546
546
|
"oneOf": [
|
|
547
547
|
{
|
|
548
548
|
"oneOf": [
|
|
549
|
+
{
|
|
550
|
+
"type": "null"
|
|
551
|
+
},
|
|
549
552
|
{
|
|
550
553
|
"type": "object",
|
|
551
554
|
"properties": {
|
|
@@ -701,6 +704,9 @@
|
|
|
701
704
|
"properties": {
|
|
702
705
|
"$eq": {
|
|
703
706
|
"oneOf": [
|
|
707
|
+
{
|
|
708
|
+
"type": "null"
|
|
709
|
+
},
|
|
704
710
|
{
|
|
705
711
|
"type": "object",
|
|
706
712
|
"properties": {
|
|
@@ -862,6 +868,9 @@
|
|
|
862
868
|
"properties": {
|
|
863
869
|
"$ne": {
|
|
864
870
|
"oneOf": [
|
|
871
|
+
{
|
|
872
|
+
"type": "null"
|
|
873
|
+
},
|
|
865
874
|
{
|
|
866
875
|
"type": "object",
|
|
867
876
|
"properties": {
|
|
@@ -1275,6 +1275,9 @@
|
|
|
1275
1275
|
"oneOf": [
|
|
1276
1276
|
{
|
|
1277
1277
|
"oneOf": [
|
|
1278
|
+
{
|
|
1279
|
+
"type": "null"
|
|
1280
|
+
},
|
|
1278
1281
|
{
|
|
1279
1282
|
"type": "object",
|
|
1280
1283
|
"properties": {
|
|
@@ -1430,6 +1433,9 @@
|
|
|
1430
1433
|
"properties": {
|
|
1431
1434
|
"$eq": {
|
|
1432
1435
|
"oneOf": [
|
|
1436
|
+
{
|
|
1437
|
+
"type": "null"
|
|
1438
|
+
},
|
|
1433
1439
|
{
|
|
1434
1440
|
"type": "object",
|
|
1435
1441
|
"properties": {
|
|
@@ -1591,6 +1597,9 @@
|
|
|
1591
1597
|
"properties": {
|
|
1592
1598
|
"$ne": {
|
|
1593
1599
|
"oneOf": [
|
|
1600
|
+
{
|
|
1601
|
+
"type": "null"
|
|
1602
|
+
},
|
|
1594
1603
|
{
|
|
1595
1604
|
"type": "object",
|
|
1596
1605
|
"properties": {
|
|
@@ -1164,6 +1164,9 @@
|
|
|
1164
1164
|
"oneOf": [
|
|
1165
1165
|
{
|
|
1166
1166
|
"oneOf": [
|
|
1167
|
+
{
|
|
1168
|
+
"type": "null"
|
|
1169
|
+
},
|
|
1167
1170
|
{
|
|
1168
1171
|
"type": "object",
|
|
1169
1172
|
"properties": {
|
|
@@ -1319,6 +1322,9 @@
|
|
|
1319
1322
|
"properties": {
|
|
1320
1323
|
"$eq": {
|
|
1321
1324
|
"oneOf": [
|
|
1325
|
+
{
|
|
1326
|
+
"type": "null"
|
|
1327
|
+
},
|
|
1322
1328
|
{
|
|
1323
1329
|
"type": "object",
|
|
1324
1330
|
"properties": {
|
|
@@ -1480,6 +1486,9 @@
|
|
|
1480
1486
|
"properties": {
|
|
1481
1487
|
"$ne": {
|
|
1482
1488
|
"oneOf": [
|
|
1489
|
+
{
|
|
1490
|
+
"type": "null"
|
|
1491
|
+
},
|
|
1483
1492
|
{
|
|
1484
1493
|
"type": "object",
|
|
1485
1494
|
"properties": {
|
|
@@ -651,6 +651,9 @@
|
|
|
651
651
|
"oneOf": [
|
|
652
652
|
{
|
|
653
653
|
"oneOf": [
|
|
654
|
+
{
|
|
655
|
+
"type": "null"
|
|
656
|
+
},
|
|
654
657
|
{
|
|
655
658
|
"type": "object",
|
|
656
659
|
"properties": {
|
|
@@ -806,6 +809,9 @@
|
|
|
806
809
|
"properties": {
|
|
807
810
|
"$eq": {
|
|
808
811
|
"oneOf": [
|
|
812
|
+
{
|
|
813
|
+
"type": "null"
|
|
814
|
+
},
|
|
809
815
|
{
|
|
810
816
|
"type": "object",
|
|
811
817
|
"properties": {
|
|
@@ -967,6 +973,9 @@
|
|
|
967
973
|
"properties": {
|
|
968
974
|
"$ne": {
|
|
969
975
|
"oneOf": [
|
|
976
|
+
{
|
|
977
|
+
"type": "null"
|
|
978
|
+
},
|
|
970
979
|
{
|
|
971
980
|
"type": "object",
|
|
972
981
|
"properties": {
|
|
@@ -853,6 +853,9 @@
|
|
|
853
853
|
"oneOf": [
|
|
854
854
|
{
|
|
855
855
|
"oneOf": [
|
|
856
|
+
{
|
|
857
|
+
"type": "null"
|
|
858
|
+
},
|
|
856
859
|
{
|
|
857
860
|
"type": "object",
|
|
858
861
|
"properties": {
|
|
@@ -1008,6 +1011,9 @@
|
|
|
1008
1011
|
"properties": {
|
|
1009
1012
|
"$eq": {
|
|
1010
1013
|
"oneOf": [
|
|
1014
|
+
{
|
|
1015
|
+
"type": "null"
|
|
1016
|
+
},
|
|
1011
1017
|
{
|
|
1012
1018
|
"type": "object",
|
|
1013
1019
|
"properties": {
|
|
@@ -1169,6 +1175,9 @@
|
|
|
1169
1175
|
"properties": {
|
|
1170
1176
|
"$ne": {
|
|
1171
1177
|
"oneOf": [
|
|
1178
|
+
{
|
|
1179
|
+
"type": "null"
|
|
1180
|
+
},
|
|
1172
1181
|
{
|
|
1173
1182
|
"type": "object",
|
|
1174
1183
|
"properties": {
|
|
@@ -956,6 +956,9 @@
|
|
|
956
956
|
"oneOf": [
|
|
957
957
|
{
|
|
958
958
|
"oneOf": [
|
|
959
|
+
{
|
|
960
|
+
"type": "null"
|
|
961
|
+
},
|
|
959
962
|
{
|
|
960
963
|
"type": "object",
|
|
961
964
|
"properties": {
|
|
@@ -1111,6 +1114,9 @@
|
|
|
1111
1114
|
"properties": {
|
|
1112
1115
|
"$eq": {
|
|
1113
1116
|
"oneOf": [
|
|
1117
|
+
{
|
|
1118
|
+
"type": "null"
|
|
1119
|
+
},
|
|
1114
1120
|
{
|
|
1115
1121
|
"type": "object",
|
|
1116
1122
|
"properties": {
|
|
@@ -1272,6 +1278,9 @@
|
|
|
1272
1278
|
"properties": {
|
|
1273
1279
|
"$ne": {
|
|
1274
1280
|
"oneOf": [
|
|
1281
|
+
{
|
|
1282
|
+
"type": "null"
|
|
1283
|
+
},
|
|
1275
1284
|
{
|
|
1276
1285
|
"type": "object",
|
|
1277
1286
|
"properties": {
|
data/schemas/apiTokenPost.json
CHANGED
data/schemas/credential.json
CHANGED
|
@@ -71,7 +71,8 @@
|
|
|
71
71
|
"mailgun",
|
|
72
72
|
"snowflake",
|
|
73
73
|
"git",
|
|
74
|
-
"datadog"
|
|
74
|
+
"datadog",
|
|
75
|
+
"certificateKeyPair"
|
|
75
76
|
]
|
|
76
77
|
},
|
|
77
78
|
"awsConfig": {
|
|
@@ -346,6 +347,47 @@
|
|
|
346
347
|
}
|
|
347
348
|
},
|
|
348
349
|
"additionalProperties": false
|
|
350
|
+
},
|
|
351
|
+
"certificateKeyPairConfig": {
|
|
352
|
+
"type": "object",
|
|
353
|
+
"properties": {
|
|
354
|
+
"certificate": {
|
|
355
|
+
"type": "string",
|
|
356
|
+
"maxLength": 8192
|
|
357
|
+
},
|
|
358
|
+
"info": {
|
|
359
|
+
"type": "object",
|
|
360
|
+
"properties": {
|
|
361
|
+
"serialNumber": {
|
|
362
|
+
"type": "string",
|
|
363
|
+
"minLength": 1,
|
|
364
|
+
"maxLength": 1024
|
|
365
|
+
},
|
|
366
|
+
"fingerprint": {
|
|
367
|
+
"type": "string",
|
|
368
|
+
"minLength": 1,
|
|
369
|
+
"maxLength": 1024
|
|
370
|
+
},
|
|
371
|
+
"commonName": {
|
|
372
|
+
"type": "string",
|
|
373
|
+
"maxLength": 1024
|
|
374
|
+
},
|
|
375
|
+
"issuerName": {
|
|
376
|
+
"type": "string",
|
|
377
|
+
"maxLength": 1024
|
|
378
|
+
},
|
|
379
|
+
"notValidBefore": {
|
|
380
|
+
"type": "string",
|
|
381
|
+
"format": "date-time"
|
|
382
|
+
},
|
|
383
|
+
"notValidAfter": {
|
|
384
|
+
"type": "string",
|
|
385
|
+
"format": "date-time"
|
|
386
|
+
}
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
},
|
|
390
|
+
"additionalProperties": false
|
|
349
391
|
}
|
|
350
392
|
},
|
|
351
393
|
"additionalProperties": false,
|
|
@@ -324,6 +324,20 @@
|
|
|
324
324
|
}
|
|
325
325
|
},
|
|
326
326
|
"additionalProperties": false
|
|
327
|
+
},
|
|
328
|
+
"certificateKeyPairConfig": {
|
|
329
|
+
"type": "object",
|
|
330
|
+
"properties": {
|
|
331
|
+
"certificate": {
|
|
332
|
+
"type": "string",
|
|
333
|
+
"maxLength": 8192
|
|
334
|
+
},
|
|
335
|
+
"privateKey": {
|
|
336
|
+
"type": "string",
|
|
337
|
+
"maxLength": 8196
|
|
338
|
+
}
|
|
339
|
+
},
|
|
340
|
+
"additionalProperties": false
|
|
327
341
|
}
|
|
328
342
|
},
|
|
329
343
|
"additionalProperties": false
|
data/schemas/credentialPost.json
CHANGED
|
@@ -31,7 +31,8 @@
|
|
|
31
31
|
"mailgun",
|
|
32
32
|
"snowflake",
|
|
33
33
|
"git",
|
|
34
|
-
"datadog"
|
|
34
|
+
"datadog",
|
|
35
|
+
"certificateKeyPair"
|
|
35
36
|
]
|
|
36
37
|
},
|
|
37
38
|
"awsConfig": {
|
|
@@ -425,6 +426,24 @@
|
|
|
425
426
|
"required": [
|
|
426
427
|
"secretValue"
|
|
427
428
|
]
|
|
429
|
+
},
|
|
430
|
+
"certificateKeyPairConfig": {
|
|
431
|
+
"type": "object",
|
|
432
|
+
"properties": {
|
|
433
|
+
"certificate": {
|
|
434
|
+
"type": "string",
|
|
435
|
+
"maxLength": 8192
|
|
436
|
+
},
|
|
437
|
+
"privateKey": {
|
|
438
|
+
"type": "string",
|
|
439
|
+
"maxLength": 8196
|
|
440
|
+
}
|
|
441
|
+
},
|
|
442
|
+
"additionalProperties": false,
|
|
443
|
+
"required": [
|
|
444
|
+
"certificate",
|
|
445
|
+
"privateKey"
|
|
446
|
+
]
|
|
428
447
|
}
|
|
429
448
|
},
|
|
430
449
|
"additionalProperties": false,
|
data/schemas/credentials.json
CHANGED
|
@@ -78,7 +78,8 @@
|
|
|
78
78
|
"mailgun",
|
|
79
79
|
"snowflake",
|
|
80
80
|
"git",
|
|
81
|
-
"datadog"
|
|
81
|
+
"datadog",
|
|
82
|
+
"certificateKeyPair"
|
|
82
83
|
]
|
|
83
84
|
},
|
|
84
85
|
"awsConfig": {
|
|
@@ -353,6 +354,47 @@
|
|
|
353
354
|
}
|
|
354
355
|
},
|
|
355
356
|
"additionalProperties": false
|
|
357
|
+
},
|
|
358
|
+
"certificateKeyPairConfig": {
|
|
359
|
+
"type": "object",
|
|
360
|
+
"properties": {
|
|
361
|
+
"certificate": {
|
|
362
|
+
"type": "string",
|
|
363
|
+
"maxLength": 8192
|
|
364
|
+
},
|
|
365
|
+
"info": {
|
|
366
|
+
"type": "object",
|
|
367
|
+
"properties": {
|
|
368
|
+
"serialNumber": {
|
|
369
|
+
"type": "string",
|
|
370
|
+
"minLength": 1,
|
|
371
|
+
"maxLength": 1024
|
|
372
|
+
},
|
|
373
|
+
"fingerprint": {
|
|
374
|
+
"type": "string",
|
|
375
|
+
"minLength": 1,
|
|
376
|
+
"maxLength": 1024
|
|
377
|
+
},
|
|
378
|
+
"commonName": {
|
|
379
|
+
"type": "string",
|
|
380
|
+
"maxLength": 1024
|
|
381
|
+
},
|
|
382
|
+
"issuerName": {
|
|
383
|
+
"type": "string",
|
|
384
|
+
"maxLength": 1024
|
|
385
|
+
},
|
|
386
|
+
"notValidBefore": {
|
|
387
|
+
"type": "string",
|
|
388
|
+
"format": "date-time"
|
|
389
|
+
},
|
|
390
|
+
"notValidAfter": {
|
|
391
|
+
"type": "string",
|
|
392
|
+
"format": "date-time"
|
|
393
|
+
}
|
|
394
|
+
}
|
|
395
|
+
}
|
|
396
|
+
},
|
|
397
|
+
"additionalProperties": false
|
|
356
398
|
}
|
|
357
399
|
},
|
|
358
400
|
"additionalProperties": false,
|
|
@@ -1317,6 +1317,9 @@
|
|
|
1317
1317
|
"oneOf": [
|
|
1318
1318
|
{
|
|
1319
1319
|
"oneOf": [
|
|
1320
|
+
{
|
|
1321
|
+
"type": "null"
|
|
1322
|
+
},
|
|
1320
1323
|
{
|
|
1321
1324
|
"type": "object",
|
|
1322
1325
|
"properties": {
|
|
@@ -1472,6 +1475,9 @@
|
|
|
1472
1475
|
"properties": {
|
|
1473
1476
|
"$eq": {
|
|
1474
1477
|
"oneOf": [
|
|
1478
|
+
{
|
|
1479
|
+
"type": "null"
|
|
1480
|
+
},
|
|
1475
1481
|
{
|
|
1476
1482
|
"type": "object",
|
|
1477
1483
|
"properties": {
|
|
@@ -1633,6 +1639,9 @@
|
|
|
1633
1639
|
"properties": {
|
|
1634
1640
|
"$ne": {
|
|
1635
1641
|
"oneOf": [
|
|
1642
|
+
{
|
|
1643
|
+
"type": "null"
|
|
1644
|
+
},
|
|
1636
1645
|
{
|
|
1637
1646
|
"type": "object",
|
|
1638
1647
|
"properties": {
|
|
@@ -1285,6 +1285,9 @@
|
|
|
1285
1285
|
"oneOf": [
|
|
1286
1286
|
{
|
|
1287
1287
|
"oneOf": [
|
|
1288
|
+
{
|
|
1289
|
+
"type": "null"
|
|
1290
|
+
},
|
|
1288
1291
|
{
|
|
1289
1292
|
"type": "object",
|
|
1290
1293
|
"properties": {
|
|
@@ -1440,6 +1443,9 @@
|
|
|
1440
1443
|
"properties": {
|
|
1441
1444
|
"$eq": {
|
|
1442
1445
|
"oneOf": [
|
|
1446
|
+
{
|
|
1447
|
+
"type": "null"
|
|
1448
|
+
},
|
|
1443
1449
|
{
|
|
1444
1450
|
"type": "object",
|
|
1445
1451
|
"properties": {
|
|
@@ -1601,6 +1607,9 @@
|
|
|
1601
1607
|
"properties": {
|
|
1602
1608
|
"$ne": {
|
|
1603
1609
|
"oneOf": [
|
|
1610
|
+
{
|
|
1611
|
+
"type": "null"
|
|
1612
|
+
},
|
|
1604
1613
|
{
|
|
1605
1614
|
"type": "object",
|
|
1606
1615
|
"properties": {
|
|
@@ -1290,6 +1290,9 @@
|
|
|
1290
1290
|
"oneOf": [
|
|
1291
1291
|
{
|
|
1292
1292
|
"oneOf": [
|
|
1293
|
+
{
|
|
1294
|
+
"type": "null"
|
|
1295
|
+
},
|
|
1293
1296
|
{
|
|
1294
1297
|
"type": "object",
|
|
1295
1298
|
"properties": {
|
|
@@ -1445,6 +1448,9 @@
|
|
|
1445
1448
|
"properties": {
|
|
1446
1449
|
"$eq": {
|
|
1447
1450
|
"oneOf": [
|
|
1451
|
+
{
|
|
1452
|
+
"type": "null"
|
|
1453
|
+
},
|
|
1448
1454
|
{
|
|
1449
1455
|
"type": "object",
|
|
1450
1456
|
"properties": {
|
|
@@ -1606,6 +1612,9 @@
|
|
|
1606
1612
|
"properties": {
|
|
1607
1613
|
"$ne": {
|
|
1608
1614
|
"oneOf": [
|
|
1615
|
+
{
|
|
1616
|
+
"type": "null"
|
|
1617
|
+
},
|
|
1609
1618
|
{
|
|
1610
1619
|
"type": "object",
|
|
1611
1620
|
"properties": {
|
|
@@ -1290,6 +1290,9 @@
|
|
|
1290
1290
|
"oneOf": [
|
|
1291
1291
|
{
|
|
1292
1292
|
"oneOf": [
|
|
1293
|
+
{
|
|
1294
|
+
"type": "null"
|
|
1295
|
+
},
|
|
1293
1296
|
{
|
|
1294
1297
|
"type": "object",
|
|
1295
1298
|
"properties": {
|
|
@@ -1445,6 +1448,9 @@
|
|
|
1445
1448
|
"properties": {
|
|
1446
1449
|
"$eq": {
|
|
1447
1450
|
"oneOf": [
|
|
1451
|
+
{
|
|
1452
|
+
"type": "null"
|
|
1453
|
+
},
|
|
1448
1454
|
{
|
|
1449
1455
|
"type": "object",
|
|
1450
1456
|
"properties": {
|
|
@@ -1606,6 +1612,9 @@
|
|
|
1606
1612
|
"properties": {
|
|
1607
1613
|
"$ne": {
|
|
1608
1614
|
"oneOf": [
|
|
1615
|
+
{
|
|
1616
|
+
"type": "null"
|
|
1617
|
+
},
|
|
1609
1618
|
{
|
|
1610
1619
|
"type": "object",
|
|
1611
1620
|
"properties": {
|
data/schemas/devicesPatch.json
CHANGED
|
@@ -1491,6 +1491,9 @@
|
|
|
1491
1491
|
"oneOf": [
|
|
1492
1492
|
{
|
|
1493
1493
|
"oneOf": [
|
|
1494
|
+
{
|
|
1495
|
+
"type": "null"
|
|
1496
|
+
},
|
|
1494
1497
|
{
|
|
1495
1498
|
"type": "object",
|
|
1496
1499
|
"properties": {
|
|
@@ -1646,6 +1649,9 @@
|
|
|
1646
1649
|
"properties": {
|
|
1647
1650
|
"$eq": {
|
|
1648
1651
|
"oneOf": [
|
|
1652
|
+
{
|
|
1653
|
+
"type": "null"
|
|
1654
|
+
},
|
|
1649
1655
|
{
|
|
1650
1656
|
"type": "object",
|
|
1651
1657
|
"properties": {
|
|
@@ -1807,6 +1813,9 @@
|
|
|
1807
1813
|
"properties": {
|
|
1808
1814
|
"$ne": {
|
|
1809
1815
|
"oneOf": [
|
|
1816
|
+
{
|
|
1817
|
+
"type": "null"
|
|
1818
|
+
},
|
|
1810
1819
|
{
|
|
1811
1820
|
"type": "object",
|
|
1812
1821
|
"properties": {
|
|
@@ -1280,6 +1280,9 @@
|
|
|
1280
1280
|
"oneOf": [
|
|
1281
1281
|
{
|
|
1282
1282
|
"oneOf": [
|
|
1283
|
+
{
|
|
1284
|
+
"type": "null"
|
|
1285
|
+
},
|
|
1283
1286
|
{
|
|
1284
1287
|
"type": "object",
|
|
1285
1288
|
"properties": {
|
|
@@ -1435,6 +1438,9 @@
|
|
|
1435
1438
|
"properties": {
|
|
1436
1439
|
"$eq": {
|
|
1437
1440
|
"oneOf": [
|
|
1441
|
+
{
|
|
1442
|
+
"type": "null"
|
|
1443
|
+
},
|
|
1438
1444
|
{
|
|
1439
1445
|
"type": "object",
|
|
1440
1446
|
"properties": {
|
|
@@ -1596,6 +1602,9 @@
|
|
|
1596
1602
|
"properties": {
|
|
1597
1603
|
"$ne": {
|
|
1598
1604
|
"oneOf": [
|
|
1605
|
+
{
|
|
1606
|
+
"type": "null"
|
|
1607
|
+
},
|
|
1599
1608
|
{
|
|
1600
1609
|
"type": "object",
|
|
1601
1610
|
"properties": {
|
data/schemas/eventsExport.json
CHANGED
|
@@ -1179,6 +1179,9 @@
|
|
|
1179
1179
|
"oneOf": [
|
|
1180
1180
|
{
|
|
1181
1181
|
"oneOf": [
|
|
1182
|
+
{
|
|
1183
|
+
"type": "null"
|
|
1184
|
+
},
|
|
1182
1185
|
{
|
|
1183
1186
|
"type": "object",
|
|
1184
1187
|
"properties": {
|
|
@@ -1334,6 +1337,9 @@
|
|
|
1334
1337
|
"properties": {
|
|
1335
1338
|
"$eq": {
|
|
1336
1339
|
"oneOf": [
|
|
1340
|
+
{
|
|
1341
|
+
"type": "null"
|
|
1342
|
+
},
|
|
1337
1343
|
{
|
|
1338
1344
|
"type": "object",
|
|
1339
1345
|
"properties": {
|
|
@@ -1495,6 +1501,9 @@
|
|
|
1495
1501
|
"properties": {
|
|
1496
1502
|
"$ne": {
|
|
1497
1503
|
"oneOf": [
|
|
1504
|
+
{
|
|
1505
|
+
"type": "null"
|
|
1506
|
+
},
|
|
1498
1507
|
{
|
|
1499
1508
|
"type": "object",
|
|
1500
1509
|
"properties": {
|