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

# type: Determines the type of service task.
# string, required
type: dataSetter

# mapping: Configures what variables to save and where
# object, required
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
