From de98ae68ac059c33d269ddf0e7078ae1e76b9b2c Mon Sep 17 00:00:00 2001 From: Federico Capoano Date: Thu, 24 Mar 2016 16:03:53 +0100 Subject: [PATCH] [schema] Fixed interface minLength attribute --- netjsonconfig/schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netjsonconfig/schema.py b/netjsonconfig/schema.py index fa90bfc9b..1b2fbc18f 100644 --- a/netjsonconfig/schema.py +++ b/netjsonconfig/schema.py @@ -134,8 +134,8 @@ "properties": { "name": { "type": "string", + "minLength": 2, "maxLength": 15, - "minLenght": 2, "pattern": "^[^\\s]*$", "propertyOrder": 0, },