{ "openapi": "3.0.0", "info": { "title": "Test API", "version": "1.0.0" }, "paths": { "/resolution": { "get": { "summary": "Get resolution step", "responses": { "200": { "description": "Success", "content": { "application/json": { "schema": { "$ref": "external-with-siblings.json#/components/schemas/ResolutionStep" } } } } } } }, "/action": { "get": { "summary": "Get action info", "responses": { "200": { "description": "Success", "content": { "application/json": { "schema": { "$ref": "external-with-siblings.json#/components/schemas/ActionInfo" } } } } } } } } }