@@ -279,7 +279,6 @@ class DocumentedHashAndArrayModel < Representable::Decorator
279
279
'paths' => {
280
280
'/v3/other_thing/{elements}' => {
281
281
'get' => {
282
- 'summary' => 'nested route inside namespace' ,
283
282
'description' => 'nested route inside namespace' ,
284
283
'produces' => [ 'application/json' ] ,
285
284
'parameters' => [ { 'in' => 'body' , 'name' => 'elements' , 'description' => 'Set of configuration' , 'type' => 'array' , 'items' => { 'type' => 'string' } , 'required' => true } ] ,
@@ -292,7 +291,6 @@ class DocumentedHashAndArrayModel < Representable::Decorator
292
291
} ,
293
292
'/thing' => {
294
293
'get' => {
295
- 'summary' => 'This gets Things.' ,
296
294
'description' => 'This gets Things.' ,
297
295
'produces' => [ 'application/json' ] ,
298
296
'parameters' => [
@@ -306,7 +304,6 @@ class DocumentedHashAndArrayModel < Representable::Decorator
306
304
'operationId' => 'getThing'
307
305
} ,
308
306
'post' => {
309
- 'summary' => 'This creates Thing.' ,
310
307
'description' => 'This creates Thing.' ,
311
308
'produces' => [ 'application/json' ] ,
312
309
'consumes' => [ 'application/json' ] ,
@@ -321,7 +318,6 @@ class DocumentedHashAndArrayModel < Representable::Decorator
321
318
} ,
322
319
'/thing/{id}' => {
323
320
'get' => {
324
- 'summary' => 'This gets Thing.' ,
325
321
'description' => 'This gets Thing.' ,
326
322
'produces' => [ 'application/json' ] ,
327
323
'parameters' => [ { 'in' => 'path' , 'name' => 'id' , 'type' => 'integer' , 'format' => 'int32' , 'required' => true } ] ,
@@ -330,7 +326,6 @@ class DocumentedHashAndArrayModel < Representable::Decorator
330
326
'operationId' => 'getThingId'
331
327
} ,
332
328
'put' => {
333
- 'summary' => 'This updates Thing.' ,
334
329
'description' => 'This updates Thing.' ,
335
330
'produces' => [ 'application/json' ] ,
336
331
'consumes' => [ 'application/json' ] ,
@@ -344,7 +339,6 @@ class DocumentedHashAndArrayModel < Representable::Decorator
344
339
'operationId' => 'putThingId'
345
340
} ,
346
341
'delete' => {
347
- 'summary' => 'This deletes Thing.' ,
348
342
'description' => 'This deletes Thing.' ,
349
343
'produces' => [ 'application/json' ] ,
350
344
'parameters' => [ { 'in' => 'path' , 'name' => 'id' , 'type' => 'integer' , 'format' => 'int32' , 'required' => true } ] ,
@@ -355,7 +349,6 @@ class DocumentedHashAndArrayModel < Representable::Decorator
355
349
} ,
356
350
'/thing2' => {
357
351
'get' => {
358
- 'summary' => 'This gets Things.' ,
359
352
'description' => 'This gets Things.' ,
360
353
'produces' => [ 'application/json' ] ,
361
354
'responses' => { '200' => { 'description' => 'get Horses' , 'schema' => { '$ref' => '#/definitions/Something' } } , '401' => { 'description' => 'HorsesOutError' , 'schema' => { '$ref' => '#/definitions/ApiError' } } } ,
@@ -365,7 +358,6 @@ class DocumentedHashAndArrayModel < Representable::Decorator
365
358
} ,
366
359
'/dummy/{id}' => {
367
360
'delete' => {
368
- 'summary' => 'dummy route.' ,
369
361
'description' => 'dummy route.' ,
370
362
'produces' => [ 'application/json' ] ,
371
363
'parameters' => [ { 'in' => 'path' , 'name' => 'id' , 'type' => 'integer' , 'format' => 'int32' , 'required' => true } ] ,
0 commit comments