forked from AbhijeetWits/ondc-task-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspec.yaml
More file actions
555 lines (554 loc) · 16 KB
/
spec.yaml
File metadata and controls
555 lines (554 loc) · 16 KB
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
openapi: 3.0.0
info:
title: API for independant issue ticket system
description: API flow for raiseing, tracking and getting specific information regaring the issue raised and order related to that issue.
version: 1.0.0
paths:
/reason/:
get:
tags:
- Reason
description: Fetch all the reasons.
responses:
'200':
description: Reason list
content:
application/json:
schema:
$ref: '#/components/schemas/ReasonResponse'
'400':
description: Invalid ID supplied
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'404':
description: Issue not found
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'405':
description: Validation exception
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'502':
description: Bad Gateway
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'504':
description: Gateway Time Out
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
security:
- BearerAuth:
- read:issue
/issue/raise:
post:
tags:
- Issue
description: Raise an issue for a particular Order ID
requestBody:
description: Buyer raise an issue for a specific order
content:
application/json:
schema:
$ref: '#/components/schemas/IssuePostReq'
responses:
'202':
description: Acknowledgement of message received
content:
application/json:
schema:
type: object
properties:
message:
type: object
properties:
code:
type: string
example: 7765
description: response code
status:
type: string
enum:
- ACK
- NACK
example: ACK
description: response status
required:
- code
- status
required:
- message
'400':
description: Invalid Order ID
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'404':
description: Order not found
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'405':
description: Validation exception
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'502':
description: Bad Gateway
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'504':
description: Gateway Time Out
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
callbacks:
issueraise:
'{$request.body.callback_url}/issue':
post:
summary: 'Issue raised against an order'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/IssuePostReq'
responses:
200:
description: 'Issue successfully raised'
content:
text/plain:
examples:
success:
value: true
security:
- BearerAuth:
- write:issue
- api_key: []
/issue/track/:
get:
tags:
- Issue
description: Fetch all the issue raised by the user.
responses:
'200':
description: Issue list
content:
application/json:
schema:
$ref: '#/components/schemas/GetAllIssueTrackResponse'
'400':
description: Invalid ID supplied
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'404':
description: Issue not found
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'405':
description: Validation exception
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'502':
description: Bad Gateway
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'504':
description: Gateway Time Out
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
security:
- BearerAuth:
- read:issue
/issue/track/{issue_id}:
get:
tags:
- Issue
description: Get details for the specific raised issue.
parameters:
- name: issue_id
in: path
description: ID of issue to return
required: true
schema:
type: integer
format: int64
responses:
'200':
description: Status of the Issue
content:
application/json:
schema:
$ref: '#/components/schemas/IssueTrackResponse'
'400':
description: Invalid ID supplied
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'404':
description: Issue not found
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'405':
description: Validation exception
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'502':
description: Bad Gateway
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'504':
description: Gateway Time Out
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
security:
- BearerAuth:
- read:issue
components:
schemas:
Reason:
description: Describes the reasons of issue
type: object
properties:
reason_id:
type: string
description: Unique identifier for reason schema
example: 101
reason:
type: string
description: Reason to be specified
enum:
- damaged-during-shipping
- product-arrived-too-late
- customer-no-longer-needed-the-product
- product-did-not-match-the-description
example: damaged-during-shipping
Order:
description: Describes the details of an order
type: object
properties:
order_id:
type: string
description: Unique identifier for Order schema
example: 191
state:
type: string
enum:
- CREATED
- PACKED
- SHIPPED
- OUT fOR DELIVERY
- DELIVERED
- RTO INITIATED
- RTO DELIVERED
- CANCELLED
description: Order state
example: CREATED
created_at:
type: string
format: date-time
description: created at date
example: '2022-08-30T17:22:38'
updated_at:
type: string
format: date-time
description: updated at date
example: '2022-08-30T17:22:38'
Issue:
type: object
properties:
issue_id:
type: integer
format: int64
example: 5466654433
description: unique issue id
timestamp:
type: string
format: date-time
example: '2022-08-30T17:22:38'
description: timestamp for issue
issue_status:
type: string
description: Issue Status
example: ACKNOWLEDGE
enum:
- ACKNOWLEDGE
- FULFILLED
- DECLINED
- IN_PROGRESS
- RETURN_INITIATED
- RETURN_INPROGRESS
- RETURN_COMPLETED
- RETURN_DECLINED
- REFUND_INITIATED
- REFUND_INPROGRESS
- REFUND_COMPLETED
- REFUND_DECLINED
issue_message:
type: string
description: message description the issue
example: 'this item is defecitve'
request_for:
type: string
description: request constants
enum:
- REFUND
- RETURN
example: REFUND
Error:
description: Describes an error object
type: object
properties:
error:
type: object
properties:
type:
type: string
enum:
- CONTEXT_ERROR
- DOMAIN_ERROR
- POLICY_ERROR
- JSON_SCHEMA_ERROR
description: Error type
code:
type: string
description: Describes an error object
example: 8678
path:
type: string
description: Path to json schema generating the error. Used only during json schema validation errors
message:
type: string
description: Human readable message describing the error
example: Invalid Request
required:
- type
- code
required:
- error
ReasonResponse:
description: Describes the reasons of issue
type: object
properties:
message:
type: array
items:
properties:
reason_id:
$ref: '#/components/schemas/Reason/properties/reason_id'
reason:
$ref: '#/components/schemas/Reason/properties/reason'
required:
- reason_id
- reason
IssuePostReq:
type: object
properties:
message:
type: object
properties:
order_id:
$ref: '#/components/schemas/Order/properties/order_id'
reason_id:
$ref: '#/components/schemas/Reason/properties/reason_id'
timestamp:
$ref: '#/components/schemas/Issue/properties/timestamp'
issue_message:
$ref: '#/components/schemas/Issue/properties/issue_message'
request_for:
$ref: '#/components/schemas/Issue/properties/request_for'
preference_contact:
type: string
example: MOBILE
description: preference contact detail
enum:
- MOBILE
- EMAIL
callback_url:
type: string
format: uri
example: 'https://myserver/track/issue'
description: callback function url
required:
- order_id
- reason_id
- timestamp
- issue_message
- request_for
- callback_url
required:
- message
GetAllIssueTrackResponse:
type: object
properties:
message:
type: array
items:
properties:
issue_id:
$ref: '#/components/schemas/Issue/properties/issue_id'
issue_status:
$ref: '#/components/schemas/Issue/properties/issue_status'
order_id:
$ref: '#/components/schemas/Order/properties/order_id'
timestamp:
$ref: '#/components/schemas/Issue/properties/timestamp'
required:
- issue_status
- issue_id
- order_id
- timestamp
required:
- message
IssueTrackResponse:
type: object
properties:
message:
type: array
items:
properties:
issue_id:
$ref: '#/components/schemas/Issue/properties/issue_id'
issue_status:
$ref: '#/components/schemas/Issue/properties/issue_status'
order_id:
$ref: '#/components/schemas/Order/properties/order_id'
timestamp:
$ref: '#/components/schemas/Issue/properties/timestamp'
reason:
$ref: '#/components/schemas/Reason/properties/reason'
request_for:
$ref: '#/components/schemas/Issue/properties/request_for'
perference_contact:
type: string
enum:
- MOBILE
- EMAIL
example: EMAIL
description: preference contact detail
issue_message:
$ref: '#/components/schemas/Issue/properties/issue_message'
assigned_to:
$ref: '#/components/schemas/Person'
required:
- issue_status
- issue_id
- order_id
- timestamp
- reason
- request_for
- issue_message
- assigned_to
required:
- message
Person:
description: Person schema details
type: object
properties:
person_id:
type: string
description: Unique identifier for Person schema
example: 193
name:
type: string
description: Name of the person
example: Alan
issue_assigned_id:
type: string
description: Issue assigned to the person
example: 292
timestamp:
type: string
format: date-time
example: '2022-08-30T17:22:38'
description: Timestap for person
securitySchemes:
BearerAuth:
type: http
scheme: bearer
api_key:
type: apiKey
name: api_key
in: header