blob: ce39ad4a11489b11233ca7e1a90553108da71ba5 [file] [log] [blame]
{
"openapi": "3.0.0",
"components": {
"schema": {
"MyString": {
"oneOf": [
{
"type": "object",
"required": [
"exact"
],
"properties": {
"exact": {
"type": "string",
"format": "string"
}
}
},
{
"type": "object",
"required": [
"regex"
],
"properties": {
"regex": {
"type": "string",
"format": "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"
}
},
"include": {
"$ref": "#/components/schema/MyString"
}
}
}
}
}
}