I have the following yaml specification 

Cat:
    allOf:
      - $ref: '#/definitions/Animal'
      - type: object
        properties:
          declawed:
            type: boolean
Animal:
    type: object
    properties:
      color:
        type: string
        default: 'red'

which is not resulting in java code generated as 

public class Cat extends Animal { ... }

Please advise,
Arkady.

-- 
You received this message because you are subscribed to the Google Groups 
"Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to