Closed yonaskolb closed 5 years ago
This fixes cases like the following:
ChildWithNestedObject: allOf: - $ref: '#/components/schemas/ParentObject' - type: object properties: data: type: object properties: value: type: string
Before, the nested object was generated as if it was a subclass of ParentObject. This is due to how Stencil's include tag works, and that if a property isn't found in the context it looks in its parent.
ParentObject
include
This fixes cases like the following:
Before, the nested object was generated as if it was a subclass of
ParentObject
. This is due to how Stencil'sinclude
tag works, and that if a property isn't found in the context it looks in its parent.