Skip to content

YAML Syntax Reference

This page is under active construction.

Overview

Complete reference for workflow YAML syntax and configuration.

Topics to Cover

  • Basic YAML structure for workflows
  • Workflow metadata and configuration
  • Step definition syntax
  • Parameter passing and templating
  • Conditional expressions
  • Variable substitution

Syntax Elements

Workflow Structure

# Basic workflow structure
name: "My Workflow"
description: "Description of the workflow"
version: "1.0"

steps:
  - name: "step1"
    type: "data_load"
    # step configuration

Step Types and Parameters

  • Data loading steps
  • Transformation steps
  • Analysis steps
  • Output steps