组合模式
allOf
全部都要有效
"short"
"too long"
{ "allOf": [ { "type": "string" }, { "maxLength": 5 } ] }
{ "anyOf": [ { "type": "string", "maxLength": 5 }, { "type": "number", "minimum": 0 } ] }
{ "oneOf": [ { "type": "number", "multipleOf": 5 }, { "type": "number", "multipleOf": 3 } ] }
{ "not": { "type": "string" } }