Open
Description
So I have the following json schema for a query parameter which I want to render:
{
"$schema": "http://json-schema.org/draft-07/schema#",
"oneOf": [
{
"type": "string",
"example": "include",
"enum": ["include", "only", "exclude"]
},
{
"type": "string",
"enum": ["true"],
"deprecated": true
}
]
}
While the deprecation property works fine if I would use it without the oneOf
for this case I do not see it:
Is this the correct whey how I mark an value for an enum as deprecated?