kin-openapi icon indicating copy to clipboard operation
kin-openapi copied to clipboard

Protect from recursion in openapi3.InternaliseRefs

Open wtertius opened this issue 2 years ago • 0 comments

Fixes stack overflow panic when schema includes link to itself, like:

components:
  schemas:
    Item:
      type: object
      properties:
        Name:
          type: string
        ParentLink:
          $ref: '#/components/schemas/Item'

wtertius avatar Aug 08 '22 16:08 wtertius