|
| 1 | +openapi: 3.0.0 |
| 2 | +info: |
| 3 | + title: service/someapi/v1 |
| 4 | + version: 1.1.2 |
| 5 | + contact: |
| 6 | + name: john.doe |
| 7 | + |
| 8 | + description: Provide description of the API |
| 9 | +servers: |
| 10 | + - url: 'https://api.acme.com/service/someapi/v1' |
| 11 | +paths: |
| 12 | + /products: |
| 13 | + get: |
| 14 | + summary: Query Products |
| 15 | + operationId: get-products |
| 16 | + responses: |
| 17 | + '200': |
| 18 | + $ref: '#/components/responses/200-GetProductResponse' |
| 19 | + '400': |
| 20 | + $ref: '#/components/responses/400' |
| 21 | + '404': |
| 22 | + $ref: '#/components/responses/404' |
| 23 | + '500': |
| 24 | + $ref: '#/components/responses/500' |
| 25 | + description: Get Product Records |
| 26 | + parameters: |
| 27 | + - $ref: ./common/parameters/correlation-id.yaml |
| 28 | + - $ref: ./common/parameters/traceparent.yaml |
| 29 | + tags: |
| 30 | + - applicant |
| 31 | +components: |
| 32 | + schemas: |
| 33 | + Error: |
| 34 | + $ref: common/models/error.yaml |
| 35 | + GetProductResponse: |
| 36 | + $ref: ./common/models/GetProductResponse.yaml |
| 37 | + securitySchemes: |
| 38 | + Oauth: |
| 39 | + type: oauth2 |
| 40 | + description: Oauth Security Token Enforcement for internal production environment. |
| 41 | + flows: |
| 42 | + clientCredentials: |
| 43 | + tokenUrl: 'https://api.acme.com/auth/app/v1/token' |
| 44 | + scopes: |
| 45 | + scope: READ |
| 46 | + responses: |
| 47 | + '400': |
| 48 | + description: 400 Bad Request |
| 49 | + content: |
| 50 | + application/json: |
| 51 | + schema: |
| 52 | + $ref: '#/components/schemas/Error' |
| 53 | + examples: |
| 54 | + 400 Bad Request: |
| 55 | + value: |
| 56 | + $ref: common/examples/400.yaml |
| 57 | + headers: |
| 58 | + correlation-id: |
| 59 | + schema: |
| 60 | + type: string |
| 61 | + description: An ID passed by clients to correlate multiple API requests. |
| 62 | + '404': |
| 63 | + description: 404 Not Found |
| 64 | + content: |
| 65 | + application/json: |
| 66 | + schema: |
| 67 | + $ref: '#/components/schemas/Error' |
| 68 | + examples: |
| 69 | + 404 Not Found: |
| 70 | + value: |
| 71 | + $ref: common/examples/404.yaml |
| 72 | + headers: |
| 73 | + correlation-id: |
| 74 | + schema: |
| 75 | + type: string |
| 76 | + description: An ID passed by clients to correlate multiple API requests. |
| 77 | + '500': |
| 78 | + description: 500 Internal Server Error |
| 79 | + content: |
| 80 | + application/json: |
| 81 | + schema: |
| 82 | + $ref: '#/components/schemas/Error' |
| 83 | + examples: |
| 84 | + 500 Internal Server Error: |
| 85 | + value: |
| 86 | + $ref: common/examples/500.yaml |
| 87 | + headers: |
| 88 | + correlation-id: |
| 89 | + schema: |
| 90 | + type: string |
| 91 | + description: An ID passed by clients to correlate multiple API requests. |
| 92 | + 200-GetProductResponse: |
| 93 | + description: Get Product Response |
| 94 | + content: |
| 95 | + application/json: |
| 96 | + schema: |
| 97 | + $ref: '#/components/schemas/GetProductResponse' |
| 98 | + examples: |
| 99 | + 200 - Sample Data: |
| 100 | + value: |
| 101 | + $ref: common/examples/Product/200-GetProductResponse.yaml |
| 102 | + headers: |
| 103 | + correlation-id: |
| 104 | + schema: |
| 105 | + type: string |
| 106 | + description: An ID passed by clients to correlate multiple API requests. |
| 107 | +security: |
| 108 | + - Oauth: [] |
| 109 | +tags: |
| 110 | + - name: applicant |
0 commit comments