This repository has been archived by the owner on Nov 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
swagger.yaml
180 lines (176 loc) · 3.96 KB
/
swagger.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
swagger: '2.0'
info:
version: 1.0.0
title: Swagger Petstore
host: 'spokeek.fr:8090'
paths:
/users:
get:
summary: Récupère les la liste des user
operationId: getUsers
produces:
- application/json
responses:
'200':
description: Liste de conversations
schema:
$ref: '#/definitions/ConversationIdList'
'/conversations/{idUser}':
get:
summary: Récupère une liste de messages
operationId: getConversationById
parameters:
- name: idUser
in: path
description: Id de la conversation
required: true
type: integer
format: int64
produces:
- application/json
responses:
'200':
description: Liste des id de conversations
schema:
$ref: '#/definitions/ConversationList'
'/message/{mid}':
get:
summary: get message by id
operationId: getMessageByMid
parameters:
- name: mid
in: path
description: Id du message
required: true
type: integer
format: int64
produces:
- application/json
responses:
'200':
description: List message by id
schema:
$ref: '#/definitions/MessageById'
'/messageCount':
get:
summary: get message count
operationId: getMessageCount
produces:
- application/json
responses:
'200':
description: List message by id
schema:
$ref: '#/definitions/MessageById'
'/user/{id}':
get:
summary: user by id
operationId: getUserByid
parameters:
- name: id
in: path
description: Id de l'user
required: true
type: integer
format: int64
produces:
- application/json
responses:
'200':
description: List message by id
schema:
$ref: '#/definitions/UserById'
'/users/add':
post:
consumes:
- application/json
parameters:
- in: body
name: user
description: The user to create.
schema:
type: object
properties:
userName:
type: string
firstName:
type: string
lastName:
type: string
responses:
'200':
description: create user
schema:
$ref: '#/definitions/UserAdd'
'/message/add':
post:
consumes:
- application/json
parameters:
- in: body
name: message
description: The message to create.
schema:
type: object
properties:
userName:
type: string
firstName:
type: string
lastName:
type: string
responses:
'200':
description: create message
schema:
$ref: '#/definitions/UserAdd'
definitions:
ConversationIdList:
type: array
items:
type: integer
example:
- 1
- 2
- 3
Conversation:
type: object
properties:
mid:
type: integer
example: 1
text:
type: string
example: Hello World
idFrom:
type: string
idTo:
type: string
attachmentType:
type: string
payload:
type: string
ConversationList:
type: array
items:
$ref: '#/definitions/Conversation'
MessageById:
type: object
items:
$ref: '#/definitions/MessageById'
MessageCount:
type: object
items:
$ref: '#/definitions/MessageCount'
MessageAdd:
type: object
items:
$ref: '#/definitions/MessageAdd'
UserAdd:
type: object
items:
$ref: '#/definitions/UserAdd'
UserById:
type: object
items:
$ref: '#/definitions/UserById'