@@ -218,22 +218,22 @@ class DocumentedHashAndArrayModel < Representable::Decorator
218
218
219
219
let ( :swagger_nested_type ) do
220
220
{
221
- 'ApiError' => { 'type' => 'object' , 'properties' => { 'code' => { 'description' => 'status code' , 'type' => 'integer' , 'format' => 'int32' } , 'message' => { 'description' => 'error message' , 'type' => 'string' } } , 'description' => 'This returns something ' } ,
222
- 'UseItemResponseAsType' => { 'type' => 'object' , 'properties' => { 'description' => { 'description' => '' , 'type' => 'string' } , 'responses' => { 'description' => '' , 'type' => 'ResponseItem' } } , 'description' => 'This returns something ' }
221
+ 'ApiError' => { 'type' => 'object' , 'properties' => { 'code' => { 'description' => 'status code' , 'type' => 'integer' , 'format' => 'int32' } , 'message' => { 'description' => 'error message' , 'type' => 'string' } } , 'description' => 'ApiError model ' } ,
222
+ 'UseItemResponseAsType' => { 'type' => 'object' , 'properties' => { 'description' => { 'description' => '' , 'type' => 'string' } , 'responses' => { 'description' => '' , 'type' => 'ResponseItem' } } , 'description' => 'UseItemResponseAsType model ' }
223
223
}
224
224
end
225
225
226
226
let ( :swagger_entity_as_response_object ) do
227
227
{
228
- 'ApiError' => { 'type' => 'object' , 'properties' => { 'code' => { 'description' => 'status code' , 'type' => 'integer' , 'format' => 'int32' } , 'message' => { 'description' => 'error message' , 'type' => 'string' } } , 'description' => 'This returns something ' } ,
228
+ 'ApiError' => { 'type' => 'object' , 'properties' => { 'code' => { 'description' => 'status code' , 'type' => 'integer' , 'format' => 'int32' } , 'message' => { 'description' => 'error message' , 'type' => 'string' } } , 'description' => 'ApiError model ' } ,
229
229
'ResponseItem' => { 'type' => 'object' , 'properties' => { 'id' => { 'description' => '' , 'type' => 'integer' , 'format' => 'int32' } , 'name' => { 'description' => '' , 'type' => 'string' } } } ,
230
- 'UseResponse' => { 'type' => 'object' , 'properties' => { 'description' => { 'description' => '' , 'type' => 'string' } , '$responses' => { 'type' => 'array' , 'items' => { '$ref' => '#/definitions/ResponseItem' } , 'description' => '' } } , 'description' => 'This returns something ' }
230
+ 'UseResponse' => { 'type' => 'object' , 'properties' => { 'description' => { 'description' => '' , 'type' => 'string' } , '$responses' => { 'type' => 'array' , 'items' => { '$ref' => '#/definitions/ResponseItem' } , 'description' => '' } } , 'description' => 'UseResponse model ' }
231
231
}
232
232
end
233
233
234
234
let ( :swagger_params_as_response_object ) do
235
235
{
236
- 'ApiError' => { 'type' => 'object' , 'properties' => { 'code' => { 'description' => 'status code' , 'type' => 'integer' , 'format' => 'int32' } , 'message' => { 'description' => 'error message' , 'type' => 'string' } } , 'description' => 'This returns something ' }
236
+ 'ApiError' => { 'type' => 'object' , 'properties' => { 'code' => { 'description' => 'status code' , 'type' => 'integer' , 'format' => 'int32' } , 'message' => { 'description' => 'error message' , 'type' => 'string' } } , 'description' => 'ApiError model ' }
237
237
}
238
238
end
239
239
@@ -372,7 +372,7 @@ class DocumentedHashAndArrayModel < Representable::Decorator
372
372
'type' => 'object' ,
373
373
'required' => [ 'elements' ] ,
374
374
'properties' => { 'elements' => { 'type' => 'array' , 'items' => { '$ref' => '#/definitions/QueryInputElement' } , 'description' => 'Set of configuration' } } ,
375
- 'description' => 'nested route inside namespace '
375
+ 'description' => 'QueryInput model '
376
376
} ,
377
377
'QueryInputElement' => {
378
378
'type' => 'object' ,
@@ -382,7 +382,7 @@ class DocumentedHashAndArrayModel < Representable::Decorator
382
382
'ApiError' => {
383
383
'type' => 'object' ,
384
384
'properties' => { 'code' => { 'type' => 'integer' , 'format' => 'int32' , 'description' => 'status code' } , 'message' => { 'type' => 'string' , 'description' => 'error message' } } ,
385
- 'description' => 'This gets Things. '
385
+ 'description' => 'ApiError model '
386
386
} ,
387
387
'Something' => {
388
388
'type' => 'object' ,
@@ -392,7 +392,7 @@ class DocumentedHashAndArrayModel < Representable::Decorator
392
392
'links' => { 'type' => 'array' , 'items' => { 'description' => '' , 'type' => 'link' } } ,
393
393
'others' => { 'description' => '' , 'type' => 'text' }
394
394
} ,
395
- 'description' => 'This gets Things. '
395
+ 'description' => 'Something model '
396
396
}
397
397
}
398
398
}
0 commit comments