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