fork of hey-api/openapi-ts because I need some additional things
at main 73 lines 1.4 kB view raw
1openapi: 3.1.1 2info: 3 title: OpenAPI 3.1.1 sdk instance example 4 version: 1 5paths: 6 /foo: 7 get: 8 tags: 9 - fooBaz 10 responses: 11 '200': 12 content: 13 '*/*': 14 schema: 15 type: string 16 description: OK 17 post: 18 tags: 19 - fooBaz 20 operationId: foo.-post 21 responses: 22 '200': 23 content: 24 '*/*': 25 schema: 26 type: string 27 description: OK 28 put: 29 tags: 30 - fooBaz 31 operationId: /foo/-put/ 32 responses: 33 '200': 34 content: 35 '*/*': 36 schema: 37 type: string 38 description: OK 39 /foo/bar: 40 get: 41 tags: 42 - barBaz 43 responses: 44 '200': 45 content: 46 '*/*': 47 schema: 48 type: string 49 description: OK 50 post: 51 tags: 52 - fooBaz 53 - barBaz 54 operationId: foo.bar.post 55 responses: 56 '200': 57 content: 58 '*/*': 59 schema: 60 type: string 61 description: OK 62 put: 63 tags: 64 - fooBaz 65 - barBaz 66 operationId: /foo/bar/put/ 67 responses: 68 '200': 69 content: 70 '*/*': 71 schema: 72 type: string 73 description: OK