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
The additionalItems should support schema including $ref
additionalItems
$ref
{ "$schema": "http://json-schema.org/draft-07/schema", "type": "object", "properties": { "test": { "$ref": "#/definitions/Recur" } }, "definitions": { "Recur": { "type": "array", "items": [ { "type": "string", "enum": [ "and" ] } ], "additionalItems": { "$ref": "#/definitions/Recur" } } } }
VSCode Json Language Service used to have the same problem and is recently fixed: microsoft/vscode-json-languageservice#69
So it is working on the json side:
schema including $ref should be supported for additionalItems for Tuple Validation: https://json-schema.org/understanding-json-schema/reference/array.html#id6
The text was updated successfully, but these errors were encountered:
Fixed with redhat-developer/yaml-language-server#433
Sorry, something went wrong.
evidolob
No branches or pull requests
Describe the bug
The
additionalItems
should support schema including$ref
VSCode Json Language Service used to have the same problem and is recently fixed:
microsoft/vscode-json-languageservice#69
So it is working on the json side:
Expected Behavior
schema including
$ref
should be supported foradditionalItems
for Tuple Validation:https://json-schema.org/understanding-json-schema/reference/array.html#id6
Current Behavior
Steps to Reproduce
Environment
The text was updated successfully, but these errors were encountered: