--- swagger: "2.0" info: description: This is a dummy API for CICD testing. version: 1.0.0 title: DummyAPI x-ibm-name: DummyAPI host: 127.0.0.1 schemes: - https basePath: /api produces: - application/json paths: /v1/dummy: get: responses: 200: description: 200 OK definitions: DummyAPIResponse: properties: dummyString: description: Dummy string. type: string ErrorResponse: properties: type: description: Invalid - Request did not confirm to the specification and was unprocessed and rejected. Please fix the value and try again enum: - error - warn - invalid - fatal type: string code: description: Error code which qualifies the error type: string details: description: Human readable explanation specific to the occurrence of the problem type: string location: description: The name of the field that resulted in the error type: string moreInfo: description: URI to human readable documentation of the error type: object required: - type - code x-ibm-configuration: enforced: true testable: true phase: realized securityDefinitions: client_id: type: apiKey description: "" in: header name: X-IBM-Client-Id security: - client_id: [] x-ibm-endpoints: - endpointUrl: https://aspac.sandbox.api.citi.com/gcbap description: Custom Gateway API Endpoint type: - production - development ...