-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAPI_SPEC.yaml
More file actions
444 lines (444 loc) · 13.8 KB
/
Copy pathAPI_SPEC.yaml
File metadata and controls
444 lines (444 loc) · 13.8 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
openapi: 3.0.3
info:
title: "Space API"
description: "API specification for Space. Error response mapping is Needs confirmation because no global exception handler is visible."
version: "0.1.0"
servers:
- url: "Needs confirmation"
description: "Needs confirmation"
tags:
- name: "Spaces"
- name: "Schedules"
- name: "Internal"
paths:
/internal/spaces/{space-id}/matching-context:
get:
tags: ["Internal"]
summary: "Get space matching context"
description: "Internal endpoint used by Matching Service to resolve the host and validate approval, active state, and schedule availability."
parameters:
- $ref: "#/components/parameters/SpaceId"
- name: start-time
in: query
required: true
schema:
type: string
format: date-time
- name: end-time
in: query
required: true
schema:
type: string
format: date-time
responses:
"200":
description: "Matching context returned."
content:
application/json:
schema:
$ref: "#/components/schemas/SpaceMatchingContextResponse"
default:
description: "Needs confirmation"
/spaces:
post:
tags: ["Spaces"]
summary: "Create a space"
description: "Creates a space for the authenticated host."
security:
- bearerAuth: []
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/SpaceCreateRequest"
responses:
"201":
description: "Space created."
content:
application/json:
schema:
$ref: "#/components/schemas/SpaceCreateApiResponse"
default:
description: "Needs confirmation"
get:
tags: ["Spaces"]
summary: "List spaces"
description: "Lists non-deleted spaces with optional name and category filters. Public by SecurityConfig."
parameters:
- name: name
in: query
required: false
schema:
type: string
- name: category
in: query
required: false
schema:
$ref: "#/components/schemas/SpaceCategory"
responses:
"200":
description: "Spaces returned."
content:
application/json:
schema:
$ref: "#/components/schemas/SpaceListApiResponse"
default:
description: "Needs confirmation"
/spaces/me:
get:
tags: ["Spaces"]
summary: "List my spaces"
description: "Lists spaces owned by the authenticated host. SecurityConfig intends authentication, but matcher order may make this route public; Needs confirmation."
security:
- bearerAuth: []
parameters:
- name: name
in: query
required: false
schema:
type: string
- name: category
in: query
required: false
schema:
$ref: "#/components/schemas/SpaceCategory"
responses:
"200":
description: "Owner spaces returned."
content:
application/json:
schema:
$ref: "#/components/schemas/MySpaceListApiResponse"
default:
description: "Needs confirmation"
/spaces/{space-id}:
get:
tags: ["Spaces"]
summary: "Get space detail"
description: "Returns a non-deleted space and image URLs. Public by SecurityConfig."
parameters:
- $ref: "#/components/parameters/SpaceId"
responses:
"200":
description: "Space detail returned."
content:
application/json:
schema:
$ref: "#/components/schemas/SpaceDetailApiResponse"
default:
description: "Needs confirmation"
patch:
tags: ["Spaces"]
summary: "Update a space"
description: "Updates an owned active space. Replaces image rows when image_urls is provided."
security:
- bearerAuth: []
parameters:
- $ref: "#/components/parameters/SpaceId"
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/SpaceUpdateRequest"
responses:
"204":
description: "Space updated."
default:
description: "Needs confirmation"
delete:
tags: ["Spaces"]
summary: "Delete a space"
description: "Soft-deletes an owned active space and deletes related image and schedule rows."
security:
- bearerAuth: []
parameters:
- $ref: "#/components/parameters/SpaceId"
responses:
"204":
description: "Space deleted."
default:
description: "Needs confirmation"
/spaces/{space-id}/schedule:
post:
tags: ["Schedules"]
summary: "Create a schedule"
description: "Creates an available schedule for an owned active space."
security:
- bearerAuth: []
parameters:
- $ref: "#/components/parameters/SpaceId"
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/ScheduleCreateRequest"
responses:
"201":
description: "Schedule created."
content:
application/json:
schema:
$ref: "#/components/schemas/ScheduleCreateApiResponse"
default:
description: "Needs confirmation"
get:
tags: ["Schedules"]
summary: "List schedules"
description: "Lists schedules for a non-deleted space, grouped by date and ordered by start time. Public by SecurityConfig."
parameters:
- $ref: "#/components/parameters/SpaceId"
responses:
"200":
description: "Schedules returned."
content:
application/json:
schema:
$ref: "#/components/schemas/ScheduleListApiResponse"
default:
description: "Needs confirmation"
/spaces/{space-id}/schedule/{schedule-id}:
patch:
tags: ["Schedules"]
summary: "Update a schedule"
description: "Updates an owned space schedule. Omitted fields keep existing values."
security:
- bearerAuth: []
parameters:
- $ref: "#/components/parameters/SpaceId"
- $ref: "#/components/parameters/ScheduleId"
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/ScheduleUpdateRequest"
responses:
"204":
description: "Schedule updated."
default:
description: "Needs confirmation"
delete:
tags: ["Schedules"]
summary: "Delete a schedule"
description: "Deletes a schedule for an owned active space."
security:
- bearerAuth: []
parameters:
- $ref: "#/components/parameters/SpaceId"
- $ref: "#/components/parameters/ScheduleId"
responses:
"204":
description: "Schedule deleted."
default:
description: "Needs confirmation"
components:
parameters:
SpaceId:
name: "space-id"
in: path
required: true
schema:
type: integer
format: int64
ScheduleId:
name: "schedule-id"
in: path
required: true
schema:
type: integer
format: int64
schemas:
ApiResponse:
type: object
properties:
message:
type: string
data:
nullable: true
SpaceCategory:
type: string
enum: [PRACTICE_ROOM, STUDIO, MEETING_ROOM, PARTY_ROOM, CLASSROOM, POPUP_STORE, OFFICE, HALL, CAFE, OTHER]
SpaceCreateRequest:
type: object
properties:
name: { type: string }
description: { type: string, nullable: true }
address:
$ref: "#/components/schemas/Address"
thumbnail_url: { type: string }
image_urls:
type: array
items: { type: string }
price_per_hour: { type: integer, format: int32 }
category:
$ref: "#/components/schemas/SpaceCategory"
phone: { type: string, nullable: true }
description: "DTO has no field-level validation annotations in current code. Required fields are Needs confirmation."
SpaceUpdateRequest:
type: object
properties:
name: { type: string }
description: { type: string }
address:
$ref: "#/components/schemas/Address"
ai_summary: { type: string }
thumbnail_url: { type: string }
image_urls:
type: array
items: { type: string }
price_per_hour: { type: integer, format: int32 }
category:
$ref: "#/components/schemas/SpaceCategory"
phone: { type: string }
Address:
type: object
properties:
sido: { type: string }
sigungu: { type: string }
eup_myeon_dong: { type: string, nullable: true }
road_address: { type: string }
jibun_address: { type: string, nullable: true }
detail_address: { type: string, nullable: true }
postal_code: { type: string, nullable: true }
lat: { type: number, nullable: true }
lng: { type: number, nullable: true }
SpaceCreateResponse:
type: object
properties:
space_id: { type: integer, format: int64 }
SpaceMatchingContextResponse:
type: object
properties:
space_id: { type: integer, format: int64 }
host_id: { type: string }
approved: { type: boolean }
active: { type: boolean }
available: { type: boolean }
SpaceListResponse:
type: object
properties:
space_id: { type: integer, format: int64 }
name: { type: string }
address:
$ref: "#/components/schemas/Address"
thumbnail_url: { type: string }
price_per_hour: { type: integer, format: int32 }
category: { type: string }
SpaceListResponses:
type: object
properties:
spaces:
type: array
items:
$ref: "#/components/schemas/SpaceListResponse"
MySpaceListResponse:
allOf:
- $ref: "#/components/schemas/SpaceListResponse"
- type: object
properties:
admin_status:
type: string
enum: [PENDING, APPROVED, REJECTED]
is_active:
type: boolean
MySpaceListResponses:
type: object
properties:
spaces:
type: array
items:
$ref: "#/components/schemas/MySpaceListResponse"
SpaceDetailResponse:
type: object
properties:
space_id: { type: integer, format: int64 }
name: { type: string }
description: { type: string, nullable: true }
ai_summary: { type: string, nullable: true }
address:
$ref: "#/components/schemas/Address"
thumbnail_url: { type: string }
image_urls:
type: array
items: { type: string }
price_per_hour: { type: integer, format: int32 }
category: { type: string }
ScheduleCreateRequest:
type: object
properties:
start_time: { type: string, format: date-time }
end_time: { type: string, format: date-time }
description: "start_time and end_time are required by entity validation and start_time must be before end_time."
ScheduleUpdateRequest:
type: object
properties:
start_time: { type: string, format: date-time }
end_time: { type: string, format: date-time }
is_bookable: { type: boolean }
ScheduleCreateResponse:
type: object
properties:
schedule_id: { type: integer, format: int64 }
ScheduleTimeBlockResponse:
type: object
properties:
schedule_id: { type: integer, format: int64 }
start_time: { type: string, format: date-time }
end_time: { type: string, format: date-time }
status:
type: string
enum: [AVAILABLE, BLOCKED]
ScheduleListResponse:
type: object
properties:
date: { type: string, format: date }
time_blocks:
type: array
items:
$ref: "#/components/schemas/ScheduleTimeBlockResponse"
ScheduleListResponses:
type: object
properties:
schedules:
type: array
items:
$ref: "#/components/schemas/ScheduleListResponse"
SpaceCreateApiResponse:
allOf:
- $ref: "#/components/schemas/ApiResponse"
- type: object
properties: { data: { $ref: "#/components/schemas/SpaceCreateResponse" } }
SpaceListApiResponse:
allOf:
- $ref: "#/components/schemas/ApiResponse"
- type: object
properties: { data: { $ref: "#/components/schemas/SpaceListResponses" } }
MySpaceListApiResponse:
allOf:
- $ref: "#/components/schemas/ApiResponse"
- type: object
properties: { data: { $ref: "#/components/schemas/MySpaceListResponses" } }
SpaceDetailApiResponse:
allOf:
- $ref: "#/components/schemas/ApiResponse"
- type: object
properties: { data: { $ref: "#/components/schemas/SpaceDetailResponse" } }
ScheduleCreateApiResponse:
allOf:
- $ref: "#/components/schemas/ApiResponse"
- type: object
properties: { data: { $ref: "#/components/schemas/ScheduleCreateResponse" } }
ScheduleListApiResponse:
allOf:
- $ref: "#/components/schemas/ApiResponse"
- type: object
properties: { data: { $ref: "#/components/schemas/ScheduleListResponses" } }
responses: {}
securitySchemes:
bearerAuth:
type: http
scheme: bearer
bearerFormat: JWT