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
|`"base64"`| Encoding scheme using a 64-character hexadecimal alphabet |[RFC 4648 Section 4](https://datatracker.ietf.org/doc/html/rfc4648#section-4)|
74
+
|`"base32"`| Encoding scheme using a 32-character hexadecimal alphabet |[RFC 4648 Section 6](https://datatracker.ietf.org/doc/html/rfc4648#section-6)|
75
+
|`"base16"`| Encoding scheme using a 16-character hexadecimal alphabet |[RFC 4648 Section 8](https://datatracker.ietf.org/doc/html/rfc4648#section-8)|
71
76
|`"7bit"`| Encoding scheme that constrains ASCII to disallow octets greater than 127, disallow `NUL`, and restricts `CR` and `LF` to `CRLF` sequences |[RFC 2045 Section 2.7](https://datatracker.ietf.org/doc/html/rfc2045#section-2.7)|
72
77
|`"8bit"`| Encoding scheme that constrains ASCII to permit octets greater than 127, disallow `NUL`, and restrict `CR` and `LF` to `CRLF` sequences |[RFC 2045 Section 2.8](https://datatracker.ietf.org/doc/html/rfc2045#section-2.8)|
73
78
|`"binary"`| Encoding scheme where any sequence of octets is allowed |[RFC 2045 Section 2.9](https://datatracker.ietf.org/doc/html/rfc2045#section-2.9)|
74
79
|`"quoted-printable"`| Encoding scheme that preserves ASCII printable characters and escapes the rest using a simple algorithm based on an hexadecimal alphabet |[RFC 2045 Section 6.7](https://datatracker.ietf.org/doc/html/rfc2045#section-6.7)|
75
-
|`"base64"`| Encoding scheme using a 64-character hexadecimal alphabet |[RFC 2045 Section 6.8](https://datatracker.ietf.org/doc/html/rfc2045#section-6.8)|
80
+
81
+
{{<constraint-warning `string`>}}
76
82
77
83
## Examples
78
84
79
-
{{<schema `Schema with 'contentEncoding' keyword`>}}
85
+
{{<schema `A schema that describes arbitrary data encoded using Base 64`>}}
0 commit comments