OpenAPITools / openapi-diff

Utility for comparing two OpenAPI specifications.
Apache License 2.0
810 stars 154 forks source link

Changes on 'minItems' and 'maxItems' not detected #480

Open michael-schnell opened 1 year ago

michael-schnell commented 1 year ago

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.

joschi commented 1 year ago

Sorry, wrong issue.