openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/CTB1_GET_DATA_FROM_REMOTE_HOST: post: tags: - CTB1 operationId: /rfc/CTB1_GET_DATA_FROM_REMOTE_HOST requestBody: content: application/json: schema: properties: FILE_NAME: type: string maxLength: 60 description: File Name FILE_CONTENTS: type: array items: type: object properties: ZEILE: type: string maxLength: 300 description: Blank (character) required: - FILE_NAME responses: '200': description: OK content: application/json: schema: properties: FILE_CONTENTS: type: array items: type: object properties: ZEILE: type: string maxLength: 300 description: Blank (character) '400': description: Bad request. 5XX: description: Unexpected error.