Henning Goes

Results 2 issues of Henning Goes

Consider these two specifications: ```yaml #a.yaml openapi: 3.0.0 components: schemas: Merged: allOf: - $ref: '#/components/schemas/Example' - $ref: 'b.yaml#/components/schemas/Merge' Example: type: object properties: a: type: string c: $ref: 'b.yaml#/components/schemas/Element' ``` ```yaml...