We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pattern: '^(?i)one|two|three$'
The regex does not validate. (?i) is the issue. It allows case-insensitive pattern match.
It causes this error in swagger-editor:
Structural error at components.schemas.Session.properties.operation.pattern should match format "regex" format: regex
The text was updated successfully, but these errors were encountered:
Hi,
I have the same problem with this
contract_id: in: header description: Identifiant name: contract_id required: true schema: type: string pattern: (?i)^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$ example: 5DD440B2-197A-4AB7-B742-11CE25C9F2AB
result :
Errors Hide Structural error at components.parameters.contract_id.schema.pattern should match format "regex" format: regex Jump to line 908
Sorry, something went wrong.
No branches or pull requests
pattern: '^(?i)one|two|three$'
The regex does not validate.
(?i) is the issue. It allows case-insensitive pattern match.
It causes this error in swagger-editor:
Structural error at components.schemas.Session.properties.operation.pattern
should match format "regex" format: regex
The text was updated successfully, but these errors were encountered: