This repository has been archived by the owner on Oct 5, 2019. It is now read-only.
forked from kyma-project/examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.yaml
executable file
·94 lines (94 loc) · 2.26 KB
/
api.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
openapi: 3.0.0
info:
title: Order service API
version: "0.0.1"
paths:
/orders:
post:
description: Creates a new order.
tags:
- orders
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/Order'
responses:
'201':
description: Order created succesfully.
'400':
description: Bad request.
'409':
description: Order ID conflict.
'500':
description: Internal server error.
get:
description: Retrieve all orders.
tags:
- orders
responses:
'200':
description: Orders retrieved succesfully.
content:
application/json:
schema:
$ref: '#/components/schemas/OrderList'
'500':
description: Internal server error.
delete:
description: Delete all orders.
tags:
- orders
responses:
'204':
description: All orders deleted succesfully.
'500':
description: Internal server error.
/namespace/X/orders:
get:
description: Retrieve all orders.
tags:
- namespace orders
responses:
'200':
description: Orders retrieved succesfully.
content:
application/json:
schema:
$ref: '#/components/schemas/OrderList'
'400':
description: Bad request.
'500':
description: Internal server error.
delete:
description: Delete all orders in namespace X.
tags:
- namespace orders
responses:
'204':
description: All orders in namespace X deleted succesfully.
'400':
description: Bad request.
'500':
description: Internal server error.
components:
schemas:
Order:
type: object
properties:
orderId:
type: string
example: 11854638GU110615ELIN54ZQ
namespace:
type: string
example: kyma-components
total:
type: number
example: 1234.56
required:
- orderId
- total
OrderList:
type: array
items:
$ref: '#/components/schemas/Order'