Skip to content

Commit b903c6f

Browse files
committed
[schema] Corrected wrong ipv4 minLength and maxLength
1 parent ecb0181 commit b903c6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

netjsonconfig/schema.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@
5858
"proto": {"enum": ["static"]},
5959
"family": {"enum": ["ipv4"]},
6060
"address": {
61-
"minLength": 8,
62-
"maxLength": 16,
61+
"minLength": 7,
62+
"maxLength": 15,
6363
"format": "ipv4",
6464
},
6565
"mask": {

0 commit comments

Comments
 (0)