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.