1{ 2 "$schema": "https://json-schema.org/draft/2020-12/schema", 3 "type": "object", 4 "properties": { 5 "foo": { 6 "type": "string", 7 "enum": [ 8 "foo1", 9 "foo2" 10 ] 11 }, 12 "bar": { 13 "type": "string", 14 "pattern": "(bar)+" 15 } 16 } 17}