From 11bfea26e8d39b1b3ab38942bbd08c8d467fd9ab Mon Sep 17 00:00:00 2001 From: John Bartholomew Date: Thu, 30 Jul 2020 23:58:45 +0100 Subject: [PATCH] Fix int64 and uint64 type value ranges Signed-off-by: John Bartholomew --- schema/defs.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/schema/defs.json b/schema/defs.json index 58b07e656..61e1edefa 100644 --- a/schema/defs.json +++ b/schema/defs.json @@ -18,8 +18,8 @@ }, "int64": { "type": "integer", - "minimum": -9223372036854776000, - "maximum": 9223372036854776000 + "minimum": -9223372036854775808, + "maximum": 9223372036854775807 }, "uint8": { "type": "integer", @@ -39,7 +39,7 @@ "uint64": { "type": "integer", "minimum": 0, - "maximum": 18446744073709552000 + "maximum": 18446744073709551615 }, "percent": { "type": "integer",