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
In the case you pass the type [array] the schema has the default value "[]" that is a String not an Array
[array]
"[]"
## @section tittle ## @param features [array] list of features to enable features: []
{ "title": "Chart Values", "type": "object", "properties": { "features": { "type": "array", "description": "list of features to enable", "default": "[]", "items": { "type": "string" } } } }
If you do not set the type, the default value in the schema is correct, but items does not have type
## @section tittle ## @param features features: []
{ "title": "Chart Values", "type": "object", "properties": { "features": { "type": "array", "description": "", "default": [], "items": {} } } }
The text was updated successfully, but these errors were encountered:
fmulero
No branches or pull requests
In the case you pass the type
[array]
the schema has the default value"[]"
that is a String not an ArrayIf you do not set the type, the default value in the schema is correct, but items does not have type
The text was updated successfully, but these errors were encountered: