Let's say I have a simple JSON like:
"values": {
"A": 0,
"B": 0,
"C": 0,
"D": 0,
"E": 0,
}
A, B, C are part of the basic schema T1 while D,E are part of an extending schema T2. Therefore the schema T1 has 3 properties while T2 has 5 properties. I would like to avoid write A,B,C twice, in both schemas.
Is there anyway in JSON Schema to extend the list of properties?
allOf. Have you seen that keyword? If not, I'll share details in an answer.