{ "openapi": "3.0.0", "servers": [ { "url": "http://localhost" } ], "paths": { "/": { "get": { "operationId": "getRoot" } } }, "components": { "schemas": { "MyBaseSchema": { "properties": { "name": { "type": "string" } } }, "MyReferredSchema": { "properties": { "baseSchema": { "$ref": "#/components/schemas/MyBaseSchema" } } } } } }