-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenapi.yaml
231 lines (231 loc) · 5.74 KB
/
openapi.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
openapi: 3.0.3
info:
title: School OpenApi
description: |
School management app using CBOR as PoC. More at [https://school.vymalo.com](https://school.vymalo.com)
termsOfService: https://school.vymalo.com/res/tos
contact:
email: [email protected]
name: Vymalo School Team
license:
name: MIT
version: 0.1.0
externalDocs:
description: |
Find out more about Managing your school from afar. Let's meet on
our website 😉.
url: https://school.vymalo.com
servers:
- url: '{scheme}://{host}:{port}'
description: Random Server
variables:
scheme:
enum:
- http
- https
default: http
host:
enum:
- localhost
- 0.0.0.0
default: localhost
port:
enum:
- '3000'
- '8080'
- '80'
- '443'
default: '3000'
- url: https://{env}.vymalo.com
description: Vymalo Environment
variables:
env:
enum:
- school
- school-dev
default: school-dev
tags:
- name: school
description: All about managing School
paths:
/api/schools:
post:
tags:
- school
summary: Create school
description: |
Create a school. This just start the process. In fact, a school
needs to be validated from the admin site and get the approval of
the admins and now we shall also validate with the complete it
using the `updateSchool` method
operationId: createSchool
security:
- kc_auth: []
requestBody:
description: Send sms request
content:
application/json:
schema:
$ref: '#/components/schemas/SimpleSchool'
required: true
responses:
200:
description: 'successful operation'
content:
application/json:
schema:
$ref: '#/components/schemas/School'
400:
description: 'wrong content provided'
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
500:
description: 'Internal server'
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
get:
tags:
- school
summary: Get schools
description: |
This endpoint is mainly for administrators. This help in fetching
all schools in the system.
operationId: getSchools
responses:
200:
description: 'successful operation'
content:
application/json:
schema:
$ref: '#/components/schemas/PageResponseSchool'
400:
description: 'wrong content provided'
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
500:
description: 'Internal server'
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/api/schools/{id}:
get:
tags:
- school
summary: Get single schools
description: |
Get a single School. This might return 4xx or 5xx if the user
doesn't have the right to view it.
operationId: getSingleSchool
parameters:
- in: path
name: id
required: true
schema:
type: string
format: cuid
responses:
200:
description: 'successful operation'
content:
application/json:
schema:
$ref: '#/components/schemas/School'
400:
description: 'wrong content provided'
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
500:
description: 'Internal server'
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
components:
schemas:
Error:
type: object
properties:
message:
type: string
code:
type: number
required:
- message
- code
School:
allOf:
- $ref: '#/components/schemas/Model'
- $ref: '#/components/schemas/SimpleSchool'
SimpleSchool:
type: object
properties:
name:
type: string
contact:
$ref: '#/components/schemas/SchoolContact'
required:
- name
- contact
Model:
type: object
properties:
id:
type: string
format: cuid
createdAt:
type: string
format: date
updatedAt:
type: string
format: date
required:
- id
SchoolContact:
type: object
properties:
name:
type: string
phoneNumber:
type: string
required:
- name
- phoneNumber
PageResponse:
type: object
properties:
page:
type: number
offset:
type: number
required:
- name
- phoneNumber
PageResponseSchool:
allOf:
- $ref: '#/components/schemas/PageResponse'
- type: object
properties:
items:
type: array
maxItems: 100
items:
$ref: '#/components/schemas/School'
securitySchemes:
kc_auth:
type: oauth2
flows:
implicit:
authorizationUrl: https://accounts.ssegning.com/realms/konk/protocol/openid-connect/auth
scopes: {}
password:
tokenUrl: https://accounts.ssegning.com/realms/konk/protocol/openid-connect/token
scopes: {}