You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: registries/_format/base64url.md
+3-17
Original file line number
Diff line number
Diff line change
@@ -8,22 +8,8 @@ deprecated_note: '3.1'
8
8
remarks: "When using OpenAPI 3.1 it's recommended not to use this format and instead use [`contentEncoding` with a value of `base64url`](https://json-schema.org/draft/2020-12/json-schema-validation.html#name-contentencoding)."
9
9
---
10
10
11
-
# <ahref="..">{{ page.collection }}</a>
12
-
13
-
## {{ page.slug }} - {{ page.description }}
14
-
15
-
Base type: `{{ page.base_type }}`.
16
-
11
+
{% capture summary %}
17
12
The `{{page.slug}}` format is binary data encoded as a url-safe string as defined in [RFC4648](https://www.rfc-editor.org/rfc/rfc4648#section-5).
The `{{page.slug}}` format represents any sequence of octets. This format entry is to ensure future versions of OpenAPI maintain compatibility with [OpenAPI 3.0.x](https://spec.openapis.org/oas/v3.0.0).
The `{{page.slug}}` format represents any sequence of octets encoded as a base64 string as defined in [RFC4648](https://www.rfc-editor.org/rfc/rfc4648#section-4). This format entry is to ensure future versions of OpenAPI maintain compatibility with [OpenAPI 3.0.x](https://spec.openapis.org/oas/v3.0.0).
The `{{page.slug}}` format represents a date and time as defined by date-time - [RFC3339](https://www.rfc-editor.org/rfc/rfc3339#section-5.6). This format entry is to ensure future versions of OpenAPI maintain compatibility with [OpenAPI 3.0.x](https://spec.openapis.org/oas/v3.0.0).
The `{{page.slug}}` format represents a date as defined by full-date - [RFC3339](https://www.rfc-editor.org/rfc/rfc3339#section-5.6). This format entry is to ensure future versions of OpenAPI maintain compatibility with [OpenAPI 3.0.x](https://spec.openapis.org/oas/v3.0.0).
Copy file name to clipboardExpand all lines: registries/_format/decimal128.md
+3-17
Original file line number
Diff line number
Diff line change
@@ -6,26 +6,12 @@ base_type: [string, number]
6
6
layout: default
7
7
---
8
8
9
-
# <ahref="..">{{ page.collection }}</a>
10
-
11
-
## {{ page.slug }} - {{ page.description }}
12
-
13
-
Base type: `{{ page.base_type }}`.
14
-
9
+
{% capture summary %}
15
10
The `{{page.slug}}` format represents a [128-bit decimal floating-point number](https://en.wikipedia.org/wiki/Decimal128_floating-point_format) as defined by IEEE 754 2008 and ISO/IEC/IEEE 60559:2011.
16
11
17
12
Representation as a JSON string is preferred as this avoids problems with recipients that parse JSON numbers into [binary64](https://en.wikipedia.org/wiki/Double-precision_floating-point_format) memory representation.
18
13
19
14
String representation allows expressing the special values `NaN`, `-INF`, and `INF` that cannot be expressed as JSON numbers.
Copy file name to clipboardExpand all lines: registries/_format/double-int.md
+3-17
Original file line number
Diff line number
Diff line change
@@ -6,24 +6,10 @@ base_type: integer
6
6
layout: default
7
7
---
8
8
9
-
# <ahref="..">{{ page.collection }}</a>
10
-
11
-
## {{ page.slug }} - {{ page.description }}
12
-
13
-
Base type: `{{ page.base_type }}`.
14
-
9
+
{% capture summary %}
15
10
The `{{page.slug}}` format represents an integer that can be stored in an IEEE 754 double-precision number without loss of precision. The range of values is -(2<sup>53</sup>)+1 to (2<sup>53</sup>)-1.
16
11
17
12
This format is useful for systems that need to support languages (such as JavaScript) that store all numeric values as IEEE 754 double-precision numbers.
The `{{page.slug}}` format represents a double precision (64bit) floating point number as defined by [IEEE Std 754-2019](https://ieeexplore.ieee.org/document/8766229). This format entry is to ensure future versions of OpenAPI maintain compatibility with [OpenAPI 3.0.x](https://spec.openapis.org/oas/v3.0.0).
0 commit comments