Skip to main content
fieldMapping lets you rename or remap fields from source data to match your output schema columns:
Values can be:
  • Dot-notation paths — reference fields in the service response (e.g., "orderId", "response.field")
  • {{item.X}} references — pull values from the forEach source row
When fieldMapping is not provided, the engine matches output schema columns to response fields by name, including automatic camelCase conversion (e.g., order_id matches orderId).

Generated values

Field mappings can generate values instead of reading from the source:
Generated values are currently available in importFromDatabase and persistToDatabase steps only.

Validation