blob: 2781b7b4bc50d3f75f9c71f99e60458cbd8c2721 [file] [log] [blame]
{
"openapi": "3.0.0",
"info": {},
"components": {
"schemas": {
"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": {
"include": {
"$ref": "#/components/schemas/MyString"
},
"exclude": {
"type": "array",
"items": {
"$ref": "#/components/schemas/MyString"
}
},
"count": {
"$ref": "#/components/schemas/MyInt"
}
}
}
}
}
}