Runbeam logo

Santa's Workshop: A Festive Data Integration Journey

Meet Santa's Workshop—a whimsical template demonstrating Harmony's core capabilities through gift logistics. See how authentication, data transformation, and multi-destination routing work in a delightfully unconventional workflow.

Christopher Skene
Christopher Skene - Head of Magic
December 15, 2025
  • Engineering

We're delighted to introduce Santa's Workshop, a festive demonstration template showcasing Harmony's essential integration capabilities through an unexpectedly practical use case: global gift logistics coordination.

While the theme is seasonal and playful, Santa's Workshop illustrates genuine data integration patterns—authentication, middleware chaining, schema transformation, and multi-system routing—that apply across enterprise workflows. Whether you're integrating healthcare systems, connecting logistics platforms, or coordinating cross-organisation data exchange, the architectural principles demonstrated here are directly transferable to your infrastructure.

Workload template

Santa's Workshop

North Pole Gift Distribution Network

Gift Routing
Naughty/Nice Classification
RESTChristmas

The Integration Challenge: Holiday Logistics at Scale

Behind the red suit lies a genuine coordination problem. Santa's operation manages:

  • Multiple data sources: Children's letters (gift requests) and the Nice List (eligibility data)
  • Authentication barriers: Access control via unconventional credentials
  • Data validation: Filtering ineligible requests before processing
  • Format transformation: Converting gift request formats into production specifications
  • Multi-destination routing: Coordinating output to both delivery logistics and physical fulfillment

This mirrors real-world scenarios: healthcare systems receiving patient data from multiple sources, validating against policy databases, transforming to standard formats, then routing to clinical systems and archival backends. Logistics platforms ingesting orders from web, mobile, and partner APIs, validating inventory, transforming to warehouse systems, then routing to fulfillment and billing. Government agencies coordinating cross-organisation data exchange with security controls and standardised transformation.

Architecture: Authentication, Validation, and Transformation

Santa's Workshop demonstrates Harmony's core middleware stack in a coherent pipeline:

Request Authentication

The workshop's Cookie Auth middleware validates incoming requests using credential-based access control. In practice, this pattern supports:

  • OAuth2/OIDC integration for identity verification
  • API key validation for service-to-service communication
  • Mutual TLS (mTLS) for zero-trust network protocols
  • Custom authentication adapters for proprietary identity systems

The principle is identical: verify caller identity before processing, enabling fine-grained access policies downstream.

Policy Enforcement and Data Validation

The Naughty/Nice List verification middleware validates requests against external data sources—checking eligibility before proceeding. This is the pattern underlying:

  • Healthcare workflows validating patient identifiers against master patient indices
  • Logistics systems checking order validity against inventory databases
  • Cross-organisation data exchange validating sender credentials against federation registries
  • Compliance systems enforcing data handling policies before processing

By chaining validation middlewares, Harmony enforces complex policy requirements without application-level logic, centralising governance in the integration platform.

Format Transformation

The Gift Transform middleware converts from the request format (EPF—Eligible Present Format) to the backend format (UGS—Universal Gift Specification). This demonstrates:

  • FHIR to HL7v2 transformation in healthcare workflows
  • REST API schema conversion in SaaS integration
  • Protocol bridging (HTTP to DICOM in medical imaging)
  • Vendor-specific format normalisation across enterprise systems

Harmony's transformation engine supports both declarative (JOLT-based) and programmatic approaches, enabling simple mappings and complex business logic within a unified pipeline.

Multi-Destination Routing

The pipeline routes validated, transformed data to multiple backends: Reindeer Fleet (delivery coordination) and Chimneys (physical fulfillment). Harmony's routing capabilities support:

  • Content-based routing (different schemas to different backends)
  • Load balancing across identical backend instances
  • Fan-out patterns (single request to multiple destinations)
  • Conditional routing (route based on request attributes or policy decisions)

Understanding Santa's Workshop

Santa's Workshop is a demonstration template designed for learning and inspiration, not production deployment. The template itself exists in the Harmony examples repository, but its backend systems—Reindeer Fleet, Chimneys, and the Elf Production queue—are imaginary. This is intentional: the template's value lies in illustrating architectural patterns, not in operating a real integration pipeline.

To understand what makes Santa's Workshop a compelling demonstration:

  1. Examine the configuration: Review the template source in the harmony-examples repository to see how authentication, middleware chaining, and routing are configured.
  2. Understand the patterns: Study how each middleware layer demonstrates a distinct capability you can apply to your own integration scenarios.
  3. Adapt the architecture: Use the pipeline structure as a blueprint—replace the imaginary backends with real systems, adjust the middleware chain for your use case, and deploy within your own infrastructure.

The architectural patterns demonstrated here are production-grade; the gift logistics workflow is a memorable vehicle for understanding them. If you're building actual integration infrastructure, this template serves as a reference for composing authentication, validation, transformation, and routing into coherent pipelines you can deploy with real backend systems.

Beyond the Festive Facade

Santa's Workshop is deliberately whimsical—it's a demonstration template designed to be memorable, shareable, and instructive without the formality of abstract examples. But the underlying patterns are production-grade:

  • Middleware composition: Complex workflows through simple, chainable middleware
  • Security controls: Authentication and authorisation at the integration layer
  • Data governance: Validation, transformation, and routing without application coupling
  • Multi-environment support: Configuration suitable for development, staging, and production

The same pipeline structure supports healthcare networks coordinating DICOM studies, financial institutions routing payment instructions through compliance validators, and government agencies orchestrating cross-organisation service delivery.

From Demo to Production

If you're building integration infrastructure, Santa's Workshop serves as:

  • Learning template: Understand Harmony's capabilities through a memorable, concrete example
  • Architecture reference: See how authentication, validation, transformation, and routing compose into coherent workflows
  • Deployment scaffold: Clone and adapt the configuration for your own integration scenarios
  • Documentation: Each middleware demonstrates a distinct capability you can apply independently

Get Started

Explore Santa's Workshop in the Harmony workloads section, deploy it directly, or use it as a foundation for your own integration pipelines.

Whether your integration challenge involves medical records, logistics coordination, or something equally complex, Harmony's composable architecture makes it manageable, auditable, and production-ready.

Read next

Visualizing Harmony Pipelines

December 12, 2025Engineering

A look at common Harmony configuration patterns through our new visualization system.

Runbeam Team