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" },