Skip to content

Adding or removing 'uniqueItems' is not detected #478

Closed
@michael-schnell

Description

@michael-schnell

Adding 'uniqueItems' like is currently not detected as a change:

V1

schema:
    type: array
    items:
        type: integer

V2 (Added 'uniqueItems')

schema:
    type: array
    items:
        type: integer
    uniqueItems: true

Same with removing 'uniqueItems':

V1

schema:
    type: array
    items:
        type: integer
    uniqueItems: true

V2 (Removed'uniqueItems')

schema:
    type: array
    items:
        type: integer

(Changing 'true' to 'false' or vice versa should be treated simply as adding/removing)

Metadata

Metadata

Assignees

Type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions