From 7b4a55ad4d8bc52ca4983d61a7a2bf3c9df797b1 Mon Sep 17 00:00:00 2001 From: BigBlueHat Date: Tue, 29 Oct 2024 16:04:23 -0400 Subject: [PATCH] Add `state` & `variables` to GetExhangeResponse. --- exchanges.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/exchanges.yml b/exchanges.yml index 87573e0..b26e9a4 100644 --- a/exchanges.yml +++ b/exchanges.yml @@ -400,6 +400,21 @@ components: 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: + type: string + description: The template itself. WorkflowStep: type: object description: Object containing information about a workflow step.