# name: determines the name of the service task. It should follow the guidelines of a name
# string, optional
name: Calculate score

# retries: Number of times to retry
# optional, number
retries: 3

mapping:
  # key must be a field name
  # value can be any text, you can reference variables or fields using double braces
  myUserField: "{{_vars.initiator.id}}"
  anotherField: "Lorem ipsum {{_vars.anotherVar}}"
  yetAnotherField: "{{myField.relatedField.anotherValue}}"
  myRel.myField: "{{_vars.yetAnotherVar}}"
  _vars.myVar: 1234
  _vars.anotherVar: true
