Skip to content

Commit 80426cc

Browse files
authored
Merge pull request #1060 from johnbartholomew/schema-int64
Fix int64 and uint64 type value ranges
2 parents 278a7d7 + 11bfea2 commit 80426cc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

schema/defs.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
},
1919
"int64": {
2020
"type": "integer",
21-
"minimum": -9223372036854776000,
22-
"maximum": 9223372036854776000
21+
"minimum": -9223372036854775808,
22+
"maximum": 9223372036854775807
2323
},
2424
"uint8": {
2525
"type": "integer",
@@ -39,7 +39,7 @@
3939
"uint64": {
4040
"type": "integer",
4141
"minimum": 0,
42-
"maximum": 18446744073709552000
42+
"maximum": 18446744073709551615
4343
},
4444
"percent": {
4545
"type": "integer",

0 commit comments

Comments
 (0)