We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I want to realize attribute like this:
If single-language data:
"name": "Peter"
but in multi-language data:
"name": { "ja": "ピーター", "en": "Peter" }
According to this topic https://stackoverflow.com/questions/47087869/how-to-represent-jsonschema-of-json-which-key-names-are-in-enum-value , multiple-language attribute is achieved in Json Schema like this:
{ "type": "object", "properties": { "name": { "type": "object", "patternProperties": { "^[a-z]{2}$": { "type": "string" } }, "additionalProperties": false } }, "required": [ "name" ] }
But my question is, such complicated JSON Schema is supported in this library?
If it is not supported, would you please add this as new function?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I want to realize attribute like this:
If single-language data:
but in multi-language data:
According to this topic https://stackoverflow.com/questions/47087869/how-to-represent-jsonschema-of-json-which-key-names-are-in-enum-value , multiple-language attribute is achieved in Json Schema like this:
But my question is, such complicated JSON Schema is supported in this library?
If it is not supported, would you please add this as new function?
The text was updated successfully, but these errors were encountered: