mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-09 12:27:48 +00:00
34 lines
1004 B
YAML
34 lines
1004 B
YAML
type: object
|
|
properties:
|
|
workflow_id:
|
|
type: string
|
|
format: uuid
|
|
required: true
|
|
description: The workflow the workflow action belongs to.
|
|
example: 33f072dd-13b4-41e1-8ea0-16f2a59b57c8
|
|
description:
|
|
type: string
|
|
required: true
|
|
description: The description of the workflow action.
|
|
example: Allows a user to select an already existing profile, or create a new one for the request.
|
|
search_scope:
|
|
type: string
|
|
required: true
|
|
enum: ["all", "current"]
|
|
description: The search scope of the profiles to check against.
|
|
example: "current"
|
|
ne_attribute_ids:
|
|
type: array
|
|
required: false
|
|
description: An array of ne_attribute_ids.
|
|
example: ["33f072dd-13b4-41e1-8ea0-16f2a59b57c8"]
|
|
handle_id:
|
|
type: string
|
|
required: false
|
|
description: The handle id.
|
|
example: 33f072dd-13b4-41e1-8ea0-16f2a59b57c8
|
|
archived:
|
|
type: boolean
|
|
default: false
|
|
description: If the workflow action is archived or not.
|
|
example: false |