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
Options schema include additionalProperties within logging options properties. additionalProperties is not a valid option that can be configured but is rather part of the JSON schema spec.
"properties": {
"ruleFail": {
"type": "string",
"description": "Log fail outcomes for each rule to a specific informational stream.",
"enum": [
"None",
"Error",
"Warning",
"Information"
],
"default": "None"
},
"rulePass": {
"type": "string",
"description": "Log pass outcomes for each rule to a specific informational stream.",
"enum": [
"None",
"Error",
"Warning",
"Information"
],
"default": "None"
},
"additionalProperties": false
}
Expected behaviour
additionalProperties should be included outside of the properties block.
Module in use and version:
Module: PSRule
Version: 0.4.0
The text was updated successfully, but these errors were encountered:
Description of the issue
Options schema include
additionalProperties
within logging options properties.additionalProperties
is not a valid option that can be configured but is rather part of the JSON schema spec.Expected behaviour
additionalProperties
should be included outside of the properties block.Module in use and version:
The text was updated successfully, but these errors were encountered: