blob: b805d2eea2fed3e90751f062cbd9c48ed212f716 [file] [log] [blame]
{
"openapi": "3.0.0",
"components": {
"schema": {
"MyString": {
"anyOf": [
{
"type": "object",
"required": [
"exact"
],
"properties": {
"exact": {
"type": "string"
}
}
},
{
"type": "object",
"required": [
"regex"
],
"properties": {
"regex": {
"type": "string"
}
}
}
]
},
"MyInt": {
"type": "integer"
},
"Foo": {
"type": "object",
"required": [
"include",
"exclude",
"count"
],
"properties": {
"count": {
"$ref": "#/components/schema/MyInt"
},
"exclude": {
"type": "array",
"items": {
"$ref": "#/components/schema/MyString"
},
"default": []
},
"include": {
"$ref": "#/components/schema/MyString"
}
}
}
}
}
}