-
Suppose I have two schemas: {
"definitions": {
"foo": {
"type": "object",
"properties": {
"bar": {
"type": "object",
"$ref": "./bar.json#/definitions/bar"
}
}
}
}
} I would like to do this in order to reuse existing json schemas, is this possible? I have not found this in the documentation |
Beta Was this translation helpful? Give feedback.
Answered by
ardatan
Mar 17, 2022
Replies: 1 comment 1 reply
-
JSON Schema handler respects regular JSON Schema spec. So this is supported and you can also use that json pointers in Mesh configuration. If it doesn't work, please create an issue with a reproduction. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
ardatan
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
JSON Schema handler respects regular JSON Schema spec. So this is supported and you can also use that json pointers in Mesh configuration. If it doesn't work, please create an issue with a reproduction.