@@ -218,22 +218,22 @@ class DocumentedHashAndArrayModel < Representable::Decorator
218218
219219 let ( :swagger_nested_type ) do
220220 {
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 ' }
223223 }
224224 end
225225
226226 let ( :swagger_entity_as_response_object ) do
227227 {
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 ' } ,
229229 '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 ' }
231231 }
232232 end
233233
234234 let ( :swagger_params_as_response_object ) do
235235 {
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 ' }
237237 }
238238 end
239239
@@ -372,7 +372,7 @@ class DocumentedHashAndArrayModel < Representable::Decorator
372372 'type' => 'object' ,
373373 'required' => [ 'elements' ] ,
374374 'properties' => { 'elements' => { 'type' => 'array' , 'items' => { '$ref' => '#/definitions/QueryInputElement' } , 'description' => 'Set of configuration' } } ,
375- 'description' => 'nested route inside namespace '
375+ 'description' => 'QueryInput model '
376376 } ,
377377 'QueryInputElement' => {
378378 'type' => 'object' ,
@@ -382,7 +382,7 @@ class DocumentedHashAndArrayModel < Representable::Decorator
382382 'ApiError' => {
383383 'type' => 'object' ,
384384 'properties' => { 'code' => { 'type' => 'integer' , 'format' => 'int32' , 'description' => 'status code' } , 'message' => { 'type' => 'string' , 'description' => 'error message' } } ,
385- 'description' => 'This gets Things. '
385+ 'description' => 'ApiError model '
386386 } ,
387387 'Something' => {
388388 'type' => 'object' ,
@@ -392,7 +392,7 @@ class DocumentedHashAndArrayModel < Representable::Decorator
392392 'links' => { 'type' => 'array' , 'items' => { 'description' => '' , 'type' => 'link' } } ,
393393 'others' => { 'description' => '' , 'type' => 'text' }
394394 } ,
395- 'description' => 'This gets Things. '
395+ 'description' => 'Something model '
396396 }
397397 }
398398 }
0 commit comments