Created
September 30, 2020 23:07
-
-
Save temp3l/3a0ef2b71e252bbae3f05ae6b38fc7b1 to your computer and use it in GitHub Desktop.
This file contains 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
{ | |
"type": "object", | |
"properties": { | |
"age": { | |
"type": "integer", | |
"title": "Age" | |
}, | |
"items": { | |
"type": "array", | |
"items": { | |
"type": "object", | |
"anyOf": [ | |
{ | |
"properties": { | |
"foo": { | |
"type": "string" | |
} | |
} | |
}, | |
{ | |
"properties": { | |
"bar": { | |
"type": "string" | |
} | |
} | |
} | |
] | |
} | |
} | |
}, | |
"anyOf": [ | |
{ | |
"title": "First method of identification", | |
"properties": { | |
"firstName": { | |
"type": "string", | |
"title": "First name", | |
"default": "Chuck" | |
}, | |
"lastName": { | |
"type": "string", | |
"title": "Last name" | |
} | |
} | |
}, | |
{ | |
"title": "Second method of identification", | |
"properties": { | |
"idCode": { | |
"type": "string", | |
"title": "ID code" | |
} | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment