json schema enum code example
Example 1: jsonschema string enum
{
"type": "array",
"items": {
"type": "string",
"enum": ["one", "two", "three"]
}
}
Example 2: JSON schema enumerated type
{
"type": "array",
"items": {
"type": "string",
"enum": ["one", "two", "three"]
}
}