General Guidance for how to handle Integers greater than 64 bits? #1084
-
Is there any general guidance on how to use the frictionless schema when it comes to representing fields that are It seems maybe the I was considering the use of Any advice in this space? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
I've bumped into this problem before but never found any general advice. For my use case at the time ended up creating a custom boolean |
Beta Was this translation helpful? Give feedback.
-
My understanding of the specifications is that the It's common practice to extend the set of accepted format values for integers with options like |
Beta Was this translation helpful? Give feedback.
My understanding of the specifications is that the
integer
type does not define the size of the integer. If you want to specify the size, there's no need to create a new type: you can use the format field instead.It's common practice to extend the set of accepted format values for integers with options like
i8
,i16
,i32
,i64
, ori128
.