I have searched on json schema with java bindings with inheritance and all searches led me to the usage of "allOf".
Using allOf would potentially solve my problem, but I am wondering if there is a construct in json schema that I can use which will generate my java code with real java inheritance "B extends A" - rather than inlining all properties from A inside B ?
I am wondering if this is even supported / doable or I am just dreaming. If not supported, I would be curious to know the reason.
OK, well, I am the author of both:
So I can answer your question, and the basic answer is no.
Why? Because there is no such thing as schema inheritance currently defined.
When using
allOf
, you require that all schemas inallOf
match; and if you are strict about what can exist in this or that JSON, you'll have addedadditionalProperties
tofalse
. As such, you cannot inherit.The real solution is a mechanism I proposed for draft v5: the
$merge
and$patch
keywords. These would allow to patch schemas with either of RFC 7386 or RFC 6902 (see here for more info) and indeed implement schema inheritance.In short:
additionalProperties
tofalse
, and your basic JSON is an object, you won't be able to define additional object members;"jsonschema2pojo" project contains notations for this purpose.
On the JSON schema, just include something like this;
i.e.
then the class generated by the project will have its "extends" clause as;
Also you can search for similar notations in here.
PS: Theese notations are not "standard JSON schema constructs". They are added for the sake of "just doing it" until a standard way of doing it is possible.
Hope it helps..