OpenAPITools / openapi-diff

Utility for comparing two OpenAPI specifications.
Apache License 2.0
784 stars 153 forks source link

Change of 'nullable' is not detected #482

Open michael-schnell opened 1 year ago

michael-schnell commented 1 year ago

Currently adding/removing nullable is not detected as a change.

V1

schema:
    type: integer

V2 (with added nullable)

schema:
    type: integer
    nullable: true

Same with removing it.