You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
properties-camelCase:
description: Properties should be camel case
severity: warn
message: "Properties should be camel case"
given: $..properties[*]~
then:
function: pattern
functionOptions:
match: "^(@?[a-z0-9][A-Z0-9]{0,1}(ID)?)+$"
I'm getting the following error on validating one of my OpenAPI specs (I can't provide it here but will try to figure out a minimal example, if possible and needed):
The OAS is quite large, I can imagine that it takes quite some time to evaluate the rule. Is there a way to fix it, e.g. some configuration to increase the node lookup timeout?
Cheers
The text was updated successfully, but these errors were encountered:
Yes this is a firebreak to prevent run-away lookups. This issue actually lives in libopenapi and there is an open item to make this particular timeout configurable.
Hi,
When using the following custom rule definition:
I'm getting the following error on validating one of my OpenAPI specs (I can't provide it here but will try to figure out a minimal example, if possible and needed):
The OAS is quite large, I can imagine that it takes quite some time to evaluate the rule. Is there a way to fix it, e.g. some configuration to increase the node lookup timeout?
Cheers
The text was updated successfully, but these errors were encountered: