fork of hey-api/openapi-ts because I need some additional things
at main 31 lines 710 B view raw
1openapi: 3.1.1 2info: 3 title: OpenAPI 3.1.1 array nested one of example 4 version: 1 5components: 6 schemas: 7 Foo: 8 oneOf: 9 - type: array 10 items: 11 oneOf: 12 - type: object 13 properties: 14 foo: 15 type: string 16 bar: 17 type: string 18 - type: object 19 properties: 20 baz: 21 type: string 22 qux: 23 type: string 24 - type: array 25 items: 26 type: object 27 properties: 28 foo: 29 type: string 30 bar: 31 type: string