{ "openapi": "3.0.1", "info": { "title": "printservice", "version": "1.0" }, "paths": { "/api/printer/list": { "get": { "tags": [ "Printer" ], "responses": { "200": { "description": "OK" } } } }, "/api/printer/get-local-ip": { "get": { "tags": [ "Printer" ], "responses": { "200": { "description": "OK" } } } }, "/api/printer/print-ticket": { "post": { "tags": [ "Printer" ], "requestBody": { "content": { "multipart/form-data": { "schema": { "type": "object", "properties": { "file": { "type": "string", "format": "binary" }, "printerName": { "type": "string" } } }, "encoding": { "file": { "style": "form" }, "printerName": { "style": "form" } } } } }, "responses": { "200": { "description": "OK" } } } } }, "components": { } }