Workday Extend · Schema

OrchestrationStep

AutomationCustom ApplicationsEnterpriseExtensionsHCMHuman Capital ManagementIntegrationOrchestrationPaaS

Properties

Name Type Description
id string Unique identifier for the step
name string Name of the orchestration step
type string The type of step
order integer Position of the step in the orchestration flow
description string Description of what this step does
configuration object Step-specific configuration parameters
View JSON Schema on GitHub

JSON Schema

workday-extend-orchestrationstep-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OrchestrationStep",
  "title": "OrchestrationStep",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the step"
    },
    "name": {
      "type": "string",
      "description": "Name of the orchestration step"
    },
    "type": {
      "type": "string",
      "enum": [
        "connector",
        "transformation",
        "condition",
        "loop",
        "subOrchestration",
        "notification",
        "workdayApi",
        "restApi",
        "soapApi"
      ],
      "description": "The type of step"
    },
    "order": {
      "type": "integer",
      "description": "Position of the step in the orchestration flow"
    },
    "description": {
      "type": "string",
      "description": "Description of what this step does"
    },
    "configuration": {
      "type": "object",
      "additionalProperties": true,
      "description": "Step-specific configuration parameters"
    }
  }
}