I'm trying to implement spec-compliant parameter serialization for OpenAPI cookie parameters.
My only source for this is the docs: https://swagger.io/docs/specification/serialization/#cookie
In the description I'm seeing this line:
An optional explode keyword controls the array and object serialization
However the table below only defines array and object serialization, when explode is false.
What does this mean?:
- Is cookie serialization with
explode=truedefined? If so could you please link docs? - If not, am I correct in saying, that
explode=truebasically "disables" array and object serialization, and has no effect on primitive serialization? - If neither of these, then what is the situation with
explode?
I hope an OpenAPI expert can shed some light on this, thank you!