Skip to content

Transformations

Transformations are used inside workflows to convert payload formats and schemas.

Common Patterns

  • XML input to canonical JSON.
  • JSON input to XML for legacy system integration.
  • XSLT mapping from source schema to target schema.
  • Template rendering for outbound message bodies.

Design Guidance

  • Keep mapping logic deterministic.
  • Version transformation artifacts with workflow changes.
  • Prefer small, composable transformations over monolithic mappings.

Diagnostics

  • Capture transformation outputs in traces where safe.
  • Validate sample payloads before production rollout.