blob: 629db2f4994ba90f1b4c67923539ff394959aab7 [file] [log] [blame]
{
"openapi": "3.0.0",
"info": {
"title": "test",
"version": "v1"
},
"paths": {},
"components": {
"schemas": {
"MyString": {
"type": "object",
"properties": {
"exact": {
"type": "string",
"format": "string"
},
"regex": {
"type": "string",
"format": "string"
}
},
"oneOf": [
{
"required": [
"exact"
]
},
{
"required": [
"regex"
]
}
]
},
"MyInt": {
"type": "integer"
},
"Foo": {
"type": "object",
"required": [
"include",
"exclude",
"count"
],
"properties": {
"include": {
"type": "object",
"properties": {
"exact": {
"type": "string",
"format": "string"
},
"regex": {
"type": "string",
"format": "string"
}
},
"oneOf": [
{
"required": [
"exact"
]
},
{
"required": [
"regex"
]
}
]
},
"exclude": {
"type": "array",
"items": {
"type": "object",
"properties": {
"exact": {
"type": "string",
"format": "string"
},
"regex": {
"type": "string",
"format": "string"
}
},
"oneOf": [
{
"required": [
"exact"
]
},
{
"required": [
"regex"
]
}
]
}
},
"count": {
"type": "integer"
}
}
}
}
}
}