blob: 570d65918f96c5db9af88879f7a2e9216abce3b9 [file] [log] [blame]
{
"openapi": "3.0.0",
"info": {},
"components": {
"schemas": {
"Arrays": {
"type": "object",
"properties": {
"bar": {
"type": "array",
"items": {
"default": "1",
"enum": [
"1",
"2",
"3"
]
}
},
"foo": {
"type": "array",
"items": {
"type": "object",
"properties": {
"a": {
"type": "integer"
},
"e": {
"type": "array",
"items": {
"default": "1",
"enum": [
"1",
"2",
"3"
]
}
}
}
}
},
"baz": {
"type": "array",
"uniqueItems": true
},
"qux": {
"type": "array",
"minItems": 1,
"maxItems": 3
}
}
},
"MyEnum": {
"description": "MyEnum",
"default": "1",
"enum": [
"1",
"2",
"3"
]
},
"MyStruct": {
"description": "MyStruct",
"type": "object",
"properties": {
"a": {
"type": "integer"
},
"e": {
"type": "array",
"items": {
"default": "1",
"enum": [
"1",
"2",
"3"
]
}
}
}
}
}
}
}