-
Notifications
You must be signed in to change notification settings - Fork 1
/
specs-ad-collab.yaml
322 lines (312 loc) · 8.92 KB
/
specs-ad-collab.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
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
openapi: 3.0.3
info:
title: Marketplace ${VERSION_APP}
description: This is a place where sellers and buyers meat each other
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0.html
version: 3.0.0
servers:
- url: http://localhost:8080/v2
tags:
- name: ad
description: Объявление (о покупке или продаже)
paths:
/ad/edit:
post:
tags:
- ad
summary: Collaborative ad editing
operationId: adEdit
requestBody:
description: Request body
content:
application/json:
schema:
$ref: '#/components/schemas/AdCommand'
required: true
responses:
'200':
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/AdEditReceive'
/ad/edit-insert:
post:
tags:
- ad
summary: Collaborative ad editing insert
requestBody:
description: Request body
content:
application/json:
schema:
$ref: '#/components/schemas/AdCommandInsertText'
required: true
responses:
'200':
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/AdEditReceive'
/ad/edit-delete:
post:
tags:
- ad
summary: Collaborative ad editing delete
requestBody:
description: Request body
content:
application/json:
schema:
$ref: '#/components/schemas/AdCommandDeleteText'
required: true
responses:
'200':
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/AdEditReceive'
/ad/change-product:
post:
tags:
- ad
summary: Collaborative ad editing delete
requestBody:
description: Request body
content:
application/json:
schema:
$ref: '#/components/schemas/AdCommandChangeProduct'
required: true
responses:
'200':
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/AdEditReceive'
/ad/change-type:
post:
tags:
- ad
summary: Collaborative ad editing delete
requestBody:
description: Request body
content:
application/json:
schema:
$ref: '#/components/schemas/AdCommandChangeType'
required: true
responses:
'200':
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/AdEditReceive'
/ad/change-visibility:
post:
tags:
- ad
summary: Collaborative ad editing delete
requestBody:
description: Request body
content:
application/json:
schema:
$ref: '#/components/schemas/AdCommandChangeVisibility'
required: true
responses:
'200':
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/AdEditReceive'
components:
schemas:
AdCommand:
type: object
properties:
version:
$ref: '#/components/schemas/AdVersion'
debug:
$ref: '#/components/schemas/AdRequestDebug'
command:
type: string
description: Тип изменения
example: insert
discriminator:
propertyName: command
mapping:
get-updates: '#/components/schemas/AdCommandGetUpdates'
insert: '#/components/schemas/AdCommandInsertText'
delete: '#/components/schemas/AdCommandDeleteText'
change-prod: '#/components/schemas/AdCommandChangeProduct'
change-type: '#/components/schemas/AdCommandChangeType'
change-visibility: '#/components/schemas/AdCommandChangeVisibility'
anyOf:
- $ref: '#/components/schemas/AdCommandGetUpdates'
- $ref: '#/components/schemas/AdCommandInsertText'
- $ref: '#/components/schemas/AdCommandDeleteText'
- $ref: '#/components/schemas/AdCommandChangeProduct'
- $ref: '#/components/schemas/AdCommandChangeType'
- $ref: '#/components/schemas/AdCommandChangeVisibility'
AdTextFields:
type: string
enum:
- title
- description
AdCommandGetUpdates:
allOf:
- $ref: '#/components/schemas/AdCommand'
- description: "Пустая команда для получения последних обновлений"
AdCommandInsertText:
allOf:
- $ref: '#/components/schemas/AdCommand'
- type: object
description: "Вставка подстроки в текстовое поле"
properties:
field:
$ref: '#/components/schemas/AdTextFields'
pos:
type: integer
value:
type: string
AdCommandDeleteText:
allOf:
- $ref: '#/components/schemas/AdCommand'
- type: object
description: "Удаление подстроки из текстового поля"
properties:
command:
example: "delete"
field:
$ref: '#/components/schemas/AdTextFields'
posF:
type: integer
posT:
type: integer
AdCommandChangeProduct:
allOf:
- $ref: '#/components/schemas/AdCommand'
- type: object
description: "Изменить значение идентификатора продукта"
properties:
command:
example: "change-prod"
productId:
$ref: '#/components/schemas/ProductId'
AdCommandChangeType:
allOf:
- $ref: '#/components/schemas/AdCommand'
- type: object
description: "Изменить значение типа объявления"
properties:
command:
example: "change-type"
type:
$ref: '#/components/schemas/DealSide'
AdCommandChangeVisibility:
allOf:
- $ref: '#/components/schemas/AdCommand'
- type: object
description: "Изменить значение типа видимости объявления"
properties:
command:
example: "change-visibility"
visibility:
$ref: '#/components/schemas/AdVisibility'
AdEditReceive:
type: object
properties:
result:
$ref: '#/components/schemas/ResponseResult'
commands:
type: array
items:
$ref: '#/components/schemas/AdCommand'
errors:
type: array
items:
$ref: '#/components/schemas/Error'
Error:
type: object
properties:
code:
type: string
group:
type: string
field:
type: string
message:
type: string
level:
type: string
example: "info"
enum:
- debug
- info
- warn
- error
ResponseResult:
type: string
enum:
- success
- error
ProductId:
type: string
description: Идентификатор модели продукта, к которому относится объявление
AdVersion:
type: integer
description: Версия документа
example: 133
DealSide:
type: string
description: 'Сторона сделки: спрос или предложение'
enum:
- demand
- supply
AdVisibility:
type: string
description: >-
Тип видимости объявления. Возможные значения: видит только владелец,
только зарегистрированный в системе пользователь, видимо всем
enum:
- ownerOnly
- registeredOnly
- public
AdRequestDebugMode:
type: string
enum:
- prod
- test
- stub
AdRequestDebug:
type: object
properties:
debug:
$ref: '#/components/schemas/AdDebug'
AdDebug:
type: object
properties:
mode:
$ref: '#/components/schemas/AdRequestDebugMode'
stub:
$ref: '#/components/schemas/AdRequestDebugStubs'
AdRequestDebugStubs:
type: string
description: Перечисления всех стабов
enum:
- success
- notFound
- badId
- badTitle
- badDescription
- badVisibility
- cannotDelete
- badSearchString