JSONPODIntValue:number | { int: number | string; }
JSONPODValue type for int entries. These can be most simply
encoded as a JSON number, but only if they are in the range between
Number.MIN_SAFE_INTEGER and Number.MAX_SAFE_INTEGER where no accuracy
is lost. Larger positive/negative values must be stringified and use one of
the other encodings to specify value type. Any string encoding accepted by
BigInt(s) is acceptable.
JSONPODValue type for int entries. These can be most simply encoded as a JSON number, but only if they are in the range between
Number.MIN_SAFE_INTEGER
andNumber.MAX_SAFE_INTEGER
where no accuracy is lost. Larger positive/negative values must be stringified and use one of the other encodings to specify value type. Any string encoding accepted byBigInt(s)
is acceptable.