1{ 2 "type": "object", 3 "propertyNames": { 4 "anyOf": [ 5 { 6 "minLength": 10 7 }, 8 { 9 "$ref": "#/definitions/props" 10 }, 11 { 12 "oneOf": [ 13 { 14 "enum": [ 15 "z", 16 "a", 17 "b" 18 ] 19 }, 20 { 21 "$ref": "#/definitions/xyz" 22 } 23 ] 24 } 25 ] 26 }, 27 "definitions": { 28 "props": { 29 "minLength": 2, 30 "pattern": "[A-Z]{2,}" 31 }, 32 "xyz": { 33 "enum": [ 34 "x", 35 "y", 36 "z" 37 ] 38 } 39 } 40} 41