Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51924,7 +51924,7 @@ components:
- INCIDENT
- RELATION
InputSchema:
description: "A list of input parameters for the workflow. These can be used as dynamic runtime values in your workflow."
description: "A list of input parameters for the workflow. Input parameters are available under the `Trigger` object and can be referenced in workflow steps using `{{ Trigger.<parameter_name> }}`."
properties:
parameters:
description: The `InputSchema` `parameters`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { AttributeTypeMap } from "@datadog/datadog-api-client";
import { InputSchemaParameters } from "./InputSchemaParameters";

/**
* A list of input parameters for the workflow. These can be used as dynamic runtime values in your workflow.
* A list of input parameters for the workflow. Input parameters are available under the `Trigger` object and can be referenced in workflow steps using `{{ Trigger.<parameter_name> }}`.
*/
export class InputSchema {
/**
Expand Down
2 changes: 1 addition & 1 deletion services/workflow_automation/src/v2/models/Spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class Spec {
*/
"handle"?: string;
/**
* A list of input parameters for the workflow. These can be used as dynamic runtime values in your workflow.
* A list of input parameters for the workflow. Input parameters are available under the `Trigger` object and can be referenced in workflow steps using `{{ Trigger.<parameter_name> }}`.
*/
"inputSchema"?: InputSchema;
/**
Expand Down
Loading