swagger: "2.0" info: description: "This is the feature extraction interface of the Birbnetes system." version: "1.0.5" title: "Extractor Service" contact: email: "tormakristof@tormakristof.eu" license: name: "Apache 2.0" url: "http://www.apache.org/licenses/LICENSE-2.0.html" host: "dev.k8s.tcloud.enginner" basePath: "/api/extractor/v1" tags: - name: "extractor" description: "Extractor Service interaction" schemes: - "https" - "http" paths: /audo: post: tags: - "extractor" summary: "uploads a sample into the system" description: "" operationId: "uploadFile" consumes: - "multipart/form-data" produces: - "application/json" parameters: - name: "tag" in: "formData" description: "Tag of sound file" required: true type: "string" - name: "file" in: "formData" description: "Wave file to upload" required: true type: "file" responses: 200: description: "successful operation" schema: $ref: "#/definitions/ApiResponse" definitions: ApiResponse: type: "object" properties: status: type: "string" message: type: "string"