Files
api-specs/idn/beta/schemas/WorkflowTrigger.yaml
GitHub Action Bot a25d51b9d0 Automated commit 'Merge pull request #1357 from sailpoint/devrel-1104
Change anyOf to oneOf for prescript' by github action: 5681732027
2023-07-27 14:19:46 +00:00

21 lines
528 B
YAML

type: object
description: The trigger that starts the workflow
required:
- type
- attributes
properties:
type:
type: string
enum:
- EVENT
- EXTERNAL
- SCHEDULED
example: EVENT
description: The trigger type
attributes:
oneOf:
- $ref: './workflows/trigger-attributes/EventAttributes.yaml'
- $ref: './workflows/trigger-attributes/ExternalAttributes.yaml'
- $ref: './workflows/trigger-attributes/ScheduledAttributes.yaml'
description: Workflow Trigger Attributes.