From 0b62f2629ea691948316ffe9c8b2289c4aee8293 Mon Sep 17 00:00:00 2001 From: Julian Maurice Date: Wed, 7 Oct 2015 14:19:58 +0200 Subject: [PATCH] Bug 13799: Change 'required' value type from string to boolean String is not accepted as a valid value in more recent versions of Swagger2 module --- api/v1/swagger.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/v1/swagger.json b/api/v1/swagger.json index a20cb20..5654dc0 100644 --- a/api/v1/swagger.json +++ b/api/v1/swagger.json @@ -113,7 +113,7 @@ "name": "borrowernumber", "in": "path", "description": "Internal borrower identifier", - "required": "true", + "required": true, "type": "integer" } } -- 1.9.1