OpenAPITools / openapi-diff

Utility for comparing two OpenAPI specifications.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Changes on 'minItems' and 'maxItems' not detected

michael-schnell opened this issue · comments

Currently adding/removing/changing 'minItems' or 'maxItems' is not detected.

V1

schema:
    type: array
    items:
        type: integer

V1 (Added 'maxItems')

schema:
    type: array
    items:
        type: integer
    maxItems: 100

Same applies to 'minItems' or changing/removing the values.

Sorry, wrong issue.