Skip to content

Commit

Permalink
Put exchange response in exchange key.
Browse files Browse the repository at this point in the history
  • Loading branch information
BigBlueHat committed Oct 29, 2024
1 parent 7b4a55a commit dd9a482
Showing 1 changed file with 32 additions and 28 deletions.
60 changes: 32 additions & 28 deletions exchanges.yml
Original file line number Diff line number Diff line change
Expand Up @@ -386,35 +386,39 @@ components:
additionalProperties: false
description: Object containing information about an active exchange.
properties:
exchangeId:
type: string
description: The URL that uniquely identifies the exchange.
ttl:
type: string
description: The time to live for the exchange.
nextStep:
type: string
description: The interaction the exchange is expecting to happen next.
completedSteps:
type: array
description: The steps completed by the exchange previously.
items:
type: string
state:
type: string
description: The status ("pending" | "complete" | "invalid") of the exchange, set to "pending" on creation.
variables:
type: array
description: Template variables to be used in the exchange.
items:
type: object
properties:
type:
type: string
description: The type of template.
template:
exchange:
type: object
description: The active exchange.
properties:
exchangeId:
type: string
description: The URL that uniquely identifies the exchange.
ttl:
type: string
description: The time to live for the exchange.
nextStep:
type: string
description: The interaction the exchange is expecting to happen next.
completedSteps:
type: array
description: The steps completed by the exchange previously.
items:
type: string
description: The template itself.
state:
type: string
description: The status ("pending" | "complete" | "invalid") of the exchange, set to "pending" on creation.
variables:
type: array
description: Template variables to be used in the exchange.
items:
type: object
properties:
type:
type: string
description: The type of template.
template:
type: string
description: The template itself.
WorkflowStep:
type: object
description: Object containing information about a workflow step.
Expand Down

0 comments on commit dd9a482

Please sign in to comment.