OpenAPI path/query parameters nested structure serialization

Short answer: It’s undefined behavior. Most OpenAPI serialization styles are based on RFC 6570, which provides guidance only for: primitive values, arrays of primitives, simple non-nested objects (with primitive properties). In case of other types of values (nested objects, objects containing arrays, nested arrays, arrays of objects) the behavior is undefined. Similarly, OpenAPI’s own deepObject … Read more