-
Notifications
You must be signed in to change notification settings - Fork 0
/
swagger.yaml
68 lines (68 loc) · 1.52 KB
/
swagger.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
openapi: 3.0.0
info:
title: 'Rate api'
version: 1.0.0
servers:
-
url: api
description: Server
paths:
/rates:
post:
tags:
- Rates
description: 'get rates'
operationId: 03d9dbd02e72a244807f09fa81056d65
requestBody:
$ref: '#/components/requestBodies/GetRateRequest'
responses:
'200':
description: Ok
content:
application/json:
schema:
properties:
data: { $ref: '#/components/schemas/RateResource' }
type: object
components:
schemas:
GetRateRequest:
required:
- date
- currencyCode
properties:
date:
description: date
type: string
format: date
example: '2017-07-21'
currencyCode:
description: 'currency code'
type: string
format: currency
example: RUB
baseCurrencyCode:
description: 'base currency code'
type: string
format: currency
example: RUB
type: object
RateResource:
properties:
rate:
description: rate
type: number
format: float
example: '99.11'
difference:
description: difference
type: number
format: float
example: '1.1'
type: object
requestBodies:
GetRateRequest:
content:
application/json:
schema:
$ref: '#/components/schemas/GetRateRequest'