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
The `SimpleRestJson` protocol supports 3 different union encodings :
76
76
77
-
- tagged (default)
78
-
- untagged
79
-
- discriminated
77
+
* tagged (default)
78
+
* untagged
79
+
* discriminated
80
80
81
81
See the section about [unions](../../04-codegen/02-unions.md) for a detailed description.
82
82
83
83
## Json Array Arity
84
84
85
-
- By default there is a limit on the arity of an array, which is 1024. This is to prevent the server from being overloaded with a large array as this is a vector for attacks.
86
-
- This limit can be changed by setting the maxArity `smithy4s.http4s.SimpleRestJsonBuilder.withMaxArity(.)` to the desired value.
87
-
- an example can be seen in the [client example](03-client.md)
85
+
* By default there is a limit on the arity of an array, which is 1024. This is to prevent the server from being overloaded with a large array as this is a vector for attacks.
86
+
* This limit can be changed by setting the maxArity `smithy4s.http4s.SimpleRestJsonBuilder.withMaxArity(.)` to the desired value.
87
+
* an example can be seen in the [client example](03-client.md)
0 commit comments