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