@camunda/connectors-element-templates 0.0.1-alpha8 → 1.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.
@@ -936,5 +936,771 @@
936
936
  "engines": {
937
937
  "camunda": "^8.3"
938
938
  }
939
+ },
940
+ {
941
+ "$schema": "https://unpkg.com/@camunda/zeebe-element-templates-json-schema/resources/schema.json",
942
+ "name": "HTTP Polling Boundary Catch Event Connector",
943
+ "id": "io.camunda.connectors.http.Polling.Boundary",
944
+ "description": "Polls endpoint at regular intervals",
945
+ "metadata": {
946
+ "keywords": []
947
+ },
948
+ "documentationRef": "https://docs.camunda.io/docs/components/connectors/protocol/polling/",
949
+ "version": 3,
950
+ "category": {
951
+ "id": "connectors",
952
+ "name": "Connectors"
953
+ },
954
+ "appliesTo": ["bpmn:BoundaryEvent"],
955
+ "elementType": {
956
+ "value": "bpmn:BoundaryEvent",
957
+ "eventDefinition": "bpmn:MessageEventDefinition"
958
+ },
959
+ "engines": {
960
+ "camunda": "^8.3"
961
+ },
962
+ "groups": [
963
+ {
964
+ "id": "authentication",
965
+ "label": "Authentication"
966
+ },
967
+ {
968
+ "id": "endpoint",
969
+ "label": "HTTP Polling configuration"
970
+ },
971
+ {
972
+ "id": "payload",
973
+ "label": "Payload"
974
+ },
975
+ {
976
+ "id": "timeout",
977
+ "label": "Connect timeout"
978
+ },
979
+ {
980
+ "id": "activation",
981
+ "label": "Activation"
982
+ },
983
+ {
984
+ "id": "correlation",
985
+ "label": "Correlation",
986
+ "tooltip": "Learn more about message correlation in the <a href=\"https://docs.camunda.io/docs/components/concepts/messages/#message-correlation-overview\">documentation</a>."
987
+ },
988
+ {
989
+ "id": "deduplication",
990
+ "label": "Deduplication",
991
+ "tooltip": "Deduplication allows you to configure multiple inbound connector elements to reuse the same backend (consumer/thread/endpoint) by sharing the same deduplication ID."
992
+ },
993
+ {
994
+ "id": "output",
995
+ "label": "Output mapping"
996
+ }
997
+ ],
998
+ "properties": [
999
+ {
1000
+ "value": "io.camunda:http-polling:1",
1001
+ "binding": {
1002
+ "name": "inbound.type",
1003
+ "type": "zeebe:property"
1004
+ },
1005
+ "type": "Hidden"
1006
+ },
1007
+ {
1008
+ "id": "DEFAULT_HTTP_REQUEST_INTERVAL",
1009
+ "label": "DEFAULT_HTTP_REQUEST_INTERVAL",
1010
+ "feel": "optional",
1011
+ "binding": {
1012
+ "name": "DEFAULT_HTTP_REQUEST_INTERVAL",
1013
+ "type": "zeebe:property"
1014
+ },
1015
+ "type": "String"
1016
+ },
1017
+ {
1018
+ "id": "DEFAULT_PROCESS_POLLING_INTERVAL",
1019
+ "label": "DEFAULT_PROCESS_POLLING_INTERVAL",
1020
+ "feel": "optional",
1021
+ "binding": {
1022
+ "name": "DEFAULT_PROCESS_POLLING_INTERVAL",
1023
+ "type": "zeebe:property"
1024
+ },
1025
+ "type": "String"
1026
+ },
1027
+ {
1028
+ "id": "httpRequestInterval",
1029
+ "label": "Http request interval",
1030
+ "feel": "optional",
1031
+ "binding": {
1032
+ "name": "httpRequestInterval",
1033
+ "type": "zeebe:property"
1034
+ },
1035
+ "type": "String"
1036
+ },
1037
+ {
1038
+ "id": "processPollingInterval",
1039
+ "label": "Process polling interval",
1040
+ "feel": "optional",
1041
+ "binding": {
1042
+ "name": "processPollingInterval",
1043
+ "type": "zeebe:property"
1044
+ },
1045
+ "type": "String"
1046
+ },
1047
+ {
1048
+ "id": "authentication.type",
1049
+ "label": "Type",
1050
+ "description": "Choose the authentication type. Select 'None' if no authentication is necessary",
1051
+ "value": "noAuth",
1052
+ "group": "authentication",
1053
+ "binding": {
1054
+ "name": "authentication.type",
1055
+ "type": "zeebe:property"
1056
+ },
1057
+ "type": "Dropdown",
1058
+ "choices": [
1059
+ {
1060
+ "name": "API key",
1061
+ "value": "apiKey"
1062
+ },
1063
+ {
1064
+ "name": "Basic",
1065
+ "value": "basic"
1066
+ },
1067
+ {
1068
+ "name": "Bearer token",
1069
+ "value": "bearer"
1070
+ },
1071
+ {
1072
+ "name": "None",
1073
+ "value": "noAuth"
1074
+ },
1075
+ {
1076
+ "name": "OAuth 2.0",
1077
+ "value": "oauth-client-credentials-flow"
1078
+ }
1079
+ ]
1080
+ },
1081
+ {
1082
+ "id": "authentication.apiKeyLocation",
1083
+ "label": "Api key location",
1084
+ "description": "Choose type: Send API key in header or as query parameter.",
1085
+ "optional": false,
1086
+ "value": "headers",
1087
+ "constraints": {
1088
+ "notEmpty": true
1089
+ },
1090
+ "group": "authentication",
1091
+ "binding": {
1092
+ "name": "authentication.apiKeyLocation",
1093
+ "type": "zeebe:property"
1094
+ },
1095
+ "condition": {
1096
+ "property": "authentication.type",
1097
+ "equals": "apiKey",
1098
+ "type": "simple"
1099
+ },
1100
+ "type": "Dropdown",
1101
+ "choices": [
1102
+ {
1103
+ "name": "Headers",
1104
+ "value": "headers"
1105
+ },
1106
+ {
1107
+ "name": "Query parameters",
1108
+ "value": "query"
1109
+ }
1110
+ ]
1111
+ },
1112
+ {
1113
+ "id": "authentication.name",
1114
+ "label": "API key name",
1115
+ "optional": false,
1116
+ "constraints": {
1117
+ "notEmpty": true
1118
+ },
1119
+ "group": "authentication",
1120
+ "binding": {
1121
+ "name": "authentication.name",
1122
+ "type": "zeebe:property"
1123
+ },
1124
+ "condition": {
1125
+ "property": "authentication.type",
1126
+ "equals": "apiKey",
1127
+ "type": "simple"
1128
+ },
1129
+ "type": "String"
1130
+ },
1131
+ {
1132
+ "id": "authentication.value",
1133
+ "label": "API key value",
1134
+ "optional": false,
1135
+ "constraints": {
1136
+ "notEmpty": true
1137
+ },
1138
+ "group": "authentication",
1139
+ "binding": {
1140
+ "name": "authentication.value",
1141
+ "type": "zeebe:property"
1142
+ },
1143
+ "condition": {
1144
+ "property": "authentication.type",
1145
+ "equals": "apiKey",
1146
+ "type": "simple"
1147
+ },
1148
+ "type": "String"
1149
+ },
1150
+ {
1151
+ "id": "authentication.username",
1152
+ "label": "Username",
1153
+ "optional": false,
1154
+ "constraints": {
1155
+ "notEmpty": true
1156
+ },
1157
+ "group": "authentication",
1158
+ "binding": {
1159
+ "name": "authentication.username",
1160
+ "type": "zeebe:property"
1161
+ },
1162
+ "condition": {
1163
+ "property": "authentication.type",
1164
+ "equals": "basic",
1165
+ "type": "simple"
1166
+ },
1167
+ "type": "String"
1168
+ },
1169
+ {
1170
+ "id": "authentication.password",
1171
+ "label": "Password",
1172
+ "optional": false,
1173
+ "constraints": {
1174
+ "notEmpty": true
1175
+ },
1176
+ "group": "authentication",
1177
+ "binding": {
1178
+ "name": "authentication.password",
1179
+ "type": "zeebe:property"
1180
+ },
1181
+ "condition": {
1182
+ "property": "authentication.type",
1183
+ "equals": "basic",
1184
+ "type": "simple"
1185
+ },
1186
+ "type": "String"
1187
+ },
1188
+ {
1189
+ "id": "authentication.token",
1190
+ "label": "Bearer token",
1191
+ "optional": false,
1192
+ "constraints": {
1193
+ "notEmpty": true
1194
+ },
1195
+ "group": "authentication",
1196
+ "binding": {
1197
+ "name": "authentication.token",
1198
+ "type": "zeebe:property"
1199
+ },
1200
+ "condition": {
1201
+ "property": "authentication.type",
1202
+ "equals": "bearer",
1203
+ "type": "simple"
1204
+ },
1205
+ "type": "String"
1206
+ },
1207
+ {
1208
+ "id": "authentication.oauthTokenEndpoint",
1209
+ "label": "OAuth 2.0 token endpoint",
1210
+ "description": "The OAuth token endpoint",
1211
+ "optional": false,
1212
+ "constraints": {
1213
+ "notEmpty": true,
1214
+ "pattern": {
1215
+ "value": "^(=|(http://|https://|secrets|\\{\\{).*$)",
1216
+ "message": "Must be a http(s) URL"
1217
+ }
1218
+ },
1219
+ "group": "authentication",
1220
+ "binding": {
1221
+ "name": "authentication.oauthTokenEndpoint",
1222
+ "type": "zeebe:property"
1223
+ },
1224
+ "condition": {
1225
+ "property": "authentication.type",
1226
+ "equals": "oauth-client-credentials-flow",
1227
+ "type": "simple"
1228
+ },
1229
+ "type": "String"
1230
+ },
1231
+ {
1232
+ "id": "authentication.clientId",
1233
+ "label": "Client ID",
1234
+ "description": "Your application's client ID from the OAuth client",
1235
+ "optional": false,
1236
+ "constraints": {
1237
+ "notEmpty": true
1238
+ },
1239
+ "group": "authentication",
1240
+ "binding": {
1241
+ "name": "authentication.clientId",
1242
+ "type": "zeebe:property"
1243
+ },
1244
+ "condition": {
1245
+ "property": "authentication.type",
1246
+ "equals": "oauth-client-credentials-flow",
1247
+ "type": "simple"
1248
+ },
1249
+ "type": "String"
1250
+ },
1251
+ {
1252
+ "id": "authentication.clientSecret",
1253
+ "label": "Client secret",
1254
+ "description": "Your application's client secret from the OAuth client",
1255
+ "optional": false,
1256
+ "constraints": {
1257
+ "notEmpty": true
1258
+ },
1259
+ "group": "authentication",
1260
+ "binding": {
1261
+ "name": "authentication.clientSecret",
1262
+ "type": "zeebe:property"
1263
+ },
1264
+ "condition": {
1265
+ "property": "authentication.type",
1266
+ "equals": "oauth-client-credentials-flow",
1267
+ "type": "simple"
1268
+ },
1269
+ "type": "String"
1270
+ },
1271
+ {
1272
+ "id": "authentication.audience",
1273
+ "label": "Audience",
1274
+ "description": "The unique identifier of the target API you want to access",
1275
+ "optional": true,
1276
+ "group": "authentication",
1277
+ "binding": {
1278
+ "name": "authentication.audience",
1279
+ "type": "zeebe:property"
1280
+ },
1281
+ "condition": {
1282
+ "property": "authentication.type",
1283
+ "equals": "oauth-client-credentials-flow",
1284
+ "type": "simple"
1285
+ },
1286
+ "type": "String"
1287
+ },
1288
+ {
1289
+ "id": "authentication.clientAuthentication",
1290
+ "label": "Client authentication",
1291
+ "description": "Send client ID and client secret as Basic Auth request in the header, or as client credentials in the request body",
1292
+ "optional": false,
1293
+ "constraints": {
1294
+ "notEmpty": true
1295
+ },
1296
+ "group": "authentication",
1297
+ "binding": {
1298
+ "name": "authentication.clientAuthentication",
1299
+ "type": "zeebe:property"
1300
+ },
1301
+ "condition": {
1302
+ "property": "authentication.type",
1303
+ "equals": "oauth-client-credentials-flow",
1304
+ "type": "simple"
1305
+ },
1306
+ "type": "Dropdown",
1307
+ "choices": [
1308
+ {
1309
+ "name": "Send client credentials in body",
1310
+ "value": "credentialsBody"
1311
+ },
1312
+ {
1313
+ "name": "Send as Basic Auth header",
1314
+ "value": "basicAuthHeader"
1315
+ }
1316
+ ]
1317
+ },
1318
+ {
1319
+ "id": "authentication.scopes",
1320
+ "label": "Scopes",
1321
+ "description": "The scopes which you want to request authorization for (e.g.read:contacts)",
1322
+ "optional": true,
1323
+ "group": "authentication",
1324
+ "binding": {
1325
+ "name": "authentication.scopes",
1326
+ "type": "zeebe:property"
1327
+ },
1328
+ "condition": {
1329
+ "property": "authentication.type",
1330
+ "equals": "oauth-client-credentials-flow",
1331
+ "type": "simple"
1332
+ },
1333
+ "type": "String"
1334
+ },
1335
+ {
1336
+ "id": "method",
1337
+ "label": "Method",
1338
+ "optional": false,
1339
+ "value": "GET",
1340
+ "constraints": {
1341
+ "notEmpty": true
1342
+ },
1343
+ "group": "endpoint",
1344
+ "binding": {
1345
+ "name": "method",
1346
+ "type": "zeebe:property"
1347
+ },
1348
+ "type": "Dropdown",
1349
+ "choices": [
1350
+ {
1351
+ "name": "POST",
1352
+ "value": "POST"
1353
+ },
1354
+ {
1355
+ "name": "GET",
1356
+ "value": "GET"
1357
+ },
1358
+ {
1359
+ "name": "DELETE",
1360
+ "value": "DELETE"
1361
+ },
1362
+ {
1363
+ "name": "PATCH",
1364
+ "value": "PATCH"
1365
+ },
1366
+ {
1367
+ "name": "PUT",
1368
+ "value": "PUT"
1369
+ }
1370
+ ]
1371
+ },
1372
+ {
1373
+ "id": "url",
1374
+ "label": "URL",
1375
+ "optional": false,
1376
+ "constraints": {
1377
+ "notEmpty": true,
1378
+ "pattern": {
1379
+ "value": "^(=|(http://|https://|secrets|\\{\\{).*$)",
1380
+ "message": "Must be a http(s) URL"
1381
+ }
1382
+ },
1383
+ "group": "endpoint",
1384
+ "binding": {
1385
+ "name": "url",
1386
+ "type": "zeebe:property"
1387
+ },
1388
+ "type": "String"
1389
+ },
1390
+ {
1391
+ "id": "headers",
1392
+ "label": "Headers",
1393
+ "description": "Map of HTTP headers to add to the request",
1394
+ "optional": true,
1395
+ "feel": "required",
1396
+ "group": "endpoint",
1397
+ "binding": {
1398
+ "name": "headers",
1399
+ "type": "zeebe:property"
1400
+ },
1401
+ "type": "String"
1402
+ },
1403
+ {
1404
+ "id": "queryParameters",
1405
+ "label": "Query parameters",
1406
+ "description": "Map of query parameters to add to the request URL",
1407
+ "optional": true,
1408
+ "feel": "required",
1409
+ "group": "endpoint",
1410
+ "binding": {
1411
+ "name": "queryParameters",
1412
+ "type": "zeebe:property"
1413
+ },
1414
+ "type": "String"
1415
+ },
1416
+ {
1417
+ "id": "storeResponse",
1418
+ "label": "Store response",
1419
+ "description": "Store the response as a document in the document store",
1420
+ "optional": false,
1421
+ "value": false,
1422
+ "feel": "static",
1423
+ "group": "endpoint",
1424
+ "binding": {
1425
+ "name": "storeResponse",
1426
+ "type": "zeebe:property"
1427
+ },
1428
+ "type": "Boolean"
1429
+ },
1430
+ {
1431
+ "id": "skipEncoding",
1432
+ "label": "Skip URL encoding",
1433
+ "description": "Skip the default URL decoding and encoding behavior",
1434
+ "optional": true,
1435
+ "group": "endpoint",
1436
+ "binding": {
1437
+ "name": "skipEncoding",
1438
+ "type": "zeebe:property"
1439
+ },
1440
+ "type": "Hidden"
1441
+ },
1442
+ {
1443
+ "id": "body",
1444
+ "label": "Request body",
1445
+ "description": "Payload to send with the request",
1446
+ "optional": true,
1447
+ "feel": "optional",
1448
+ "group": "payload",
1449
+ "binding": {
1450
+ "name": "body",
1451
+ "type": "zeebe:property"
1452
+ },
1453
+ "condition": {
1454
+ "property": "method",
1455
+ "oneOf": ["POST", "PUT", "PATCH"],
1456
+ "type": "simple"
1457
+ },
1458
+ "type": "Text"
1459
+ },
1460
+ {
1461
+ "id": "ignoreNullValues",
1462
+ "label": "Ignore null values",
1463
+ "optional": false,
1464
+ "value": false,
1465
+ "feel": "static",
1466
+ "group": "payload",
1467
+ "binding": {
1468
+ "name": "ignoreNullValues",
1469
+ "type": "zeebe:property"
1470
+ },
1471
+ "tooltip": "Null values will not be sent",
1472
+ "type": "Boolean"
1473
+ },
1474
+ {
1475
+ "id": "connectionTimeoutInSeconds",
1476
+ "label": "Connection timeout in seconds",
1477
+ "description": "Defines the connection timeout in seconds, or 0 for an infinite timeout",
1478
+ "optional": false,
1479
+ "value": "20",
1480
+ "constraints": {
1481
+ "notEmpty": true,
1482
+ "pattern": {
1483
+ "value": "^\\d+$",
1484
+ "message": "Must be a number"
1485
+ }
1486
+ },
1487
+ "group": "timeout",
1488
+ "binding": {
1489
+ "name": "connectionTimeoutInSeconds",
1490
+ "type": "zeebe:property"
1491
+ },
1492
+ "type": "String"
1493
+ },
1494
+ {
1495
+ "id": "readTimeoutInSeconds",
1496
+ "label": "Read timeout in seconds",
1497
+ "description": "Timeout in seconds to read data from an established connection or 0 for an infinite timeout",
1498
+ "optional": false,
1499
+ "value": "20",
1500
+ "constraints": {
1501
+ "notEmpty": true,
1502
+ "pattern": {
1503
+ "value": "^\\d+$",
1504
+ "message": "Must be a number"
1505
+ }
1506
+ },
1507
+ "group": "timeout",
1508
+ "binding": {
1509
+ "name": "readTimeoutInSeconds",
1510
+ "type": "zeebe:property"
1511
+ },
1512
+ "type": "String"
1513
+ },
1514
+ {
1515
+ "id": "activationCondition",
1516
+ "label": "Activation condition",
1517
+ "description": "Condition under which the Connector triggers. Leave empty to catch all events",
1518
+ "optional": true,
1519
+ "feel": "required",
1520
+ "group": "activation",
1521
+ "binding": {
1522
+ "name": "activationCondition",
1523
+ "type": "zeebe:property"
1524
+ },
1525
+ "type": "String"
1526
+ },
1527
+ {
1528
+ "id": "consumeUnmatchedEvents",
1529
+ "label": "Consume unmatched events",
1530
+ "value": true,
1531
+ "group": "activation",
1532
+ "binding": {
1533
+ "name": "consumeUnmatchedEvents",
1534
+ "type": "zeebe:property"
1535
+ },
1536
+ "tooltip": "Unmatched events are rejected by default, allowing the upstream service to handle the error. Check this box to consume unmatched events and return a success response",
1537
+ "type": "Boolean"
1538
+ },
1539
+ {
1540
+ "id": "correlationKeyProcess",
1541
+ "label": "Correlation key (process)",
1542
+ "description": "Sets up the correlation key from process variables",
1543
+ "constraints": {
1544
+ "notEmpty": true
1545
+ },
1546
+ "feel": "required",
1547
+ "group": "correlation",
1548
+ "binding": {
1549
+ "name": "correlationKey",
1550
+ "type": "bpmn:Message#zeebe:subscription#property"
1551
+ },
1552
+ "type": "String"
1553
+ },
1554
+ {
1555
+ "id": "correlationKeyPayload",
1556
+ "label": "Correlation key (payload)",
1557
+ "description": "Extracts the correlation key from the incoming message payload",
1558
+ "constraints": {
1559
+ "notEmpty": true
1560
+ },
1561
+ "feel": "required",
1562
+ "group": "correlation",
1563
+ "binding": {
1564
+ "name": "correlationKeyExpression",
1565
+ "type": "zeebe:property"
1566
+ },
1567
+ "type": "String"
1568
+ },
1569
+ {
1570
+ "id": "messageIdExpression",
1571
+ "label": "Message ID expression",
1572
+ "description": "Expression to extract unique identifier of a message",
1573
+ "optional": true,
1574
+ "feel": "required",
1575
+ "group": "correlation",
1576
+ "binding": {
1577
+ "name": "messageIdExpression",
1578
+ "type": "zeebe:property"
1579
+ },
1580
+ "type": "String"
1581
+ },
1582
+ {
1583
+ "id": "messageTtl",
1584
+ "label": "Message TTL",
1585
+ "description": "Time-to-live for the message in the broker (ISO-8601 duration)",
1586
+ "optional": true,
1587
+ "constraints": {
1588
+ "notEmpty": false,
1589
+ "pattern": {
1590
+ "value": "^(PT.*|)$",
1591
+ "message": "must be an ISO-8601 duration"
1592
+ }
1593
+ },
1594
+ "feel": "optional",
1595
+ "group": "correlation",
1596
+ "binding": {
1597
+ "name": "messageTtl",
1598
+ "type": "zeebe:property"
1599
+ },
1600
+ "type": "String"
1601
+ },
1602
+ {
1603
+ "id": "messageNameUuid",
1604
+ "generatedValue": {
1605
+ "type": "uuid"
1606
+ },
1607
+ "group": "correlation",
1608
+ "binding": {
1609
+ "name": "name",
1610
+ "type": "bpmn:Message#property"
1611
+ },
1612
+ "type": "Hidden"
1613
+ },
1614
+ {
1615
+ "id": "deduplicationModeManualFlag",
1616
+ "label": "Manual mode",
1617
+ "description": "By default, similar connectors receive the same deduplication ID. Customize by activating manual mode",
1618
+ "value": false,
1619
+ "group": "deduplication",
1620
+ "binding": {
1621
+ "name": "deduplicationModeManualFlag",
1622
+ "type": "zeebe:property"
1623
+ },
1624
+ "type": "Boolean"
1625
+ },
1626
+ {
1627
+ "id": "deduplicationId",
1628
+ "label": "Deduplication ID",
1629
+ "constraints": {
1630
+ "notEmpty": true,
1631
+ "pattern": {
1632
+ "value": "^[a-zA-Z0-9_-]+$",
1633
+ "message": "can only contain alphanumeric characters, dashes, and underscores"
1634
+ }
1635
+ },
1636
+ "group": "deduplication",
1637
+ "binding": {
1638
+ "name": "deduplicationId",
1639
+ "type": "zeebe:property"
1640
+ },
1641
+ "condition": {
1642
+ "property": "deduplicationModeManualFlag",
1643
+ "equals": true,
1644
+ "type": "simple"
1645
+ },
1646
+ "type": "String"
1647
+ },
1648
+ {
1649
+ "id": "deduplicationModeManual",
1650
+ "value": "MANUAL",
1651
+ "group": "deduplication",
1652
+ "binding": {
1653
+ "name": "deduplicationMode",
1654
+ "type": "zeebe:property"
1655
+ },
1656
+ "condition": {
1657
+ "property": "deduplicationId",
1658
+ "isActive": true,
1659
+ "type": "simple"
1660
+ },
1661
+ "type": "Hidden"
1662
+ },
1663
+ {
1664
+ "id": "deduplicationModeAuto",
1665
+ "value": "AUTO",
1666
+ "group": "deduplication",
1667
+ "binding": {
1668
+ "name": "deduplicationMode",
1669
+ "type": "zeebe:property"
1670
+ },
1671
+ "condition": {
1672
+ "property": "deduplicationId",
1673
+ "isActive": false,
1674
+ "type": "simple"
1675
+ },
1676
+ "type": "Hidden"
1677
+ },
1678
+ {
1679
+ "id": "resultVariable",
1680
+ "label": "Result variable",
1681
+ "description": "Name of variable to store the response in",
1682
+ "group": "output",
1683
+ "binding": {
1684
+ "name": "resultVariable",
1685
+ "type": "zeebe:property"
1686
+ },
1687
+ "type": "String"
1688
+ },
1689
+ {
1690
+ "id": "resultExpression",
1691
+ "label": "Result expression",
1692
+ "description": "Expression to map the response into process variables",
1693
+ "feel": "required",
1694
+ "group": "output",
1695
+ "binding": {
1696
+ "name": "resultExpression",
1697
+ "type": "zeebe:property"
1698
+ },
1699
+ "type": "Text"
1700
+ }
1701
+ ],
1702
+ "icon": {
1703
+ "contents": "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0nMS4wJz8+Cjxzdmcgd2lkdGg9JzE4JyBoZWlnaHQ9JzE4JyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnPgogICAgPGcgY2xhc3M9J2xheWVyJz4KICAgICAgICA8dGl0bGU+TGF5ZXIgMTwvdGl0bGU+CiAgICAgICAgPHBhdGggZD0nbTE3LjAzLDljMCw0LjQ1IC0zLjYsOC4wNSAtOC4wNSw4LjA1Yy00LjQ1LDAgLTguMDUsLTMuNiAtOC4wNSwtOC4wNWMwLC00LjQ1IDMuNiwtOC4wNSA4LjA1LC04LjA1YzQuNDUsMCA4LjA1LDMuNiA4LjA1LDguMDV6JwogICAgICAgICAgICAgIGZpbGw9JyM1MDU1NjInIGlkPSdzdmdfMScvPgogICAgICAgIDxwYXRoIGQ9J200LjkzLDE0LjE2bDEuODUsLTEwLjQ1bDMuMzYsMGMxLjA1LDAgMS44NCwwLjI3IDIuMzcsMC44MWMwLjU0LDAuNTMgMC44LDEuMjEgMC44LDIuMDZjMCwwLjg2IC0wLjI0LDEuNTggLTAuNzMsMi4xM2MtMC40NywwLjU1IC0xLjEyLDAuOTMgLTEuOTUsMS4xNGwtMC40OCwwLjA5bC0wLjUzLDAuMDNsLTAuNiwwLjA1bC0xLjc5LDBsLTAuNzMsNC4xNGwtMS41OCwwem0yLjU3LC01LjU3bDEuNzQsMGMwLjc2LDAgMS4zNSwtMC4xNyAxLjc4LC0wLjVjMC40NCwtMC4zNSAwLjY1LC0wLjgyIDAuNjUsLTEuNDJjMCwtMC40OCAtMC4xNSwtMC44NSAtMC40NCwtMS4xMmMtMC4zLC0wLjI4IC0wLjc3LC0wLjQyIC0xLjQyLC0wLjQybC0xLjcsMGwtMC42MSwzLjQ2eicKICAgICAgICAgICAgICBmaWxsPSd3aGl0ZScgaWQ9J3N2Z18yJy8+CiAgICA8L2c+Cjwvc3ZnPg=="
1704
+ }
939
1705
  }
940
1706
  ]