From 8349141a3c717a44cfa6f8295fa1a78e3b336a13 Mon Sep 17 00:00:00 2001 From: Nick de Vries Date: Thu, 19 Feb 2026 14:10:20 +0100 Subject: [PATCH] :lady_beetle: Allow boolean item reason answer on post return --- specification/schemas/return-orders/ItemReasonQuestion.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/specification/schemas/return-orders/ItemReasonQuestion.json b/specification/schemas/return-orders/ItemReasonQuestion.json index 63fe94b9..cbee58cc 100644 --- a/specification/schemas/return-orders/ItemReasonQuestion.json +++ b/specification/schemas/return-orders/ItemReasonQuestion.json @@ -11,7 +11,10 @@ "description": "A code that identifies the question for the return of this item. See the return-question `code` attribute." }, "answer": { - "type": "string", + "type": [ + "string", + "boolean" + ], "description": "The answer to the question referenced by the code attribute." } }