OpenAPI.NET
OpenAPI.NET copied to clipboard
Support ability to merge objects in OpenAPI.NET. for example merge requests, payloads..
Can you clarify that you mean create a merged document by unioning the components from one document with the components from another document? Merging of objects means something very different and we are not likely to do that.
In Dev Proxy we offer the ability to generate OpenAPI specs from intercepted requests and responses. Say, we intercept a request to /v1.0/me?$select=id,name
and then another to /v1.0/me?$select=name,phone
. We'd like to be able to merge both responses into one with 3 properties: id, name and phone.