Describe the bug
YAML autocompletion and validation works as expected for the first YAML definition in the file.
Validation works also as expected.
When I try to add another YAML definition into the same file, there is no autocompletion or validation available.
Expected Behavior
It would be great if you can add multiple resources with the same or different schema in the same file.
Steps to Reproduce
My schema "test.schema.json" is
{
"properties": {
"my_key": {
"description": "My string",
"enum": ["my_value"],
"type": "string"
}
},
"type": "object"
}
Environment