File tree 1 file changed +3
-181
lines changed
springdoc-openapi-tests/springdoc-openapi-hateoas-tests/src/test/resources/results
1 file changed +3
-181
lines changed Original file line number Diff line number Diff line change 83
83
"content" : {
84
84
"*/*" : {
85
85
"schema" : {
86
- "$ref" : " #/components/schemas/PageString "
86
+ "$ref" : " #/components/schemas/PagedModelString "
87
87
}
88
88
}
89
89
}
103
103
"content" : {
104
104
"*/*" : {
105
105
"schema" : {
106
- "$ref" : " #/components/schemas/Page "
106
+ "$ref" : " #/components/schemas/PagedModel "
107
107
}
108
108
}
109
109
}
123
123
"content" : {
124
124
"*/*" : {
125
125
"schema" : {
126
- "$ref" : " #/components/schemas/PageDummyListString "
126
+ "$ref" : " #/components/schemas/PagedModelDummyListString "
127
127
}
128
128
}
129
129
}
207
207
"$ref" : " #/components/schemas/PageMetadata"
208
208
}
209
209
}
210
- },
211
- "PageString" : {
212
- "type" : " object" ,
213
- "properties" : {
214
- "totalPages" : {
215
- "type" : " integer" ,
216
- "format" : " int32"
217
- },
218
- "totalElements" : {
219
- "type" : " integer" ,
220
- "format" : " int64"
221
- },
222
- "size" : {
223
- "type" : " integer" ,
224
- "format" : " int32"
225
- },
226
- "content" : {
227
- "type" : " array" ,
228
- "items" : {
229
- "type" : " string"
230
- }
231
- },
232
- "number" : {
233
- "type" : " integer" ,
234
- "format" : " int32"
235
- },
236
- "sort" : {
237
- "$ref" : " #/components/schemas/SortObject"
238
- },
239
- "pageable" : {
240
- "$ref" : " #/components/schemas/PageableObject"
241
- },
242
- "first" : {
243
- "type" : " boolean"
244
- },
245
- "last" : {
246
- "type" : " boolean"
247
- },
248
- "numberOfElements" : {
249
- "type" : " integer" ,
250
- "format" : " int32"
251
- },
252
- "empty" : {
253
- "type" : " boolean"
254
- }
255
- }
256
- },
257
- "PageableObject" : {
258
- "type" : " object" ,
259
- "properties" : {
260
- "offset" : {
261
- "type" : " integer" ,
262
- "format" : " int64"
263
- },
264
- "sort" : {
265
- "$ref" : " #/components/schemas/SortObject"
266
- },
267
- "paged" : {
268
- "type" : " boolean"
269
- },
270
- "unpaged" : {
271
- "type" : " boolean"
272
- },
273
- "pageSize" : {
274
- "type" : " integer" ,
275
- "format" : " int32"
276
- },
277
- "pageNumber" : {
278
- "type" : " integer" ,
279
- "format" : " int32"
280
- }
281
- }
282
- },
283
- "SortObject" : {
284
- "type" : " object" ,
285
- "properties" : {
286
- "empty" : {
287
- "type" : " boolean"
288
- },
289
- "unsorted" : {
290
- "type" : " boolean"
291
- },
292
- "sorted" : {
293
- "type" : " boolean"
294
- }
295
- }
296
- },
297
- "Page" : {
298
- "type" : " object" ,
299
- "properties" : {
300
- "totalPages" : {
301
- "type" : " integer" ,
302
- "format" : " int32"
303
- },
304
- "totalElements" : {
305
- "type" : " integer" ,
306
- "format" : " int64"
307
- },
308
- "size" : {
309
- "type" : " integer" ,
310
- "format" : " int32"
311
- },
312
- "content" : {
313
- "type" : " array" ,
314
- "items" : {
315
- "type" : " object"
316
- }
317
- },
318
- "number" : {
319
- "type" : " integer" ,
320
- "format" : " int32"
321
- },
322
- "sort" : {
323
- "$ref" : " #/components/schemas/SortObject"
324
- },
325
- "pageable" : {
326
- "$ref" : " #/components/schemas/PageableObject"
327
- },
328
- "first" : {
329
- "type" : " boolean"
330
- },
331
- "last" : {
332
- "type" : " boolean"
333
- },
334
- "numberOfElements" : {
335
- "type" : " integer" ,
336
- "format" : " int32"
337
- },
338
- "empty" : {
339
- "type" : " boolean"
340
- }
341
- }
342
- },
343
- "PageDummyListString" : {
344
- "type" : " object" ,
345
- "properties" : {
346
- "totalPages" : {
347
- "type" : " integer" ,
348
- "format" : " int32"
349
- },
350
- "totalElements" : {
351
- "type" : " integer" ,
352
- "format" : " int64"
353
- },
354
- "size" : {
355
- "type" : " integer" ,
356
- "format" : " int32"
357
- },
358
- "content" : {
359
- "type" : " array" ,
360
- "items" : {
361
- "$ref" : " #/components/schemas/DummyListString"
362
- }
363
- },
364
- "number" : {
365
- "type" : " integer" ,
366
- "format" : " int32"
367
- },
368
- "sort" : {
369
- "$ref" : " #/components/schemas/SortObject"
370
- },
371
- "pageable" : {
372
- "$ref" : " #/components/schemas/PageableObject"
373
- },
374
- "first" : {
375
- "type" : " boolean"
376
- },
377
- "last" : {
378
- "type" : " boolean"
379
- },
380
- "numberOfElements" : {
381
- "type" : " integer" ,
382
- "format" : " int32"
383
- },
384
- "empty" : {
385
- "type" : " boolean"
386
- }
387
- }
388
210
}
389
211
}
390
212
}
You can’t perform that action at this time.
0 commit comments