swagger-docs/extractor.yaml

43 lines
1.0 KiB
YAML
Raw Normal View History

2020-03-17 16:53:00 +01:00
openapi: 3.0.0
info:
title: Sound feature extraction
2020-03-20 20:08:57 +01:00
version: 1.0.1
2020-03-17 16:53:00 +01:00
servers:
2020-03-17 17:09:54 +01:00
- url: https://dev.k8s.tcloud.enginner/api/extractor/v1
2020-03-17 16:53:00 +01:00
paths:
/sample:
post:
summary: Upload sound file for feature extraction
requestBody:
content:
multipart/form-data:
schema:
type: object
properties:
id:
2020-03-24 17:19:58 +01:00
type: object
2020-03-20 20:07:43 +01:00
properties:
tag:
type: string
2020-03-17 16:53:00 +01:00
soundFile:
type: string
format: binary
responses:
'200':
description: Status message
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Response'
components:
schemas:
Response:
properties:
status:
type: string
description: "Status message from backend."
required:
2020-03-20 20:07:43 +01:00
- status