{
"openapi": "3.0.0",
"info": {
"title": "Simple Test API",
"version": "1.0.0"
},
"paths": {
"/test": {
"get": {
"operationId": "getTest",
"responses": {
"200": {
"description": "Success",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/TestResponse"
}
}
}
}
}
}
}
},
"components": {
"schemas": {
"TestResponse": {
"type": "object",
"properties": {
"message": {
"type": "string"
}
},
"required": ["message"]
}
}
}
}