diff --git a/OpenAPI/kiota/serialization.md b/OpenAPI/kiota/serialization.md index 5907d0a..c1a427e 100644 --- a/OpenAPI/kiota/serialization.md +++ b/OpenAPI/kiota/serialization.md @@ -194,8 +194,8 @@ The table below describes the mapping between [OpenAPI type-format pairs](https: | OpenAPI type | OpenAPI format | C# Type | Go Type | Java Type | TypeScript Type | PHP Type | Python Type | Default Mapping for OpenAPI Type | | ------------ | -------------- | ------- | ------- | --------- | --------------- | -------- | ----------- | ------- | -| number | [uint8](https://spec.openapis.org/registry/format/uint8.html) | [sbyte](/dotnet/api/system.sbyte) | [int8](https://pkg.go.dev/builtin#int8) | [Short](https://docs.oracle.com/javase/8/docs/api/java/lang/Short.html) | [number](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number) | [int](https://www.php.net/manual/en/language.types.integer.php) | [int](https://docs.python.org/3/library/functions.html#int) | | -| number | [int8](https://spec.openapis.org/registry/format/int8.html) | [byte](/dotnet/api/system.byte) | [int8](https://pkg.go.dev/builtin#int8) | [Byte](https://docs.oracle.com/javase/8/docs/api/java/lang/Short.html) | [number](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number) | [int](https://www.php.net/manual/en/language.types.integer.php) | [int](https://docs.python.org/3/library/functions.html#int) | | +| number | [uint8](https://spec.openapis.org/registry/format/uint8.html) | [byte](/dotnet/api/system.byte) | [int8](https://pkg.go.dev/builtin#int8) | [Short](https://docs.oracle.com/javase/8/docs/api/java/lang/Short.html) | [number](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number) | [int](https://www.php.net/manual/en/language.types.integer.php) | [int](https://docs.python.org/3/library/functions.html#int) | | +| number | [int8](https://spec.openapis.org/registry/format/int8.html) | [sbyte](/dotnet/api/system.sbyte) | [int8](https://pkg.go.dev/builtin#int8) | [Byte](https://docs.oracle.com/javase/8/docs/api/java/lang/Short.html) | [number](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number) | [int](https://www.php.net/manual/en/language.types.integer.php) | [int](https://docs.python.org/3/library/functions.html#int) | | | number | [int32](https://spec.openapis.org/registry/format/int32.html) | [int32/int](/dotnet/api/system.int32) | [int32](https://pkg.go.dev/builtin#int32) | [Integer](https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html) | [number](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number) | [int](https://www.php.net/manual/en/language.types.integer.php) | [int](https://docs.python.org/3/library/functions.html#int) | | | number | [int64](https://spec.openapis.org/registry/format/int64.html) | [int64/long](/dotnet/api/system.int32) | [int64](https://pkg.go.dev/builtin#int64) | [Long](https://docs.oracle.com/javase/8/docs/api/java/lang/Long.html) | [number](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number) | [int](https://www.php.net/manual/en/language.types.integer.php) | [int](https://docs.python.org/3/library/functions.html#int) | | | number | [float](https://spec.openapis.org/registry/format/float.html) | [float/single](/dotnet/api/system.single) | [float32](https://pkg.go.dev/builtin#float32) | [Float](https://docs.oracle.com/javase/8/docs/api/java/lang/Float.html) | [number](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number) | [float](https://www.php.net/manual/en/language.types.float.php) | [float](https://docs.python.org/3/library/functions.html#float) | |