Last active
August 20, 2018 10:59
-
-
Save trsh/a750bf799008957119a3092d12d0e730 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$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