Workday Extend · Schema

OrchestrationCreate

AutomationCustom ApplicationsEnterpriseExtensionsHCMHuman Capital ManagementIntegrationOrchestrationPaaS

Properties

Name Type Description
name string Name of the orchestration
description string Description of the orchestration
triggerType string The primary trigger type
View JSON Schema on GitHub

JSON Schema

workday-extend-orchestrationcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OrchestrationCreate",
  "title": "OrchestrationCreate",
  "type": "object",
  "required": [
    "name",
    "description"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the orchestration",
      "maxLength": 255
    },
    "description": {
      "type": "string",
      "description": "Description of the orchestration"
    },
    "triggerType": {
      "type": "string",
      "enum": [
        "event",
        "api",
        "schedule",
        "business_process"
      ],
      "description": "The primary trigger type"
    }
  }
}