{ "openapi": "3.0.0", "servers": [ { "url": "http://localhost" } ], "paths": { "/": { "get": { "operationId": "getRoot" } } }, "components": { "schemas": { "MyBaseSchema": { "properties": { "name": { "type": "string" } } }, "MyRefSchema": { "properties": { "baseSchemas": { "type": "array", "items": { "$ref": "#/components/schemas/MyBaseSchema" } } } } }, "requestBodies": { "MyBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/MyRefSchema" } } } } } } }