323 B
323 B
effect
| effect |
|---|
| patch |
Schema: collapse same-type literal branches in JSON Schema output into a single enum array, closes #1868.
Before:
{
"anyOf": [
{ "type": "string", "enum": ["A"] },
{ "type": "string", "enum": ["B"] }
]
}
After:
{
"type": "string",
"enum": ["A", "B"]
}