From 89d38666cb6f8a5175a699f2cedc2c1a16eb6009 Mon Sep 17 00:00:00 2001 From: Charles d'Avernas Date: Thu, 15 Feb 2024 16:16:55 +0100 Subject: [PATCH] fix(Schemas): Fixed the errors.json schema Signed-off-by: Charles d'Avernas --- schema/errors.json | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/schema/errors.json b/schema/errors.json index fac72e0b..ff54af98 100644 --- a/schema/errors.json +++ b/schema/errors.json @@ -112,8 +112,15 @@ "type":"string" }, "status":{ - "type":"string" - } + "oneOf": [ + { + "type":"string" + }, + { + "type": "integer" + } + ] + } }, "minProperties":1, "additionalProperties":false