@@ -24,11 +24,11 @@ components:
2424 additionalProperties : false
2525 properties :
2626 userId :
27- $ref : " #/components/schemas/Id"
27+ $ref : ' #/components/schemas/Id'
2828 name :
2929 type : string
3030 address :
31- $ref : " #/components/schemas/Address"
31+ $ref : ' #/components/schemas/Address'
3232 age :
3333 type : integer
3434 format : int32
@@ -39,7 +39,7 @@ components:
3939 additionalProperties : false
4040 properties :
4141 address :
42- $ref : " #/components/schemas/Address"
42+ $ref : ' #/components/schemas/Address'
4343 age :
4444 type : integer
4545 format : int32
@@ -49,14 +49,14 @@ components:
4949 type : array
5050 uniqueItems : true
5151 items :
52- $ref : " #/components/schemas/User"
52+ $ref : ' #/components/schemas/User'
5353 parameters :
5454 UserId :
5555 name : userId
5656 in : path
5757 required : true
5858 schema :
59- $ref : " #/components/schemas/Id"
59+ $ref : ' #/components/schemas/Id'
6060 securitySchemes :
6161 HttpBearerJwtScheme :
6262 type : http
@@ -69,41 +69,41 @@ paths:
6969 tags :
7070 - user
7171 responses :
72- " 200 " :
72+ ' 200 ' :
7373 description : User 200 response
7474 content :
7575 application/json :
7676 schema :
77- $ref : " #/components/schemas/Users"
77+ $ref : ' #/components/schemas/Users'
7878 post :
7979 operationId : createUserCommand
8080 tags :
8181 - user
8282 - random
8383 requestBody :
84- description : " "
84+ description : ' '
8585 content :
8686 application/json :
8787 schema :
88- $ref : " #/components/schemas/CreateUserRequest"
88+ $ref : ' #/components/schemas/CreateUserRequest'
8989 responses :
90- " 200 " :
90+ ' 200 ' :
9191 description : User 200 response
9292 content :
9393 application/json :
9494 schema :
95- $ref : " #/components/schemas/Users"
96- " /users/{userId} " :
95+ $ref : ' #/components/schemas/Users'
96+ ' /users/{userId} ' :
9797 get :
9898 operationId : getUserByIdCommand
9999 tags : []
100100 responses :
101- " 200 " :
101+ ' 200 ' :
102102 description : User 200 response
103103 content :
104104 application/json :
105105 schema :
106- $ref : " #/components/schemas/User"
106+ $ref : ' #/components/schemas/User'
107107 delete :
108108 operationId : deleteUserByIdCommand
109109 security :
@@ -121,20 +121,20 @@ paths:
121121 operationId : updateUserCommand
122122 tags : []
123123 requestBody :
124- description : " "
124+ description : ' '
125125 content :
126126 application/json :
127127 schema :
128- $ref : " #/components/schemas/UpdateUserRequest"
128+ $ref : ' #/components/schemas/UpdateUserRequest'
129129 responses :
130- " 200 " :
131- description : " "
130+ ' 200 ' :
131+ description : ' '
132132 content :
133133 application/json :
134134 schema :
135- $ref : " #/components/schemas/User"
135+ $ref : ' #/components/schemas/User'
136136 parameters :
137- - $ref : " #/components/parameters/UserId"
137+ - $ref : ' #/components/parameters/UserId'
138138security :
139139 - HttpBearerJwtScheme : []
140140 - HttpBearerJwtScheme : *a2
0 commit comments