-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopr-0.1-dev.yaml
93 lines (92 loc) · 2.78 KB
/
opr-0.1-dev.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
openapi: 3.0.1
info:
title: 'Overnight Policy Rate (OPR)'
version: '0.1-dev'
description: 'Overnight Policy Rate (OPR) decided by the Monetary Policy Committee'
contact:
name: 'Khairul Fathi'
email: '[email protected]'
servers:
- url: 'https://api.sample.com'
description: 'Production server URL'
- url: 'https://api.test.sample.com'
description: 'Staging server URL'
paths:
/opr:
get:
summary: 'Retrieve latest OPR'
responses:
200:
description: 'Successful response'
content:
application/json:
schema:
title: 'Latest OPR'
type: object
properties:
meta:
type: object
properties:
last_updated:
type: string
format: datetime
data:
type: object
properties:
year:
type: integer
maximum: 4
date:
type: string
format: date
change_in_opr:
type: number
format: float
new_opr_level:
type: number
format: float
/opr/{year}:
get:
summary: 'Retrieve OPR level based on given year'
parameters:
- in: path
name: year
required: true
schema:
type: integer
maximum: 4
description: 'Year in numeric four digits'
responses:
200:
description: 'Successful response'
content:
application/json:
schema:
title: 'Latest Base Rate All Banks'
type: object
properties:
meta:
type: object
properties:
last_updated:
type: string
format: datetime
data:
type: array
items:
type: object
properties:
year:
type: integer
maximum: 4
date:
type: string
format: date
change_in_opr:
type: number
format: float
new_opr_level:
type: number
format: float
404:
description: 'Result not found'