Skip to content

Instantly share code, notes, and snippets.

@temp3l
Created September 30, 2020 23:07
Show Gist options
  • Save temp3l/3a0ef2b71e252bbae3f05ae6b38fc7b1 to your computer and use it in GitHub Desktop.
Save temp3l/3a0ef2b71e252bbae3f05ae6b38fc7b1 to your computer and use it in GitHub Desktop.
{
"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