quicktype-vscode
quicktype-vscode copied to clipboard
Generate code from JSON Schema in VSCode fails for referenced files
When generating code from JSON Schema (VsCode option "Open QuickType for Json Schema") the code fails to appear when there are types that reference another file. For example the following causes the code generation to fail:
...
"myTypes": {
"type": "array",
"items": {
"$ref": "../../../common/enums/MyEnum.schema"
}
}
...
There is no failure notification, it just fails to show the generated code.