1{
2 "openapi": "3.1.0",
3 "info": {
4 "title": "OpenAPI 3.1.0 union types example",
5 "version": "1"
6 },
7 "components": {
8 "schemas": {
9 "Foo": {
10 "type": "object",
11 "properties": {
12 "bar": {
13 "type": ["number", "boolean", "string"]
14 }
15 }
16 }
17 }
18 }
19}