blob: 8e3ba24da66380b0114186570c04a2d1cc45b368 [file] [log] [blame]
{
"openapi": "3.0.3",
"info": {
"title": "Generated API",
"version": "1.0"
},
"paths": {
"/": {
"post": {
"operationId": "doOperation",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SubtractionOperation"
}
}
}
},
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"difference": {
"format": "float",
"type": "number"
}
}
}
}
}
}
}
}
}
},
"components": {
"schemas": {
"SubtractionOperation": {
"type": "object",
"properties": {
"leftElement": {
"format": "float",
"type": "number"
},
"rightElement": {
"format": "float",
"type": "number"
}
}
}
}
}
}