是否可以通过"definitions"
引用阵列架构的"items"
部分内的架构中的"$ref"
部分?
例如,在下面的JSON中(假设它有效),如何在文档的其他地方引用"a_def"
(即将使用什么路径)?:
...
"an_array": {
"type": "array",
"items": [{
"definitions": {
"a_def": { ... }
},
...
},
...
]
...
}
...