Workday Extend · Schema

OrchestrationTriggerCreate

AutomationCustom ApplicationsEnterpriseExtensionsHCMHuman Capital ManagementIntegrationOrchestrationPaaS

Properties

Name Type Description
type string The type of trigger
name string Name for the trigger
description string Description of the trigger
configuration object Trigger-specific configuration parameters
View JSON Schema on GitHub

JSON Schema

workday-extend-orchestrationtriggercreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OrchestrationTriggerCreate",
  "title": "OrchestrationTriggerCreate",
  "type": "object",
  "required": [
    "type",
    "name"
  ],
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "event",
        "api",
        "schedule",
        "business_process"
      ],
      "description": "The type of trigger"
    },
    "name": {
      "type": "string",
      "description": "Name for the trigger"
    },
    "description": {
      "type": "string",
      "description": "Description of the trigger"
    },
    "configuration": {
      "type": "object",
      "additionalProperties": true,
      "description": "Trigger-specific configuration parameters"
    }
  }
}