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