-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathapi.yaml
68 lines (68 loc) · 1.79 KB
/
api.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
swagger: '2.0'
info:
description: 'API para análise de fala e recomendação de carros da FCA'
version: '2.0.0'
title: 'Desafio 8 - Maratona Behind the Code API'
tags:
- name: 'Recomendação'
description: 'Análise de fala e recomendação de carro'
schemes:
- 'http'
paths:
/api/recommend:
post:
tags:
- 'Recomendação'
summary: 'Analisa críticas contidas em um arquivo de áudio ou em um texto e recomenda um carro da FCA dependendo das críticas.'
description: ''
consumes:
- 'multipart/form-data'
produces:
- 'application/json'
parameters:
- name: 'car'
in: 'formData'
description: 'Nome do carro sobre o qual o comentário ou crítica é feito.'
required: true
type: 'string'
- name: 'text'
in: 'formData'
description: 'Texto contendo uma crítica ou comentário sobre um carro.'
required: false
type: 'string'
- name: 'audio'
in: 'formData'
description: 'Áudio em formato FLAC contendo uma crítica ou comentário sobre um carro.'
required: false
type: 'file'
responses:
200:
description: 'Operação sucedida'
schema:
$ref: '#/definitions/Result'
definitions:
Entity:
type: 'object'
properties:
entity:
type: 'string'
example: 'desempenho'
sentiment:
type: 'number'
example: -0.95
mention:
type: 'string'
example: 'motor'
Result:
type: 'object'
required:
- 'entities'
properties:
recommendation:
type: 'string'
example: 'Fiat Argo'
entities:
type: 'array'
items:
$ref: '#/definitions/Entity'