-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApi_documentation.yml
628 lines (628 loc) · 16.8 KB
/
Api_documentation.yml
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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
openapi: 3.0.0
info:
title: LOCATE_NIGERIA_API
description: An API that helps developers know more about Nigeria. The API shows all of Nigeria's regions, states and local government areas
contact:
name: Osamuyi
email: [email protected]
version: '1.0'
servers:
- url: https://locate-nigeria.onrender.com/api/v1
variables: {}
paths:
/developer/register:
post:
tags:
- Auth User
summary: Register new user
description: Register's regular users, and responds with an API key for the user to access all read-only(GET) routes
operationId: Registernewuser
parameters: []
requestBody:
description: To register a new user, provide a name, unique email and password
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/RegisternewuserRequest'
example:
name: smart
password: secret
email: [email protected]
required: true
responses:
'200':
description: ''
headers: {}
'404':
description: Please, all fields are required
deprecated: false
security: []
/location/states:
get:
tags:
- States
summary: Get All states
description: Returns all the states in Nigeria, irrespective of region
operationId: GetAllstates
parameters:
- name: Gets all states in the country
in: query
description: Returns all the states
required: true
style: form
explode: true
schema:
type: string
example: https://locate-nigeria.onrender.com/api/v1/location/states
- name: limit
in: query
description: Determine the amount of document(s) to be displayed per page
style: form
explode: true
schema:
type: string
default: '3'
example: https://locate-nigeria.onrender.com/api/v1/location/states?limit=2
- name: Fields
in: query
description: To return some specific fields in the response.
style: form
explode: true
schema:
type: string
example: https://locate-nigeria.onrender.com/api/v1/location/states?fields=regionName,LGA
- name: numericFilters
in: query
description: Returns all states that meets the filter criteria
style: form
explode: true
schema:
type: string
example: https://locate-nigeria.onrender.com/api/v1/location/states?numericFilters=population>=8000000
- name: sort
in: query
description: Sorts the returned object either in ascending or descending order
style: form
explode: true
schema:
type: string
example: https://locate-nigeria.onrender.com/api/v1/location/states?sort=-population
- name: stateName
in: query
description: Returns state whose name is defined
style: form
explode: true
schema:
type: string
example: https://locate-nigeria.onrender.com/api/v1/location/states?stateName=lagos
- name: LGA
in: query
description: Search for a local government area by its name
style: form
explode: true
schema:
type: string
example: https://locate-nigeria.onrender.com/api/v1/states?LGA=ikpoba
responses:
'200':
description: ''
headers: {}
deprecated: false
/location/state/{stateId}:
get:
tags:
- States
summary: Get State By Id
description: Returns a specific state whose ID matches the entered value
operationId: GetStateById
parameters:
- in: path
name: stateId
description: ''
required: true
style: simple
explode: true
schema:
type: string
pattern: ^[0-9a-fA-F]{24}$
responses:
'200':
description: ''
headers: {}
'404':
description: Id {id} is not valid
content:
application/json:
schema: {}
deprecated: false
security:
- apiAccessKey: []
/create/region:
post:
tags:
- Admin write access
summary: Create Region
description: Creates each region, this route is protected and can only be accessed by an admin user.
operationId: CreateRegion
parameters: []
requestBody:
description: Creates a region based on the value provided in the body field
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/CreateRegionRequest'
- description: Creates a region based on the value provided in the body field
required: true
responses:
'200':
description: ''
headers: {}
content:
text/plain:
schema:
type: object
'401':
description: User is not authorized
'404':
description: Duplicate key value
content:
application/json:
schema: {}
deprecated: false
servers:
- url: https://locate-nigeria.onrender.com/api/v1
variables: {}
/create/state/region_name:
post:
tags:
- Admin write access
summary: Create State
description: This creates states. But this endpoint can only be accessed by an authorized admin user.
operationId: CreateState
requestBody:
description: Creates a state based on the provided fields in the body field.
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/CreateStateRequest'
- description: Creates a state based on the provided fields in the body field.
example:
stateName: Sokoto State
state_metadata:
capital: Sokoto
coordintes:
latitude: 13.0611194996857
longitude: 5.3152203
population: 11500456
lgas:
- Bodinga
- Dange Shuni
- Gada
- Goronyo
- Gudu
- Gwadabawa
- Illela
- Isa
- Kebbe
- Kware
- Rabah
- Sabon Birni
- Shagari
- Silame
- Sokoto North
- Sokoto South
- Tambuwal
- Tangaza
- Tureta
- Wamako
- Wurno
- Yabo
example:
stateName: Sokoto State
state_metadata:
capital: Sokoto
coordintes:
latitude: 13.0611194996857
longitude: 5.3152203
population: 11500456
lgas:
- Bodinga
- Dange Shuni
- Gada
- Goronyo
- Gudu
- Gwadabawa
- Illela
- Isa
- Kebbe
- Kware
- Rabah
- Sabon Birni
- Shagari
- Silame
- Sokoto North
- Sokoto South
- Tambuwal
- Tangaza
- Tureta
- Wamako
- Wurno
- Yabo
required: true
responses:
'200':
description: ''
headers: {}
'401':
description: User is unathorized
content:
application/json:
schema: {}
'404':
description: Duplicate key value
content:
application/json:
schema: {}
deprecated: false
servers:
- url: https://locate-nigeria.onrender.com/api/v1
variables: {}
/location/regions:
get:
tags:
- Regions
summary: Get All Regions
description: Gets all the regions in the country
operationId: GetAllRegions
parameters:
- name: page
in: query
description: Pagination, to determine which page to display, you enter the page number
style: form
explode: true
schema:
type: string
example: https://locate-nigeria.onrender.com/api/v1/location/regions?page=3
- name: limit
in: query
description: Determine the amount of document(s) to be displayed per page
style: form
explode: true
schema:
type: string
example: https://locate-nigeria.onrender.com/api/v1/location/regions?limit=2
- name: Fields
in: query
description: To return some specific fields in the response.
style: form
explode: true
schema:
type: string
example: https://locate-nigeria.onrender.com/api/v1/location/regions?fields=regionName,size,population
responses:
'200':
description: ''
headers: {}
'500':
description: Something went wrong, please try again later
content:
application/json:
schema: {}
deprecated: false
security:
- apiAccessKey: []
/location/region/{regionId}:
get:
tags:
- Regions
summary: Get Region
description: Returns specific regions whose ID matched and the states under the region
operationId: GetRegion
parameters:
- in: path
name: regionId
description: ''
required: true
style: simple
explode: true
schema:
type: string
pattern: ^[0-9a-fA-F]{24}$
responses:
'200':
description: Returns region with given Id
headers: {}
'404':
description: Id {id} is not valid
content:
application/json:
schema: {}
deprecated: false
security:
- apiAccessKey: []
/developer/login/admin:
post:
tags:
- Auth Admin
summary: Admin Login
description: Log in to the API as an admin user, a Jwt token will be returned to provide the admin user access to some write access.
operationId: AdminLogin
parameters: []
requestBody:
description: Provide email and password for authentication, in order to be able to get write access
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/AdminLoginRequest'
- description: Provide email and password for authentication, in order to be able to get write access
example:
email: [email protected]
password: secretkey
example:
email: [email protected]
password: secretkey
required: true
responses:
'200':
description: ''
headers: {}
'404':
description: Invalid Credentials
content:
application/json:
schema: {}
deprecated: false
security: []
/developer/register/admin:
post:
tags:
- Auth Admin
summary: Register Admin User
description: Register's admin user.
operationId: RegisterAdminUser
parameters: []
requestBody:
description: To register an admin user,
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/RegisternewuserRequest'
- description: To register an admin user,
example:
name: smith
password: secret
email: [email protected]
role: ''
example:
name: smith
password: secret
email: [email protected]
role: ''
required: true
responses:
'200':
description: ''
headers: {}
'404':
description: Email and password are required
content:
application/json:
schema: {}
deprecated: false
security: []
components:
schemas:
RegisternewuserRequest:
title: RegisternewuserRequest
required:
- name
- password
- email
type: object
properties:
name:
type: string
maxLength: 30
pattern: ^[A-Za-z]+$
password:
type: string
maxLength: 30
pattern: ^.{6,}$
email:
type: string
format: email
pattern: ^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+$
example:
name: smart
password: secret
email: [email protected]
CreateRegionRequest:
title: CreateRegionRequest
required:
- regionName
- metadata
type: object
properties:
regionName:
type: string
metadata:
allOf:
- $ref: '#/components/schemas/Metadata'
- {}
example:
regionName: North-Central
metadata:
coordinates:
latitude: 9.0354
longitude: 7.4898
size: 35000 square Km
population: 29252408
Metadata:
title: Metadata
required:
- coordinates
- size
- population
type: object
properties:
coordinates:
allOf:
- $ref: '#/components/schemas/Coordinates'
- {}
size:
type: string
population:
type: integer
format: int32
example:
coordinates:
latitude: 9.0354
longitude: 7.4898
size: 35000 square Km
population: 29252408
Coordinates:
title: Coordinates
required:
- latitude
- longitude
type: object
properties:
latitude:
type: number
longitude:
type: number
example:
latitude: 9.0354
longitude: 7.4898
CreateStateRequest:
title: CreateStateRequest
required:
- stateName
- state_metadata
- lgas
type: object
properties:
stateName:
type: string
state_metadata:
allOf:
- $ref: '#/components/schemas/StateMetadata'
- {}
lgas:
type: array
items:
type: string
description: ''
example:
stateName: Sokoto State
state_metadata:
capital: Sokoto
coordintes:
latitude: 13.0611194996857
longitude: 5.3152203
population: 11500456
lgas:
- Bodinga
- Dange Shuni
- Gada
- Goronyo
- Gudu
- Gwadabawa
- Illela
- Isa
- Kebbe
- Kware
- Rabah
- Sabon Birni
- Shagari
- Silame
- Sokoto North
- Sokoto South
- Tambuwal
- Tangaza
- Tureta
- Wamako
- Wurno
- Yabo
StateMetadata:
title: StateMetadata
required:
- capital
- coordintes
- population
type: object
properties:
capital:
type: string
coordintes:
allOf:
- $ref: '#/components/schemas/Coordintes'
- {}
population:
type: integer
format: int32
example:
capital: Sokoto
coordintes:
latitude: 13.0611194996857
longitude: 5.3152203
population: 11500456
Coordintes:
title: Coordintes
required:
- latitude
- longitude
type: object
properties:
latitude:
type: number
longitude:
type: number
example:
latitude: 13.0611194996857
longitude: 5.3152203
AdminLoginRequest:
title: AdminLoginRequest
required:
- email
- password
type: object
properties:
email:
type: string
password:
type: string
example:
email: [email protected]
password: secretkey
securitySchemes:
apiAccessKey:
type: apiKey
name: x-api-key
in: header
adminAuth:
type: http
scheme: bearer
bearerFormat: JWT
description: Enter JWT token
security:
- apiAccessKey: []
- adminAuth: []
tags:
- name: Misc
description: ''
- name: Auth User
description: ''
- name: States
description: ''
- name: Admin write access
description: ''
- name: Regions
description: ''
- name: Auth Admin
description: ''