可以引用数组项的模式中的定义吗?

时间:2017-09-04 10:47:08

标签: jsonschema

是否可以通过"definitions"引用阵列架构的"items"部分内的架构中的"$ref"部分?

例如,在下面的JSON中(假设它有效),如何在文档的其他地方引用"a_def"(即将使用什么路径)?:

...
"an_array": {
    "type": "array",
    "items": [{
            "definitions": {
                "a_def": { ... }
            },
            ...
        },
        ...
    ]
    ...
}
...

0 个答案:

没有答案