losant_rest 1.17.3 → 1.17.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/docs/_schemas.md +2290 -696
- data/docs/applicationDashboard.md +1 -1
- data/docs/flow.md +1 -1
- data/lib/losant_rest/application_dashboard.rb +1 -1
- data/lib/losant_rest/client.rb +2 -2
- data/lib/losant_rest/flow.rb +1 -1
- data/lib/losant_rest/version.rb +1 -1
- data/schemas/dashboard.json +24 -0
- data/schemas/dashboards.json +24 -0
- data/schemas/edgeDeployment.json +25 -0
- data/schemas/edgeDeployments.json +25 -0
- data/schemas/experienceLinkedResources.json +264 -0
- data/schemas/flow.json +88 -0
- data/schemas/flowPatch.json +88 -0
- data/schemas/flowPost.json +88 -0
- data/schemas/flowVersion.json +176 -0
- data/schemas/flowVersionPost.json +88 -0
- data/schemas/flowVersions.json +176 -0
- data/schemas/flows.json +88 -0
- data/schemas/flowsImportPost.json +176 -0
- data/schemas/flowsImportResult.json +264 -0
- data/schemas/integration.json +10 -10
- data/schemas/integrationPatch.json +10 -10
- data/schemas/integrationPost.json +10 -10
- data/schemas/integrations.json +10 -10
- metadata +2 -2
data/schemas/flowPost.json
CHANGED
@@ -1248,6 +1248,94 @@
|
|
1248
1248
|
],
|
1249
1249
|
"additionalProperties": false
|
1250
1250
|
},
|
1251
|
+
{
|
1252
|
+
"type": "object",
|
1253
|
+
"properties": {
|
1254
|
+
"key": {
|
1255
|
+
"type": "string",
|
1256
|
+
"maxLength": 1024
|
1257
|
+
},
|
1258
|
+
"type": {
|
1259
|
+
"type": "string",
|
1260
|
+
"enum": [
|
1261
|
+
"onSync"
|
1262
|
+
]
|
1263
|
+
},
|
1264
|
+
"config": {
|
1265
|
+
"type": "object",
|
1266
|
+
"properties": {
|
1267
|
+
"syncTypes": {
|
1268
|
+
"type": "array",
|
1269
|
+
"maxItems": 3,
|
1270
|
+
"minItems": 1,
|
1271
|
+
"items": {
|
1272
|
+
"type": "string",
|
1273
|
+
"enum": [
|
1274
|
+
"application",
|
1275
|
+
"device",
|
1276
|
+
"peripheral"
|
1277
|
+
]
|
1278
|
+
}
|
1279
|
+
}
|
1280
|
+
},
|
1281
|
+
"additionalProperties": false
|
1282
|
+
},
|
1283
|
+
"meta": {
|
1284
|
+
"type": "object",
|
1285
|
+
"properties": {
|
1286
|
+
"category": {
|
1287
|
+
"type": "string",
|
1288
|
+
"enum": [
|
1289
|
+
"trigger"
|
1290
|
+
]
|
1291
|
+
},
|
1292
|
+
"name": {
|
1293
|
+
"type": "string",
|
1294
|
+
"enum": [
|
1295
|
+
"onSync"
|
1296
|
+
]
|
1297
|
+
},
|
1298
|
+
"label": {
|
1299
|
+
"type": "string",
|
1300
|
+
"minLength": 1,
|
1301
|
+
"maxLength": 255
|
1302
|
+
},
|
1303
|
+
"x": {
|
1304
|
+
"type": "number"
|
1305
|
+
},
|
1306
|
+
"y": {
|
1307
|
+
"type": "number"
|
1308
|
+
},
|
1309
|
+
"uiId": {
|
1310
|
+
"type": "string",
|
1311
|
+
"maxLength": 48
|
1312
|
+
},
|
1313
|
+
"description": {
|
1314
|
+
"type": "string",
|
1315
|
+
"maxLength": 32767
|
1316
|
+
}
|
1317
|
+
},
|
1318
|
+
"additionalProperties": false
|
1319
|
+
},
|
1320
|
+
"outputIds": {
|
1321
|
+
"type": "array",
|
1322
|
+
"items": {
|
1323
|
+
"type": "array",
|
1324
|
+
"items": {
|
1325
|
+
"type": "string",
|
1326
|
+
"maxLength": 48,
|
1327
|
+
"minLength": 1
|
1328
|
+
},
|
1329
|
+
"maxItems": 100
|
1330
|
+
},
|
1331
|
+
"maxItems": 100
|
1332
|
+
}
|
1333
|
+
},
|
1334
|
+
"required": [
|
1335
|
+
"type"
|
1336
|
+
],
|
1337
|
+
"additionalProperties": false
|
1338
|
+
},
|
1251
1339
|
{
|
1252
1340
|
"type": "object",
|
1253
1341
|
"properties": {
|
data/schemas/flowVersion.json
CHANGED
@@ -1277,6 +1277,94 @@
|
|
1277
1277
|
],
|
1278
1278
|
"additionalProperties": false
|
1279
1279
|
},
|
1280
|
+
{
|
1281
|
+
"type": "object",
|
1282
|
+
"properties": {
|
1283
|
+
"key": {
|
1284
|
+
"type": "string",
|
1285
|
+
"maxLength": 1024
|
1286
|
+
},
|
1287
|
+
"type": {
|
1288
|
+
"type": "string",
|
1289
|
+
"enum": [
|
1290
|
+
"onSync"
|
1291
|
+
]
|
1292
|
+
},
|
1293
|
+
"config": {
|
1294
|
+
"type": "object",
|
1295
|
+
"properties": {
|
1296
|
+
"syncTypes": {
|
1297
|
+
"type": "array",
|
1298
|
+
"maxItems": 3,
|
1299
|
+
"minItems": 1,
|
1300
|
+
"items": {
|
1301
|
+
"type": "string",
|
1302
|
+
"enum": [
|
1303
|
+
"application",
|
1304
|
+
"device",
|
1305
|
+
"peripheral"
|
1306
|
+
]
|
1307
|
+
}
|
1308
|
+
}
|
1309
|
+
},
|
1310
|
+
"additionalProperties": false
|
1311
|
+
},
|
1312
|
+
"meta": {
|
1313
|
+
"type": "object",
|
1314
|
+
"properties": {
|
1315
|
+
"category": {
|
1316
|
+
"type": "string",
|
1317
|
+
"enum": [
|
1318
|
+
"trigger"
|
1319
|
+
]
|
1320
|
+
},
|
1321
|
+
"name": {
|
1322
|
+
"type": "string",
|
1323
|
+
"enum": [
|
1324
|
+
"onSync"
|
1325
|
+
]
|
1326
|
+
},
|
1327
|
+
"label": {
|
1328
|
+
"type": "string",
|
1329
|
+
"minLength": 1,
|
1330
|
+
"maxLength": 255
|
1331
|
+
},
|
1332
|
+
"x": {
|
1333
|
+
"type": "number"
|
1334
|
+
},
|
1335
|
+
"y": {
|
1336
|
+
"type": "number"
|
1337
|
+
},
|
1338
|
+
"uiId": {
|
1339
|
+
"type": "string",
|
1340
|
+
"maxLength": 48
|
1341
|
+
},
|
1342
|
+
"description": {
|
1343
|
+
"type": "string",
|
1344
|
+
"maxLength": 32767
|
1345
|
+
}
|
1346
|
+
},
|
1347
|
+
"additionalProperties": false
|
1348
|
+
},
|
1349
|
+
"outputIds": {
|
1350
|
+
"type": "array",
|
1351
|
+
"items": {
|
1352
|
+
"type": "array",
|
1353
|
+
"items": {
|
1354
|
+
"type": "string",
|
1355
|
+
"maxLength": 48,
|
1356
|
+
"minLength": 1
|
1357
|
+
},
|
1358
|
+
"maxItems": 100
|
1359
|
+
},
|
1360
|
+
"maxItems": 100
|
1361
|
+
}
|
1362
|
+
},
|
1363
|
+
"required": [
|
1364
|
+
"type"
|
1365
|
+
],
|
1366
|
+
"additionalProperties": false
|
1367
|
+
},
|
1280
1368
|
{
|
1281
1369
|
"type": "object",
|
1282
1370
|
"properties": {
|
@@ -3867,6 +3955,94 @@
|
|
3867
3955
|
],
|
3868
3956
|
"additionalProperties": false
|
3869
3957
|
},
|
3958
|
+
{
|
3959
|
+
"type": "object",
|
3960
|
+
"properties": {
|
3961
|
+
"key": {
|
3962
|
+
"type": "string",
|
3963
|
+
"maxLength": 1024
|
3964
|
+
},
|
3965
|
+
"type": {
|
3966
|
+
"type": "string",
|
3967
|
+
"enum": [
|
3968
|
+
"onSync"
|
3969
|
+
]
|
3970
|
+
},
|
3971
|
+
"config": {
|
3972
|
+
"type": "object",
|
3973
|
+
"properties": {
|
3974
|
+
"syncTypes": {
|
3975
|
+
"type": "array",
|
3976
|
+
"maxItems": 3,
|
3977
|
+
"minItems": 1,
|
3978
|
+
"items": {
|
3979
|
+
"type": "string",
|
3980
|
+
"enum": [
|
3981
|
+
"application",
|
3982
|
+
"device",
|
3983
|
+
"peripheral"
|
3984
|
+
]
|
3985
|
+
}
|
3986
|
+
}
|
3987
|
+
},
|
3988
|
+
"additionalProperties": false
|
3989
|
+
},
|
3990
|
+
"meta": {
|
3991
|
+
"type": "object",
|
3992
|
+
"properties": {
|
3993
|
+
"category": {
|
3994
|
+
"type": "string",
|
3995
|
+
"enum": [
|
3996
|
+
"trigger"
|
3997
|
+
]
|
3998
|
+
},
|
3999
|
+
"name": {
|
4000
|
+
"type": "string",
|
4001
|
+
"enum": [
|
4002
|
+
"onSync"
|
4003
|
+
]
|
4004
|
+
},
|
4005
|
+
"label": {
|
4006
|
+
"type": "string",
|
4007
|
+
"minLength": 1,
|
4008
|
+
"maxLength": 255
|
4009
|
+
},
|
4010
|
+
"x": {
|
4011
|
+
"type": "number"
|
4012
|
+
},
|
4013
|
+
"y": {
|
4014
|
+
"type": "number"
|
4015
|
+
},
|
4016
|
+
"uiId": {
|
4017
|
+
"type": "string",
|
4018
|
+
"maxLength": 48
|
4019
|
+
},
|
4020
|
+
"description": {
|
4021
|
+
"type": "string",
|
4022
|
+
"maxLength": 32767
|
4023
|
+
}
|
4024
|
+
},
|
4025
|
+
"additionalProperties": false
|
4026
|
+
},
|
4027
|
+
"outputIds": {
|
4028
|
+
"type": "array",
|
4029
|
+
"items": {
|
4030
|
+
"type": "array",
|
4031
|
+
"items": {
|
4032
|
+
"type": "string",
|
4033
|
+
"maxLength": 48,
|
4034
|
+
"minLength": 1
|
4035
|
+
},
|
4036
|
+
"maxItems": 100
|
4037
|
+
},
|
4038
|
+
"maxItems": 100
|
4039
|
+
}
|
4040
|
+
},
|
4041
|
+
"required": [
|
4042
|
+
"type"
|
4043
|
+
],
|
4044
|
+
"additionalProperties": false
|
4045
|
+
},
|
3870
4046
|
{
|
3871
4047
|
"type": "object",
|
3872
4048
|
"properties": {
|
@@ -1217,6 +1217,94 @@
|
|
1217
1217
|
],
|
1218
1218
|
"additionalProperties": false
|
1219
1219
|
},
|
1220
|
+
{
|
1221
|
+
"type": "object",
|
1222
|
+
"properties": {
|
1223
|
+
"key": {
|
1224
|
+
"type": "string",
|
1225
|
+
"maxLength": 1024
|
1226
|
+
},
|
1227
|
+
"type": {
|
1228
|
+
"type": "string",
|
1229
|
+
"enum": [
|
1230
|
+
"onSync"
|
1231
|
+
]
|
1232
|
+
},
|
1233
|
+
"config": {
|
1234
|
+
"type": "object",
|
1235
|
+
"properties": {
|
1236
|
+
"syncTypes": {
|
1237
|
+
"type": "array",
|
1238
|
+
"maxItems": 3,
|
1239
|
+
"minItems": 1,
|
1240
|
+
"items": {
|
1241
|
+
"type": "string",
|
1242
|
+
"enum": [
|
1243
|
+
"application",
|
1244
|
+
"device",
|
1245
|
+
"peripheral"
|
1246
|
+
]
|
1247
|
+
}
|
1248
|
+
}
|
1249
|
+
},
|
1250
|
+
"additionalProperties": false
|
1251
|
+
},
|
1252
|
+
"meta": {
|
1253
|
+
"type": "object",
|
1254
|
+
"properties": {
|
1255
|
+
"category": {
|
1256
|
+
"type": "string",
|
1257
|
+
"enum": [
|
1258
|
+
"trigger"
|
1259
|
+
]
|
1260
|
+
},
|
1261
|
+
"name": {
|
1262
|
+
"type": "string",
|
1263
|
+
"enum": [
|
1264
|
+
"onSync"
|
1265
|
+
]
|
1266
|
+
},
|
1267
|
+
"label": {
|
1268
|
+
"type": "string",
|
1269
|
+
"minLength": 1,
|
1270
|
+
"maxLength": 255
|
1271
|
+
},
|
1272
|
+
"x": {
|
1273
|
+
"type": "number"
|
1274
|
+
},
|
1275
|
+
"y": {
|
1276
|
+
"type": "number"
|
1277
|
+
},
|
1278
|
+
"uiId": {
|
1279
|
+
"type": "string",
|
1280
|
+
"maxLength": 48
|
1281
|
+
},
|
1282
|
+
"description": {
|
1283
|
+
"type": "string",
|
1284
|
+
"maxLength": 32767
|
1285
|
+
}
|
1286
|
+
},
|
1287
|
+
"additionalProperties": false
|
1288
|
+
},
|
1289
|
+
"outputIds": {
|
1290
|
+
"type": "array",
|
1291
|
+
"items": {
|
1292
|
+
"type": "array",
|
1293
|
+
"items": {
|
1294
|
+
"type": "string",
|
1295
|
+
"maxLength": 48,
|
1296
|
+
"minLength": 1
|
1297
|
+
},
|
1298
|
+
"maxItems": 100
|
1299
|
+
},
|
1300
|
+
"maxItems": 100
|
1301
|
+
}
|
1302
|
+
},
|
1303
|
+
"required": [
|
1304
|
+
"type"
|
1305
|
+
],
|
1306
|
+
"additionalProperties": false
|
1307
|
+
},
|
1220
1308
|
{
|
1221
1309
|
"type": "object",
|
1222
1310
|
"properties": {
|
data/schemas/flowVersions.json
CHANGED
@@ -1284,6 +1284,94 @@
|
|
1284
1284
|
],
|
1285
1285
|
"additionalProperties": false
|
1286
1286
|
},
|
1287
|
+
{
|
1288
|
+
"type": "object",
|
1289
|
+
"properties": {
|
1290
|
+
"key": {
|
1291
|
+
"type": "string",
|
1292
|
+
"maxLength": 1024
|
1293
|
+
},
|
1294
|
+
"type": {
|
1295
|
+
"type": "string",
|
1296
|
+
"enum": [
|
1297
|
+
"onSync"
|
1298
|
+
]
|
1299
|
+
},
|
1300
|
+
"config": {
|
1301
|
+
"type": "object",
|
1302
|
+
"properties": {
|
1303
|
+
"syncTypes": {
|
1304
|
+
"type": "array",
|
1305
|
+
"maxItems": 3,
|
1306
|
+
"minItems": 1,
|
1307
|
+
"items": {
|
1308
|
+
"type": "string",
|
1309
|
+
"enum": [
|
1310
|
+
"application",
|
1311
|
+
"device",
|
1312
|
+
"peripheral"
|
1313
|
+
]
|
1314
|
+
}
|
1315
|
+
}
|
1316
|
+
},
|
1317
|
+
"additionalProperties": false
|
1318
|
+
},
|
1319
|
+
"meta": {
|
1320
|
+
"type": "object",
|
1321
|
+
"properties": {
|
1322
|
+
"category": {
|
1323
|
+
"type": "string",
|
1324
|
+
"enum": [
|
1325
|
+
"trigger"
|
1326
|
+
]
|
1327
|
+
},
|
1328
|
+
"name": {
|
1329
|
+
"type": "string",
|
1330
|
+
"enum": [
|
1331
|
+
"onSync"
|
1332
|
+
]
|
1333
|
+
},
|
1334
|
+
"label": {
|
1335
|
+
"type": "string",
|
1336
|
+
"minLength": 1,
|
1337
|
+
"maxLength": 255
|
1338
|
+
},
|
1339
|
+
"x": {
|
1340
|
+
"type": "number"
|
1341
|
+
},
|
1342
|
+
"y": {
|
1343
|
+
"type": "number"
|
1344
|
+
},
|
1345
|
+
"uiId": {
|
1346
|
+
"type": "string",
|
1347
|
+
"maxLength": 48
|
1348
|
+
},
|
1349
|
+
"description": {
|
1350
|
+
"type": "string",
|
1351
|
+
"maxLength": 32767
|
1352
|
+
}
|
1353
|
+
},
|
1354
|
+
"additionalProperties": false
|
1355
|
+
},
|
1356
|
+
"outputIds": {
|
1357
|
+
"type": "array",
|
1358
|
+
"items": {
|
1359
|
+
"type": "array",
|
1360
|
+
"items": {
|
1361
|
+
"type": "string",
|
1362
|
+
"maxLength": 48,
|
1363
|
+
"minLength": 1
|
1364
|
+
},
|
1365
|
+
"maxItems": 100
|
1366
|
+
},
|
1367
|
+
"maxItems": 100
|
1368
|
+
}
|
1369
|
+
},
|
1370
|
+
"required": [
|
1371
|
+
"type"
|
1372
|
+
],
|
1373
|
+
"additionalProperties": false
|
1374
|
+
},
|
1287
1375
|
{
|
1288
1376
|
"type": "object",
|
1289
1377
|
"properties": {
|
@@ -3874,6 +3962,94 @@
|
|
3874
3962
|
],
|
3875
3963
|
"additionalProperties": false
|
3876
3964
|
},
|
3965
|
+
{
|
3966
|
+
"type": "object",
|
3967
|
+
"properties": {
|
3968
|
+
"key": {
|
3969
|
+
"type": "string",
|
3970
|
+
"maxLength": 1024
|
3971
|
+
},
|
3972
|
+
"type": {
|
3973
|
+
"type": "string",
|
3974
|
+
"enum": [
|
3975
|
+
"onSync"
|
3976
|
+
]
|
3977
|
+
},
|
3978
|
+
"config": {
|
3979
|
+
"type": "object",
|
3980
|
+
"properties": {
|
3981
|
+
"syncTypes": {
|
3982
|
+
"type": "array",
|
3983
|
+
"maxItems": 3,
|
3984
|
+
"minItems": 1,
|
3985
|
+
"items": {
|
3986
|
+
"type": "string",
|
3987
|
+
"enum": [
|
3988
|
+
"application",
|
3989
|
+
"device",
|
3990
|
+
"peripheral"
|
3991
|
+
]
|
3992
|
+
}
|
3993
|
+
}
|
3994
|
+
},
|
3995
|
+
"additionalProperties": false
|
3996
|
+
},
|
3997
|
+
"meta": {
|
3998
|
+
"type": "object",
|
3999
|
+
"properties": {
|
4000
|
+
"category": {
|
4001
|
+
"type": "string",
|
4002
|
+
"enum": [
|
4003
|
+
"trigger"
|
4004
|
+
]
|
4005
|
+
},
|
4006
|
+
"name": {
|
4007
|
+
"type": "string",
|
4008
|
+
"enum": [
|
4009
|
+
"onSync"
|
4010
|
+
]
|
4011
|
+
},
|
4012
|
+
"label": {
|
4013
|
+
"type": "string",
|
4014
|
+
"minLength": 1,
|
4015
|
+
"maxLength": 255
|
4016
|
+
},
|
4017
|
+
"x": {
|
4018
|
+
"type": "number"
|
4019
|
+
},
|
4020
|
+
"y": {
|
4021
|
+
"type": "number"
|
4022
|
+
},
|
4023
|
+
"uiId": {
|
4024
|
+
"type": "string",
|
4025
|
+
"maxLength": 48
|
4026
|
+
},
|
4027
|
+
"description": {
|
4028
|
+
"type": "string",
|
4029
|
+
"maxLength": 32767
|
4030
|
+
}
|
4031
|
+
},
|
4032
|
+
"additionalProperties": false
|
4033
|
+
},
|
4034
|
+
"outputIds": {
|
4035
|
+
"type": "array",
|
4036
|
+
"items": {
|
4037
|
+
"type": "array",
|
4038
|
+
"items": {
|
4039
|
+
"type": "string",
|
4040
|
+
"maxLength": 48,
|
4041
|
+
"minLength": 1
|
4042
|
+
},
|
4043
|
+
"maxItems": 100
|
4044
|
+
},
|
4045
|
+
"maxItems": 100
|
4046
|
+
}
|
4047
|
+
},
|
4048
|
+
"required": [
|
4049
|
+
"type"
|
4050
|
+
],
|
4051
|
+
"additionalProperties": false
|
4052
|
+
},
|
3877
4053
|
{
|
3878
4054
|
"type": "object",
|
3879
4055
|
"properties": {
|
data/schemas/flows.json
CHANGED
@@ -1309,6 +1309,94 @@
|
|
1309
1309
|
],
|
1310
1310
|
"additionalProperties": false
|
1311
1311
|
},
|
1312
|
+
{
|
1313
|
+
"type": "object",
|
1314
|
+
"properties": {
|
1315
|
+
"key": {
|
1316
|
+
"type": "string",
|
1317
|
+
"maxLength": 1024
|
1318
|
+
},
|
1319
|
+
"type": {
|
1320
|
+
"type": "string",
|
1321
|
+
"enum": [
|
1322
|
+
"onSync"
|
1323
|
+
]
|
1324
|
+
},
|
1325
|
+
"config": {
|
1326
|
+
"type": "object",
|
1327
|
+
"properties": {
|
1328
|
+
"syncTypes": {
|
1329
|
+
"type": "array",
|
1330
|
+
"maxItems": 3,
|
1331
|
+
"minItems": 1,
|
1332
|
+
"items": {
|
1333
|
+
"type": "string",
|
1334
|
+
"enum": [
|
1335
|
+
"application",
|
1336
|
+
"device",
|
1337
|
+
"peripheral"
|
1338
|
+
]
|
1339
|
+
}
|
1340
|
+
}
|
1341
|
+
},
|
1342
|
+
"additionalProperties": false
|
1343
|
+
},
|
1344
|
+
"meta": {
|
1345
|
+
"type": "object",
|
1346
|
+
"properties": {
|
1347
|
+
"category": {
|
1348
|
+
"type": "string",
|
1349
|
+
"enum": [
|
1350
|
+
"trigger"
|
1351
|
+
]
|
1352
|
+
},
|
1353
|
+
"name": {
|
1354
|
+
"type": "string",
|
1355
|
+
"enum": [
|
1356
|
+
"onSync"
|
1357
|
+
]
|
1358
|
+
},
|
1359
|
+
"label": {
|
1360
|
+
"type": "string",
|
1361
|
+
"minLength": 1,
|
1362
|
+
"maxLength": 255
|
1363
|
+
},
|
1364
|
+
"x": {
|
1365
|
+
"type": "number"
|
1366
|
+
},
|
1367
|
+
"y": {
|
1368
|
+
"type": "number"
|
1369
|
+
},
|
1370
|
+
"uiId": {
|
1371
|
+
"type": "string",
|
1372
|
+
"maxLength": 48
|
1373
|
+
},
|
1374
|
+
"description": {
|
1375
|
+
"type": "string",
|
1376
|
+
"maxLength": 32767
|
1377
|
+
}
|
1378
|
+
},
|
1379
|
+
"additionalProperties": false
|
1380
|
+
},
|
1381
|
+
"outputIds": {
|
1382
|
+
"type": "array",
|
1383
|
+
"items": {
|
1384
|
+
"type": "array",
|
1385
|
+
"items": {
|
1386
|
+
"type": "string",
|
1387
|
+
"maxLength": 48,
|
1388
|
+
"minLength": 1
|
1389
|
+
},
|
1390
|
+
"maxItems": 100
|
1391
|
+
},
|
1392
|
+
"maxItems": 100
|
1393
|
+
}
|
1394
|
+
},
|
1395
|
+
"required": [
|
1396
|
+
"type"
|
1397
|
+
],
|
1398
|
+
"additionalProperties": false
|
1399
|
+
},
|
1312
1400
|
{
|
1313
1401
|
"type": "object",
|
1314
1402
|
"properties": {
|