-
Notifications
You must be signed in to change notification settings - Fork 0
/
swagger.yml
100 lines (100 loc) · 2.62 KB
/
swagger.yml
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
openapi: 3.0.3
info:
title: API Documentation
version: 1.0.0
description: Swagger/OpenAPI documentation for the API routes.
servers:
- url: http://localhost:3000 # Update this URL based on your actual server address.
paths:
/:
get:
summary: Get Health Check
description: Returns a health check response.
responses:
'200':
description: Successful response
/api/status:
get:
summary: Get Status Simulator
description: Returns a status simulator response.
parameters:
- name: threshold
in: query
required: true
description: The incident or recovery threshold.
schema:
type: integer
minimum: 1
responses:
'200':
description: Successful response
'500':
description: Successful response
/api/delay:
get:
summary: Get Delay Simulator
description: Returns a delay simulator response.
parameters:
- name: threshold
in: query
required: true
description: The incident or recovery threshold.
schema:
type: integer
minimum: 1
- name: delay
in: query
required: true
description: The delay in milliseconds.
schema:
type: integer
minimum: 0
responses:
'200':
description: Successful response
/api/body:
get:
summary: Get Body Simulator
description: Returns an OK or Error body simulator response.
parameters:
- name: threshold
in: query
required: true
description: The incident or recovery threshold.
schema:
type: integer
minimum: 1
responses:
'200':
description: Successful response
/api/login:
post:
summary: Post Login Simulator
description: Returns a login simulator response.
parameters:
- name: threshold
in: query
required: true
description: The incident or recovery threshold.
schema:
type: integer
minimum: 1
responses:
'200':
description: Successful response
/api/user/{uid}:
get:
summary: Get User by ID
description: Returns a user by their ID.
parameters:
- name: uid
in: path
required: true
description: The ID of the user to retrieve.
schema:
type: string
responses:
'200':
description: Successful response
'404':
description: User not found