| { | |
| "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" | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| "responses": { | |
| "Refponse": { | |
| "content": { | |
| "*/*": { | |
| "schema": { | |
| "$ref": "#/components/schemas/MyRefSchema" | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } |