{ "openapi" : "3.0.3", "info" : { "title" : "openapi-generator-deduplicate", "version" : "1.0" }, "servers" : [ { "url" : "http://localhost:8080" } ], "paths" : { "/api" : { "get" : { "summary" : "Request", "responses" : { "default" : { "description" : "Response", "content" : { "application/json" : { "schema": { "type": "object", "properties": { "abc": { "type": "object", "description": "first container", "properties": { "result": { "type": "string", "description": "ABC Result" } } }, "def": { "type": "object", "description": "second container", "properties": { "result": { "type": "string", "description": "DEF Result" } } } } } } } } } } } } }