Description
This is a discussion. Please add your comments below.
I keep running into a wall when trying to use JSON schema with intersection types. I’d like to use anyOf
but in combination with additionalProperties: false
we end up with a schema that cannot be satisfied unless you only use properties that are defined in the intersection of the properties. So far, we have generated huge objects that merge properties but this is causing problems with intersections with unions (e.g. A & (B | C)
). Going forward, I’d like to address this properly and see three options. 1) abandon JSON schema and use a more sophisticated schema enforcement 2) abandon additionalProperties: false
, which means users won’t know if the mistype properties (this is what Vega does in some places), or 3) translate A & (B | C)
to (A & B) | (A & C)
and generate an anyOf
of multiple large objects that are possibly largely the same. In the worse case, this can get exponentially larger. For example (A | B) & (C | D) = A & C | A & D | B & C | B & D
Opinions?
See related issues: #62 and #4.
Another issue with JSON schema is inheritance, which cannot be expressed. So far we keep creating large objects for this case as well.