When I serialize JsonSchema containing array of enums, it is correctly serialized like this:
{
"type":"array",
"items":{"type":"string","enum":["FOO","BAR"]}
}
But when I deserialize it again, I will get an array of string, but the enum set of the StringSchema is empty.
I have a unit test that demonstrates it but I'm not sure how to attach it to the github issue... Will try it after creation...