From 9c1001ac33860960481881f6b9edff0ca2e08e7a Mon Sep 17 00:00:00 2001 From: glywk Date: Sun, 12 Jan 2025 16:19:13 +0100 Subject: [PATCH] Fix avro to JSON type mapping specification --- doc/content/en/docs/++version++/Specification/_index.md | 2 +- doc/content/en/docs/1.11.1/Specification/_index.md | 2 +- doc/content/en/docs/1.11.2/Specification/_index.md | 2 +- doc/content/en/docs/1.11.3/Specification/_index.md | 2 +- doc/content/en/docs/1.11.4/Specification/_index.md | 2 +- doc/content/en/docs/1.12.0/Specification/_index.md | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/content/en/docs/++version++/Specification/_index.md b/doc/content/en/docs/++version++/Specification/_index.md index 950bae11762..6fee7302c63 100755 --- a/doc/content/en/docs/++version++/Specification/_index.md +++ b/doc/content/en/docs/++version++/Specification/_index.md @@ -86,7 +86,7 @@ Records use the type name "record" and support the following attributes: |---------------|----------------|-------------| | null | null | `null` | | boolean | boolean | `true` | -| int,long | integer | `1` | +| int,long | number | `1` | | float,double | number | `1.1` | | bytes | string | `"\u00FF"` | | string | string | `"foo"` | diff --git a/doc/content/en/docs/1.11.1/Specification/_index.md b/doc/content/en/docs/1.11.1/Specification/_index.md index 49bdaf77f17..8a7a2f51a90 100755 --- a/doc/content/en/docs/1.11.1/Specification/_index.md +++ b/doc/content/en/docs/1.11.1/Specification/_index.md @@ -83,7 +83,7 @@ Records use the type name "record" and support the following attributes: |---------------|----------------|-------------| | null | null | `null` | | boolean | boolean | `true` | -| int,long | integer | `1` | +| int,long | number | `1` | | float,double | number | `1.1` | | bytes | string | `"\u00FF"` | | string | string | `"foo"` | diff --git a/doc/content/en/docs/1.11.2/Specification/_index.md b/doc/content/en/docs/1.11.2/Specification/_index.md index df641e2db69..e317b94ef2a 100755 --- a/doc/content/en/docs/1.11.2/Specification/_index.md +++ b/doc/content/en/docs/1.11.2/Specification/_index.md @@ -83,7 +83,7 @@ Records use the type name "record" and support the following attributes: |---------------|----------------|-------------| | null | null | `null` | | boolean | boolean | `true` | -| int,long | integer | `1` | +| int,long | number | `1` | | float,double | number | `1.1` | | bytes | string | `"\u00FF"` | | string | string | `"foo"` | diff --git a/doc/content/en/docs/1.11.3/Specification/_index.md b/doc/content/en/docs/1.11.3/Specification/_index.md index 7cc5a17547e..5fdabdc875d 100755 --- a/doc/content/en/docs/1.11.3/Specification/_index.md +++ b/doc/content/en/docs/1.11.3/Specification/_index.md @@ -85,7 +85,7 @@ Records use the type name "record" and support the following attributes: |---------------|----------------|-------------| | null | null | `null` | | boolean | boolean | `true` | -| int,long | integer | `1` | +| int,long | number | `1` | | float,double | number | `1.1` | | bytes | string | `"\u00FF"` | | string | string | `"foo"` | diff --git a/doc/content/en/docs/1.11.4/Specification/_index.md b/doc/content/en/docs/1.11.4/Specification/_index.md index 7cc5a17547e..5fdabdc875d 100755 --- a/doc/content/en/docs/1.11.4/Specification/_index.md +++ b/doc/content/en/docs/1.11.4/Specification/_index.md @@ -85,7 +85,7 @@ Records use the type name "record" and support the following attributes: |---------------|----------------|-------------| | null | null | `null` | | boolean | boolean | `true` | -| int,long | integer | `1` | +| int,long | number | `1` | | float,double | number | `1.1` | | bytes | string | `"\u00FF"` | | string | string | `"foo"` | diff --git a/doc/content/en/docs/1.12.0/Specification/_index.md b/doc/content/en/docs/1.12.0/Specification/_index.md index 75eda7b7f62..483476820cd 100644 --- a/doc/content/en/docs/1.12.0/Specification/_index.md +++ b/doc/content/en/docs/1.12.0/Specification/_index.md @@ -85,7 +85,7 @@ Records use the type name "record" and support the following attributes: |---------------|----------------|-------------| | null | null | `null` | | boolean | boolean | `true` | -| int,long | integer | `1` | +| int,long | number | `1` | | float,double | number | `1.1` | | bytes | string | `"\u00FF"` | | string | string | `"foo"` |