You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
which is fairly classic example of a "diamond inheritance", possible in languages that support multiple inheritance.
It could be expressed with allOf & enum in the following way:
When Base is referenced I'd expect it to display selector for type field, as Base is a part of inheritance hierarchy, listing everything BaseRef selector would list, additionally filtered by enum list. Basically, selector should be inherited.
It might be tempting to constraint the selector by the current and all "descendant" types, as to not require enums, but that would prevent using definitions as genuine constraints (which they really are), ruling out the possibility to use something like this:
Here, RefOnly ensures that wherever it's used only BaseRef and ChildRef are accepted (forbidding Child and Base, even though they are compatible with BaseRef), it's not used as a subclass. If the selector would show descendants here it would show nothing, as BaseRef could not be made to "inherit" RefOnly, as that would create circular dependency.
Consider the following type hierarchy:
which is fairly classic example of a "diamond inheritance", possible in languages that support multiple inheritance.
It could be expressed with
allOf
&enum
in the following way:When
Base
is referenced I'd expect it to display selector fortype
field, asBase
is a part of inheritance hierarchy, listing everythingBaseRef
selector would list, additionally filtered byenum
list. Basically, selector should be inherited.It might be tempting to constraint the selector by the current and all "descendant" types, as to not require
enum
s, but that would prevent using definitions as genuine constraints (which they really are), ruling out the possibility to use something like this:Here,
RefOnly
ensures that wherever it's used onlyBaseRef
andChildRef
are accepted (forbiddingChild
andBase
, even though they are compatible withBaseRef
), it's not used as a subclass. If the selector would show descendants here it would show nothing, asBaseRef
could not be made to "inherit"RefOnly
, as that would create circular dependency.Live demo
swagger.json
The text was updated successfully, but these errors were encountered: