From 526c2d1fe7a46189e01b1ce35744166d3627700c Mon Sep 17 00:00:00 2001 From: Federico Capoano Date: Mon, 21 Mar 2016 18:33:09 +0100 Subject: [PATCH] [schema] Added minLength and maxLength to wireless "bssid" property --- netjsonconfig/schema.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/netjsonconfig/schema.py b/netjsonconfig/schema.py index 0c7a7d6b6..224d97ec9 100644 --- a/netjsonconfig/schema.py +++ b/netjsonconfig/schema.py @@ -333,6 +333,8 @@ "bssid": { "type": "string", "propertyOrder": 6, + "minLength": 17, + "maxLength": 17, }, } },