{
"type" : [{
"properties" : {
"foo" : {}
},
"additionalProperties" : false
}, {
"properties" : {
"bar" : {}
},
"additionalProperties" : false
}]
}
-Gary
> --
> You received this message because you are subscribed to the Google Groups
> "JSON Schema" group.
> To post to this group, send email to json-...@googlegroups.com.
> To unsubscribe from this group, send email to
> json-schema...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/json-schema?hl=en.
>
You can use union types to do this:
{
"type" : [{
"properties" : {
"foo" : {}
},
"additionalProperties" : false
}, {
"properties" : {
"bar" : {}
},
"additionalProperties" : false
}]
}