Skip to content

Instantly share code, notes, and snippets.

@trsh
Last active August 20, 2018 10:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trsh/a750bf799008957119a3092d12d0e730 to your computer and use it in GitHub Desktop.
Save trsh/a750bf799008957119a3092d12d0e730 to your computer and use it in GitHub Desktop.
{
"$schema": "http://json-schema.org/draft-04/hyper-schema#",
"type": "object",
"properties": {
"x": {
"type": "object",
"title": "Yak",
"required": [
"y"
],
"properties": {
"z": {
"type": "boolean",
"default": false
},
"y": {
"type": "string",
"visibleIf": {
"z": [true]
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment