{ "openapi": "3.0.1", "info": { "title": "Alex's Service", "description": "Test service", "version": "1.0" }, "paths": { "/": { "get": { "operationId": "GetMargin", "responses": { "200": { "description": "Ok", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/Margin" } } } } } } } }, "components": { "schemas": { "Margin": { "type": "object", "properties": { "Left": { "minimum": 100.5, "type": "number", "format": "float" }, "Top": { "type": "number", "format": "float" }, "Right": { "type": "number", "format": "float" }, "Bottom": { "type": "number", "format": "float" } } } } } }