While validating swagger file which has following pattern: ^[a-zA-Z0-9]{0,4096}$ gives error
Invalid components: cannot compile pattern "^[a-zA-Z0-9]{0,4096}$": error parsing regexp: invalid repeat count: {0,4096}
Issue seems golang regexp has hardcoded 1000 max reapeat Count.
Do we have any option to disable pattern validation? or any other solution.
Thank you
While validating swagger file which has following pattern: ^[a-zA-Z0-9]{0,4096}$ gives error
Invalid components: cannot compile pattern "^[a-zA-Z0-9]{0,4096}$": error parsing regexp: invalid repeat count:
{0,4096}Issue seems golang regexp has hardcoded 1000 max reapeat Count.
Do we have any option to disable pattern validation? or any other solution.
Thank you