|
76 | 76 | } |
77 | 77 | } |
78 | 78 | } |
79 | | - }, |
80 | | - "post": { |
81 | | - "tags": [ |
82 | | - "person-entity-controller" |
83 | | - ], |
84 | | - "description": "create-person", |
85 | | - "operationId": "postCollectionResource-person-post", |
86 | | - "requestBody": { |
87 | | - "content": { |
88 | | - "application/json": { |
89 | | - "schema": { |
90 | | - "$ref": "#/components/schemas/PersonRequestBody" |
91 | | - } |
92 | | - } |
93 | | - }, |
94 | | - "required": true |
95 | | - }, |
96 | | - "responses": { |
97 | | - "201": { |
98 | | - "description": "Created", |
99 | | - "content": { |
100 | | - "application/hal+json": { |
101 | | - "schema": { |
102 | | - "$ref": "#/components/schemas/EntityModelPerson" |
103 | | - } |
104 | | - } |
105 | | - } |
106 | | - } |
107 | | - } |
108 | 79 | } |
109 | 80 | }, |
110 | 81 | "/peopleme/search/findByLastName": { |
|
139 | 110 | } |
140 | 111 | } |
141 | 112 | }, |
142 | | - "/peopleme/{id}": { |
143 | | - "get": { |
144 | | - "tags": [ |
145 | | - "person-entity-controller" |
146 | | - ], |
147 | | - "description": "get-person", |
148 | | - "operationId": "getItemResource-person-get", |
149 | | - "parameters": [ |
150 | | - { |
151 | | - "name": "id", |
152 | | - "in": "path", |
153 | | - "required": true, |
154 | | - "schema": { |
155 | | - "type": "string" |
156 | | - } |
157 | | - } |
158 | | - ], |
159 | | - "responses": { |
160 | | - "200": { |
161 | | - "description": "OK", |
162 | | - "content": { |
163 | | - "application/hal+json": { |
164 | | - "schema": { |
165 | | - "$ref": "#/components/schemas/EntityModelPerson" |
166 | | - } |
167 | | - } |
168 | | - } |
169 | | - }, |
170 | | - "404": { |
171 | | - "description": "Not Found" |
172 | | - } |
173 | | - } |
174 | | - }, |
175 | | - "put": { |
176 | | - "tags": [ |
177 | | - "person-entity-controller" |
178 | | - ], |
179 | | - "description": "update-person", |
180 | | - "operationId": "putItemResource-person-put", |
181 | | - "parameters": [ |
182 | | - { |
183 | | - "name": "id", |
184 | | - "in": "path", |
185 | | - "required": true, |
186 | | - "schema": { |
187 | | - "type": "string" |
188 | | - } |
189 | | - } |
190 | | - ], |
191 | | - "requestBody": { |
192 | | - "content": { |
193 | | - "application/json": { |
194 | | - "schema": { |
195 | | - "$ref": "#/components/schemas/PersonRequestBody" |
196 | | - } |
197 | | - } |
198 | | - }, |
199 | | - "required": true |
200 | | - }, |
201 | | - "responses": { |
202 | | - "200": { |
203 | | - "description": "OK", |
204 | | - "content": { |
205 | | - "application/hal+json": { |
206 | | - "schema": { |
207 | | - "$ref": "#/components/schemas/EntityModelPerson" |
208 | | - } |
209 | | - } |
210 | | - } |
211 | | - }, |
212 | | - "201": { |
213 | | - "description": "Created", |
214 | | - "content": { |
215 | | - "application/hal+json": { |
216 | | - "schema": { |
217 | | - "$ref": "#/components/schemas/EntityModelPerson" |
218 | | - } |
219 | | - } |
220 | | - } |
221 | | - }, |
222 | | - "204": { |
223 | | - "description": "No Content" |
224 | | - } |
225 | | - } |
226 | | - }, |
227 | | - "delete": { |
228 | | - "tags": [ |
229 | | - "person-entity-controller" |
230 | | - ], |
231 | | - "description": "delete-person", |
232 | | - "operationId": "deleteItemResource-person-delete", |
233 | | - "parameters": [ |
234 | | - { |
235 | | - "name": "id", |
236 | | - "in": "path", |
237 | | - "required": true, |
238 | | - "schema": { |
239 | | - "type": "string" |
240 | | - } |
241 | | - } |
242 | | - ], |
243 | | - "responses": { |
244 | | - "204": { |
245 | | - "description": "No Content" |
246 | | - }, |
247 | | - "404": { |
248 | | - "description": "Not Found" |
249 | | - } |
250 | | - } |
251 | | - }, |
252 | | - "patch": { |
253 | | - "tags": [ |
254 | | - "person-entity-controller" |
255 | | - ], |
256 | | - "description": "patch-person", |
257 | | - "operationId": "patchItemResource-person-patch", |
258 | | - "parameters": [ |
259 | | - { |
260 | | - "name": "id", |
261 | | - "in": "path", |
262 | | - "required": true, |
263 | | - "schema": { |
264 | | - "type": "string" |
265 | | - } |
266 | | - } |
267 | | - ], |
268 | | - "requestBody": { |
269 | | - "content": { |
270 | | - "application/json": { |
271 | | - "schema": { |
272 | | - "$ref": "#/components/schemas/PersonRequestBody" |
273 | | - } |
274 | | - } |
275 | | - }, |
276 | | - "required": true |
277 | | - }, |
278 | | - "responses": { |
279 | | - "200": { |
280 | | - "description": "OK", |
281 | | - "content": { |
282 | | - "application/hal+json": { |
283 | | - "schema": { |
284 | | - "$ref": "#/components/schemas/EntityModelPerson" |
285 | | - } |
286 | | - } |
287 | | - } |
288 | | - }, |
289 | | - "204": { |
290 | | - "description": "No Content" |
291 | | - } |
292 | | - } |
293 | | - } |
294 | | - }, |
295 | 113 | "/profile": { |
296 | 114 | "get": { |
297 | 115 | "tags": [ |
298 | 116 | "profile-controller" |
299 | 117 | ], |
300 | | - "operationId": "listAllFormsOfMetadata_1", |
| 118 | + "operationId": "listAllFormsOfMetadata", |
301 | 119 | "responses": { |
302 | 120 | "200": { |
303 | 121 | "description": "OK", |
|
317 | 135 | "tags": [ |
318 | 136 | "profile-controller" |
319 | 137 | ], |
320 | | - "operationId": "descriptor_1_1_1", |
| 138 | + "operationId": "descriptor_1", |
321 | 139 | "responses": { |
322 | 140 | "200": { |
323 | 141 | "description": "OK", |
|
501 | 319 | } |
502 | 320 | } |
503 | 321 | }, |
504 | | - "PersonRequestBody": { |
505 | | - "type": "object", |
506 | | - "properties": { |
507 | | - "firstName": { |
508 | | - "type": "string" |
509 | | - }, |
510 | | - "lastName": { |
511 | | - "type": "string" |
512 | | - } |
513 | | - } |
514 | | - }, |
515 | 322 | "Link": { |
516 | 323 | "type": "object", |
517 | 324 | "properties": { |
|
0 commit comments