From a3ec46714f7c4ce7363bb9edec76edbbdf0e27ec Mon Sep 17 00:00:00 2001 From: Keyur Doshi Date: Mon, 10 Nov 2025 19:27:46 +0530 Subject: [PATCH] matched enum values for service status --- openapi-spec/crapi-openapi-spec.json | 2 +- .../chatbot/src/resources/crapi-openapi-spec.json | 12 ++++++++---- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/openapi-spec/crapi-openapi-spec.json b/openapi-spec/crapi-openapi-spec.json index 08c1a807..38dfb122 100644 --- a/openapi-spec/crapi-openapi-spec.json +++ b/openapi-spec/crapi-openapi-spec.json @@ -3390,7 +3390,7 @@ "type" : "string" }, "status" : { - "enum" : [ "Pending", "Finished" ], + "enum" : [ "pending", "completed", "cancelled", "inprogress" ], "type" : "string" }, "created_on" : { diff --git a/services/chatbot/src/resources/crapi-openapi-spec.json b/services/chatbot/src/resources/crapi-openapi-spec.json index e4aedea5..36d7e76e 100644 --- a/services/chatbot/src/resources/crapi-openapi-spec.json +++ b/services/chatbot/src/resources/crapi-openapi-spec.json @@ -4473,8 +4473,10 @@ }, "status": { "enum": [ - "Pending", - "Finished" + "pending", + "completed", + "cancelled", + "inprogress" ], "type": "string" }, @@ -5315,8 +5317,10 @@ }, "status": { "enum": [ - "Pending", - "Finished" + "pending", + "completed", + "cancelled", + "inprogress" ], "type": "string" },