josdejong/jsoneditor

Autocompletion: supporting self references

Open

#1,450 创建于 2022年7月7日

在 GitHub 查看
 (1 评论) (0 反应) (0 负责人)JavaScript (10,781 star) (2,034 fork)batch import
bughelp wanted

描述

Hi,

Look like self references are not supported by the schema autocompletion feature. For example, on self key in the example below:

   {
        "type": "object",
        "properties": {
            "self": {
                "$ref": "#"
            },
            "bar": {
                "type": "string",
                "enum": [
                    "A",
                    "B"
                ]
            }
        },
        "additionalProperties": false
    }

贡献者指南