diff --git a/pkg/schema/field/number.go b/pkg/schema/field/number.go
index de96a3f68cc0d452acfd71c63bf0cafe152daad7..68e765784e70606bc9d9a92069c417d9d25a28c7 100644
--- a/pkg/schema/field/number.go
+++ b/pkg/schema/field/number.go
@@ -10,8 +10,8 @@ import (
 const (
 	NumberFormatInt   = "int"
 	NumberFormatFloat = "float"
-	maxInt            = 1<<53 - 1
-	minInt            = -1<<53 + 1
+	maxInt            = 1<<53 - 1  // Integers from в€’9,007,199,254,740,992 to 9,007,199,254,740,992 can be exactly represented in float64.
+	minInt            = -1<<53 + 1 // Integers from в€’9,007,199,254,740,992 to 9,007,199,254,740,992 can be exactly represented in float64.
 )
 
 var numberType = &NumberType{}