Files
cli/vendor/schemars/tests/expected/skip_enum_variants.json

25 lines
419 B
JSON
Raw Normal View History

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "MyEnum",
"oneOf": [
{
"type": "string",
"enum": [
"Included2"
]
},
{
"type": "object",
"required": [
"Included1"
],
"properties": {
"Included1": {
"type": "number",
"format": "float"
}
},
"additionalProperties": false
}
]
}